| java.lang.Object org.apache.harmony.auth.internal.kerberos.v5.EncryptionKey
EncryptionKey | public class EncryptionKey (Code) | | Kerberos EncryptionKey type.
See Also: http://www.ietf.org/rfc/rfc4120.txt |
ASN1 | final public static ASN1Sequence ASN1(Code) | | ASN.1 decoder for EncryptionKey
EncryptionKey ::= SEQUENCE {
keytype [0] Int32 -- actually encryption type --,
keyvalue [1] OCTET STRING
}
|
EncryptionKey | public EncryptionKey(int type, byte[] value)(Code) | | Creates EncryptionKey
Parameters: type - -encryption type Parameters: value - -key value |
getType | public int getType()(Code) | | |
getValue | public byte[] getValue()(Code) | | |
|
|