Key generation AES encryption symbian

I want to create a public key to encrypt AES keys, there are direct APIs in symbian thnx in advance. I am currently using the default api.

0


a source to share


1 answer


AES is a symmetric cipher and has no concept of public / private keys.



As for the AES key itself, just generate eg. 256 random bits for AES256. For cryptographically strong random generation, for example, is used CSystemRandom::GenerateBytesL()

. Include random.h

, link to random.lib

.

+2


a source







All Articles