Uses of Class
org.ietf.jgss.MessageProp
-
Packages that use MessageProp 软件包 描述 org.ietf.jgss 该软件包提供了一个框架,允许应用程序开发人员使用诸如Kerberos等各种基础安全机制(使用统一API)的身份验证,数据完整性和数据机密性等安全服务。 -
-
Uses of MessageProp in org.ietf.jgss
Methods in org.ietf.jgss with parameters of type MessageProp Modifier and Type 方法 描述 byte[]
GSSContext. getMIC(byte[] inMsg, int offset, int len, MessageProp msgProp)
返回包含所提供消息的加密消息完整性代码(MIC)的令牌,以传输到对等应用程序。void
GSSContext. getMIC(InputStream inStream, OutputStream outStream, MessageProp msgProp)
使用流来生成包含所提供消息的加密MIC的令牌,以传送到对等应用程序。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)
通过提供的消息验证令牌参数中包含的密码MIC。void
GSSContext. verifyMIC(InputStream tokStream, InputStream msgStream, MessageProp msgProp)
通过提供的消息使用流来验证包含在令牌参数中的加密MIC。byte[]
GSSContext. wrap(byte[] inBuf, int offset, int len, MessageProp msgProp)
在已建立的安全上下文中应用每消息安全服务。void
GSSContext. wrap(InputStream inStream, OutputStream outStream, MessageProp msgProp)
使用流在已建立的安全上下文中应用每消息安全服务。
-