| java.lang.Object org.apache.harmony.auth.internal.kerberos.v5.EncryptedData
EncryptedData | public class EncryptedData (Code) | | See Also: http://www.ietf.org/rfc/rfc4120.txt |
Constructor Summary | |
public | EncryptedData(int etype, int kvno, byte[] cipher) |
ASN1 | final static ASN1Sequence ASN1(Code) | |
EncryptedData ::= SEQUENCE {
etype [0] Int32 -- EncryptionType --,
kvno [1] UInt32 OPTIONAL,
cipher [2] OCTET STRING -- ciphertext
}
|
DES_CBC_CRC | final public static int DES_CBC_CRC(Code) | | DES in CBC mode with CRC-based checksum
|
DES_CBC_MD4 | final public static int DES_CBC_MD4(Code) | | DES in CBC mode with CRC-based checksum
|
DES_CBC_MD5 | final public static int DES_CBC_MD5(Code) | | DES in CBC mode with CRC-based checksum
|
EncryptedData | public EncryptedData(int etype, int kvno, byte[] cipher)(Code) | | |
decrypt | public byte[] decrypt(SecretKey key)(Code) | | |
getCipher | public byte[] getCipher()(Code) | | |
getEtype | public int getEtype()(Code) | | |
getKvno | public int getKvno()(Code) | | |
|
|