| Package | Description |
|---|---|
| org.ietf.jgss |
This package presents a framework that allows application developers to make use of security services like authentication, data integrity and data confidentiality from a variety of underlying security mechanisms like Kerberos, using a unified API.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
GSSContext.getMIC(byte[] inMsg, int offset, int len, MessageProp
Returns a token containing a cryptographic Message Integrity Code (MIC) for the supplied message, for transfer to the peer application.
|
void |
GSSContext.getMIC(InputStream
Uses streams to produce 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
Used to process tokens generated by the
wrap method on the other side of the context.
|
void |
GSSContext.unwrap(InputStream
Uses streams to process tokens generated by the
wrap method on the other side of the context.
|
void |
GSSContext.verifyMIC(byte[] inToken, int tokOffset, int tokLen, byte[] inMsg, int msgOffset, int msgLen, MessageProp
Verifies the cryptographic MIC, contained in the token parameter, over the supplied message.
|
void |
GSSContext.verifyMIC(InputStream
Uses streams to verify the cryptographic MIC, contained in the token parameter, over the supplied message.
|
byte[] |
GSSContext.wrap(byte[] inBuf, int offset, int len, MessageProp
Applies per-message security services over the established security context.
|
void |
GSSContext.wrap(InputStream
Applies per-message security services over the established security context using streams.
|