软件包 | 描述 |
---|---|
org.ietf.jgss |
这个包提供了一个框架,允许应用程序开发人员使用的认证安全服务、数据完整性和数据从各种底层的安全机制,如Kerberos的保密性,使用统一的API。
|
Modifier and Type | Method and Description |
---|---|
byte[] |
GSSContext.getMIC(byte[] inMsg, int offset, int len, MessageProp msgProp)
返回包含加密消息完整性代码(麦克风)的用于提供的消息的令牌,用于传输到对等应用程序。
|
void |
GSSContext.getMIC(InputStream inStream, OutputStream outStream, MessageProp msgProp)
使用流产生包含用于所提供的消息的加密麦克风的令牌,用于传输到对等应用程序。
|
byte[] |
GSSContext.unwrap(byte[] inBuf, int offset, int len, MessageProp msgProp)
用于处理标记的方法产生的背景
wrap 在另一边。
|
void |
GSSContext.unwrap(InputStream inStream, OutputStream outStream, MessageProp msgProp)
使用流处理标记的方法产生的背景
wrap 在另一边。
|
void |
GSSContext.verifyMIC(byte[] inToken, int tokOffset, int tokLen, byte[] inMsg, int msgOffset, int msgLen, MessageProp msgProp)
验证所提供的消息的令牌参数中包含的密码麦克风。
|
void |
GSSContext.verifyMIC(InputStream tokStream, InputStream msgStream, MessageProp msgProp)
使用流来验证在所提供的消息中包含的令牌参数中的密码麦克风。
|
byte[] |
GSSContext.wrap(byte[] inBuf, int offset, int len, MessageProp msgProp)
应用在已建立的安全上下文中的每个消息安全服务。
|
void |
GSSContext.wrap(InputStream inStream, OutputStream outStream, MessageProp msgProp)
在已建立的安全上下文中使用流的每个消息安全服务。
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.