Class AESKey


  • public class AESKey
    extends Key
    This class implements the AES cryptographic cipher key.
    • Constructor Summary

      Constructors 
      Constructor Description
      AESKey​(byte[] data)
      Creates a new AESKey object with the given data.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      byte[] getData()
      Gets the key data.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AESKey

        public AESKey​(byte[] data)
        Creates a new AESKey object with the given data.
        Parameters:
        data - A byte array containing the key data.
    • Method Detail

      • getData

        public byte[] getData()
        Gets the key data.
        Returns:
        A copy of the byte array containing the key data.