ByteBuffer stream = ByteBuffer.allocate( data.length );
stream.put( data );
stream.flip();
// Allocate a EncryptionKey Container
Asn1Container encryptionKeyContainer = new EncryptionKeyContainer();
Asn1Decoder kerberosDecoder = new Asn1Decoder();
// Decode the EncryptionKey PDU
try