Searched refs:mech (Results 26 - 34 of 34) sorted by relevance

12

/openjdk7/jdk/src/share/native/sun/security/jgss/wrapper/
H A DNativeUtil.c480 gss_OID mech; local
485 mech = (gss_OID) (*env)->GetLongField(env, jstub, FID_GSSLibStub_pMech);
487 mech = GSS_C_NO_OID;
490 major = (*ftab->displayStatus)(&minor, statusValue, GSS_C_MECH_CODE, mech,
601 * Utility routine for creating a non-mech gss_OID using
731 int sameMech(JNIEnv *env, gss_OID mech, gss_OID mech2) { argument
734 if (mech->length == mech2->length) {
735 result = (memcmp(mech->elements, mech2->elements, mech->length) == 0);
/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DNativeGSSContext.java80 // Retrieve the (preferred) mech out of SPNEGO tokens, i.e.
85 Oid mech = null;
101 mech = mechList[0];
105 mech = ntok.getSupportedMech();
107 return mech;
249 Oid mech = cStub.getMech();
250 if (GSSUtil.isSpNegoMech(mech) || GSSUtil.isKerberosMech(mech)) {
H A DGSSNameElement.java123 // Need to add back the mech Oid portion (stripped
128 Oid mech = cStub.getMech();
130 dout.putOID(new ObjectIdentifier(mech.toString()));
212 // Need to strip off the mech Oid portion of the exported
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DContext.java178 * @param mech GSS mech
181 public void startAsClient(final String target, final Oid mech) throws Exception { argument
190 mech,
200 * @param mech GSS mech
203 public void startAsServer(final Oid mech) throws Exception { argument
204 startAsServer(null, mech);
210 * @param mech GSS mech
213 startAsServer(final String name, final Oid mech) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSContextImpl.java128 public GSSContextImpl(GSSManagerImpl gssManager, GSSName peer, Oid mech, argument
134 if (mech == null) mech = ProviderList.DEFAULT_MECH_OID;
140 this.mechOid = mech;
234 // mech
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Doid.c138 #define OD(oid,tag,desc,mech,ext) { OI(oid), tag, desc, mech, ext }
140 #define OD(oid,tag,desc,mech,ext) { OI(oid), tag, 0, mech, ext }
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoContext.java309 // determine available mech set
559 // print the negotiated mech info
669 DerOutputStream mech = new DerOutputStream();
672 mech.write(mechType);
676 mechTypeList.write(DerValue.tag_Sequence, mech);
699 // state from mech below is used.
815 // initialize mech context
859 // initialize mech context
1194 "Underlying mech not established.");
1200 "inquireSecContext not supported by underlying mech
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DFunctions.java408 Integer mech = idMap.get(name);
409 if (mech == null) {
412 return mech.intValue() & 0xffffffffL;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java840 int mech = (int)longMech;
841 Integer integerMech = Integer.valueOf(mech);
858 if (mech == nextMech) {

Completed in 57 milliseconds

12