Class EncryptionKey

java.lang.Object
javax.security.auth.kerberos.EncryptionKey
All Implemented Interfaces:
Serializable, Key, SecretKey, Destroyable

public final class EncryptionKey extends Object implements SecretKey
This class encapsulates an EncryptionKey used in Kerberos.

An EncryptionKey is defined in Section 4.2.9 of the Kerberos Protocol Specification (RFC 4120) as:

     EncryptionKey   ::= SEQUENCE {
             keytype         [0] Int32 -- actually encryption type --,
             keyvalue        [1] OCTET STRING
     }
 
The key material of an EncryptionKey is defined as the value of the keyValue above.

Since:
9
See Also: