}
// Now, let's decode the KDC-REQ
Asn1Decoder kdcReqDecoder = new Asn1Decoder();
KdcReqContainer kdcReqContainer = new KdcReqContainer( tgsReqContainer.getStream() );
// Store the created TGS-REQ object into the KDC-REQ container
TgsReq tgsReq = new TgsReq();
kdcReqContainer.setKdcReq( tgsReq );
// Decode the KDC_REQ PDU
try
{
kdcReqDecoder.decode( tgsReqContainer.getStream(), kdcReqContainer );