Searched refs:MessageProp (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSContext.java73 * #wrap(byte[], int, int, MessageProp) wrap} and {@link #getMIC(byte[],
74 * int, int, MessageProp) getMIC}. This allows applications to use
82 * of {@link #wrap(byte[], int, int, MessageProp) wrap} and
83 * {@link #getMIC(byte[], int, int, MessageProp) getMIC} to obtain
160 * MessageProp mProp = new MessageProp(0, true);
540 * The MessageProp object is instantiated by the application and used
545 * provide in this MessageProp object which the caller should then
559 * @param msgProp instance of MessageProp that is used by the
572 MessageProp msgPro
[all...]
H A DMessageProp.java55 public class MessageProp { class
72 public MessageProp(boolean privState) { method in class:MessageProp
82 public MessageProp(int qop, boolean privState) { method in class:MessageProp
197 * and the minor status in MessageProp. It is not used by the
/openjdk7/jdk/src/share/classes/sun/security/jgss/spi/
H A DGSSContextSpi.java263 public void wrap(InputStream is, OutputStream os, MessageProp msgProp)
270 MessageProp msgProp) throws GSSException;
281 MessageProp msgProp) throws GSSException;
297 OutputStream os, MessageProp msgProp)
313 MessageProp msgProp) throws GSSException;
319 MessageProp msgProp) throws GSSException;
330 MessageProp msgProp) throws GSSException;
344 MessageProp msgProp) throws GSSException;
357 MessageProp msgProp)
361 MessageProp msgPro
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DMicToken_v2.java48 MessageProp prop) throws GSSException {
53 public MicToken_v2(Krb5Context context, InputStream is, MessageProp prop)
77 public MicToken_v2(Krb5Context context, MessageProp prop,
84 if (prop == null) prop = new MessageProp(0, false);
88 public MicToken_v2(Krb5Context context, MessageProp prop, InputStream data)
97 if (prop == null) prop = new MessageProp(0, false);
H A DMicToken.java39 MessageProp prop) throws GSSException {
45 InputStream is, MessageProp prop)
69 public MicToken(Krb5Context context, MessageProp prop,
76 if (prop == null) prop = new MessageProp(0, false);
80 public MicToken(Krb5Context context, MessageProp prop,
89 if (prop == null) prop = new MessageProp(0, false);
H A DWrapToken_v2.java63 * @param prop the MessageProp into which characteristics of the
69 MessageProp prop) throws GSSException {
82 * @param prop the MessageProp into which characteristics of the
88 InputStream is, MessageProp prop)
161 public WrapToken_v2(Krb5Context context, MessageProp prop,
H A DKrb5Context.java843 MessageProp msgProp) throws GSSException {
882 MessageProp msgProp) throws GSSException {
915 OutputStream os, MessageProp msgProp)
954 MessageProp msgProp) throws GSSException {
970 MessageProp msgProp)
1008 MessageProp msgProp) throws GSSException {
1030 MessageProp msgProp) throws GSSException {
1051 MessageProp msgProp) throws GSSException {
1079 MessageProp msgProp)
1105 MessageProp msgPro
[all...]
H A DMessageToken.java154 * @param prop the MessageProp structure in which the properties of the
160 MessageProp prop) throws GSSException {
175 * @param prop the MessageProp structure in which the properties of the
181 MessageProp prop) throws GSSException {
262 * @param prop the MessageProp structure that determines what sort of
291 public void genSignAndSeqNumber(MessageProp prop,
632 * values in a MessageProp structure.
635 * @param prop the MessageProp to populate
639 public MessageTokenHeader(InputStream is, MessageProp prop)
H A DMessageToken_v2.java158 * @param prop the MessageProp structure in which the properties of the
164 MessageProp prop) throws GSSException {
181 * @param prop the MessageProp structure in which the properties of the
187 MessageProp prop) throws GSSException {
290 * @param prop the MessageProp structure
298 public void genSignAndSeqNumber(MessageProp prop,
545 * values in a MessageProp structure.
548 * @param prop the MessageProp to populate
552 public MessageTokenHeader(InputStream is, MessageProp prop, int tokId)
H A DWrapToken.java115 * @param prop the MessageProp into which characteristics of the
121 MessageProp prop) throws GSSException {
144 * @param prop the MessageProp into which characteristics of the
150 InputStream is, MessageProp prop)
400 public WrapToken(Krb5Context context, MessageProp prop,
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Base.java77 MessageProp msgProp = new MessageProp(JGSS_QOP, privacy);
103 MessageProp msgProp = new MessageProp(JGSS_QOP, privacy);
H A DGssKrb5Client.java235 challengeData.length, new MessageProp(0, false));
316 new MessageProp(0 /* qop */, false /* privacy */));
H A DGssKrb5Server.java214 new MessageProp(0 /* gop */, false /* privacy */));
232 responseData.length, new MessageProp(0, false));
/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DGSSLibStub.java32 import org.ietf.jgss.MessageProp;
92 MessageProp prop) ;
93 native byte[] wrap(long pContext, byte[] msg, MessageProp prop);
94 native byte[] unwrap(long pContext, byte[] msgToken, MessageProp prop);
H A DNativeGSSContext.java368 MessageProp msgProp) throws GSSException {
377 OutputStream os, MessageProp msgProp)
387 int outOffset, MessageProp msgProp)
394 MessageProp msgProp) throws GSSException {
406 MessageProp msgProp)
418 MessageProp msgProp) throws GSSException {
431 MessageProp msgProp) throws GSSException {
445 MessageProp msgProp) throws GSSException {
461 MessageProp msgProp) throws GSSException {
472 MessageProp msgPro
[all...]
/openjdk7/jdk/make/org/ietf/jgss/
H A DFILES_java.gmk32 org/ietf/jgss/MessageProp.java \
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DSaslGSS.java104 token = sc.unwrap(token, 0, token.length, new MessageProp(0, false));
106 token = sc.wrap(token, 0, token.length, new MessageProp(0, false));
115 MessageProp qop = new MessageProp(0, false);
H A DContext.java40 import org.ietf.jgss.MessageProp;
381 MessageProp p1 = new MessageProp(0, privacy);
402 MessageProp p1 = new MessageProp(0, privacy);
421 MessageProp p1 = new MessageProp(0, true);
423 p1 = new MessageProp(0, true);
442 MessageProp p1 = new MessageProp(
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSContextImpl.java87 * per-message operations are returned in an instance of the MessageProp
383 MessageProp msgProp) throws GSSException {
392 MessageProp msgProp) throws GSSException {
401 MessageProp msgProp) throws GSSException {
410 MessageProp msgProp) throws GSSException {
419 MessageProp msgProp) throws GSSException {
428 MessageProp msgProp) throws GSSException {
438 MessageProp msgProp) throws GSSException {
448 MessageProp msgProp) throws GSSException {
H A DTokenTracker.java28 import org.ietf.jgss.MessageProp;
150 synchronized public final void getProps(int number, MessageProp prop) {
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoContext.java752 MessageProp prop = new MessageProp(0, true);
794 MessageProp prop = new MessageProp(0, true);
1088 MessageProp msgProp) throws GSSException {
1098 MessageProp msgProp) throws GSSException {
1108 MessageProp msgProp)
1119 MessageProp msgProp) throws GSSException {
1129 MessageProp msgProp)
1140 MessageProp msgPro
[all...]

Completed in 352 milliseconds