I'm trying to understand this comment from AES implementation code:
/**
* This program generates a AES key, retrieves its raw bytes, and
* then reinstantiates a AES key from the key bytes.
* The reinstantiated key is used to initialize a AES cipher for
* encryption and decryption.
*/
I dont understand following points:
- what does it mean by raw bytes of AES key?
- what does it mean by reinstantiates a AES key from the key bytes