Uses of Class org.ietf.jgss.MessageProp

Uses in package org.ietf.jgss

Methods with parameter type org.ietf.jgss.MessageProp

byte[]
GSSContext.getMIC(byte[] inMsg, int offset, int len, MessageProp msgProp)
Returns a token containing a cryptographic MIC for the supplied message, for transfer to the peer application.
void
GSSContext.getMIC(InputStream inStream, OutputStream outStream, MessageProp mgProp)
Produces a token containing a cryptographic MIC for the supplied message, for transfer to the peer application.
byte[]
GSSContext.unwrap(byte[] inBuf, int offset, int len, MessageProp msgProp)
Used by the peer application to process tokens generated with the wrap call.
void
GSSContext.unwrap(InputStream inStream, OutputStream outStream, MessageProp msgProp)
Used by the peer application to process tokens generated with the wrap call.
void
GSSContext.verifyMIC(byte[] inTok, int tokOffset, int tokLen, byte[] inMsg, int msgOffset, int msgLen, MessageProp msgProp)
Verifies the cryptographic MIC, contained in the token parameter, over the supplied message.
void
GSSContext.verifyMIC(InputStream tokStream, InputStream msgStream, MessageProp msgProp)
Verifies the cryptographic MIC, contained in the token parameter, over the supplied message.
byte[]
GSSContext.wrap(byte[] inBuf, int offset, int len, MessageProp msgProp)
Applies per-message security services over the established security context.
void
GSSContext.wrap(InputStream inStream, OutputStream outStream, MessageProp msgProp)
Allows to apply per-message security services over the established security context.