如何在golang中使用SHA1PRNG算法生成AES密钥?
Forgive my pool English.
The server program is code by java, i need to send it a password to generate aes key.The password is a random bytes array. The server program use the password as random seed to generate a 128 bits AES key with SHA1PRNG algorithm. The same password with gen the same key.
Now i am coding the client program with golang. How to generate the AES key with a random bytes array in golang?