// is it full ASN.1 encoded bytes OR just the bytes of all the values alone?
// for now am using the ASN.1 encoded value
ByteBuffer buf = ByteBuffer.allocate( body.computeLength() );
try
{
body.encode( buf );
}
catch ( EncoderException e )
{
throw new KerberosException( ErrorType.KRB_AP_ERR_INAPP_CKSUM );
}