public void wrap(byte inBuf[], int offset, int len, OutputStream outputStream, MessageProp messageProp) throws GSSException {
checkLife();
try {
outputStream.write(inBuf, offset, len);
} catch (IOException e) {
throw new GSSException(GSSException.FAILURE);
}
}