Searched defs:initiator (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DChannelBinding.java53 * Conceptually, the GSS-API concatenates the initiator and acceptor
71 * verify that the initiator address field of the channel binding
82 private InetAddress initiator; field in class:ChannelBinding
91 * @param initAddr the address of the context initiator.
104 initiator = initAddr;
125 * Get the initiator's address for this channel binding.
127 * @return the initiator's address. <code>null</code> is returned if
131 return initiator;
167 * the same values for the initiator and acceptor addresses and the
180 if ((initiator !
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DMessageToken.java131 private boolean initiator = true; field in class:MessageToken
334 if (!initiator) {
392 * The token from the initiator has direction bytes 0x00 and
396 if (initiator)
500 this.initiator = context.isInitiator();
H A DMessageToken_v2.java143 private boolean initiator = true; field in class:MessageToken_v2
198 key_usage = (!initiator ? KG_USAGE_INITIATOR_SEAL
201 key_usage = (!initiator ? KG_USAGE_INITIATOR_SIGN
321 key_usage = (initiator ? KG_USAGE_INITIATOR_SEAL
324 key_usage = (initiator ? KG_USAGE_INITIATOR_SIGN
462 this.initiator = context.isInitiator();
515 flags = (initiator ? 0 : FLAG_SENDER_IS_ACCEPTOR) |
569 // If I am initiator, the received token should have ACCEPTOR on
570 int acceptor_flag = (initiator ? FLAG_SENDER_IS_ACCEPTOR : 0);
H A DKrb5Context.java110 private boolean initiator; field in class:Krb5Context
127 * Constructor for Krb5Context to be called on the context initiator's
141 this.initiator = true;
152 this.initiator = false;
185 * These can only be called on the initiator side.
201 * initiator's side.
327 * context establishment. Since this is from the initiator's
328 * perspective, it essentially requests that the initiator be
420 * the initiator wants becomes known.
478 * Returns the context initiator nam
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbApReq.java139 InetAddress initiator)
144 authenticate(keys, initiator);
159 public KrbApReq(DerValue value, EncryptionKey[] key, InetAddress initiator)
164 authenticate(keys, initiator);
266 private void authenticate(EncryptionKey[] keys, InetAddress initiator) argument
313 if (initiator != null) {
315 HostAddress sender = new HostAddress(initiator);
319 System.out.println(">>> KrbApReq: initiator is "
137 KrbApReq(byte[] message, EncryptionKey[] keys, InetAddress initiator) argument
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSContextImpl.java52 * initiator may request specific characteristics desired of the
58 * initSecContext method by the context initiator. During this phase the
93 private final boolean initiator; field in class:GSSContextImpl
126 * Creates a GSSContextImp on the context initiator's side.
141 initiator = true;
151 initiator = false;
164 initiator = mechCtxt.isInitiator();
469 if (mechCtxt == null && initiator)
474 if (mechCtxt == null && initiator)
479 if (mechCtxt == null && initiator)
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoContext.java77 private boolean initiator; field in class:SpNegoContext
92 * Constructor for SpNegoContext to be called on the context initiator's
107 this.initiator = true;
121 this.initiator = false;
252 * Tests if this is the initiator side of the context.
254 * @return boolean indicating if this is initiator (true)
258 return initiator;
494 "acceptSecContext on an initiator " +
531 * that the initiator requested and the list that
697 // Only called on acceptor side. On the initiator sid
[all...]

Completed in 63 milliseconds