Searched defs:cStub (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/jgss/wrapper/
H A DGSSCredElement.java43 private GSSLibStub cStub; field in class:GSSCredElement
47 if (GSSUtil.isKerberosMech(cStub.getMech())) {
66 cStub = GSSLibStub.getInstance(mech);
73 cStub = stub;
79 pCred = cStub.acquireCred(this.name.pName, lifetime, usage);
81 pCred = cStub.acquireCred(0, lifetime, usage);
82 this.name = new GSSNameElement(cStub.getCredName(pCred), cStub);
94 pCred = cStub.releaseCred(pCred);
105 return cStub
[all...]
H A DGSSNameElement.java53 private GSSLibStub cStub; field in class:GSSNameElement
104 cStub = stub;
114 cStub = stub;
128 Oid mech = cStub.getMech();
150 pName = cStub.importName(name, nameType);
159 printables = cStub.displayName(pName);
172 GSSLibStub stub = cStub;
173 if (!GSSUtil.isKerberosMech(cStub.getMech())) {
191 return cStub.compareName(pName, ((GSSNameElement)other).pName);
210 byte[] nameVal = cStub
[all...]
H A DNativeGSSFactory.java45 GSSLibStub cStub = null; field in class:NativeGSSFactory
51 Oid mech = cStub.getMech();
78 cStub = GSSLibStub.getInstance(mech);
86 return new GSSNameElement(nameBytes, nameType, cStub);
95 return new GSSNameElement(name, nameType, cStub);
123 usage, cStub);
129 usage, cStub);
155 lifetime, cStub);
165 return new NativeGSSContext((GSSCredElement) myCred, cStub);
170 return cStub
[all...]
H A DNativeGSSContext.java75 private final GSSLibStub cStub; field in class:NativeGSSContext
116 if (GSSUtil.isSpNegoMech(cStub.getMech()) && isInitiator
164 (new ObjectIdentifier(cStub.getMech().toString()),
194 cStub = stub;
200 if (GSSUtil.isKerberosMech(cStub.getMech())) {
204 GSSCredential.INITIATE_ONLY, cStub);
213 cStub = stub;
221 if (GSSUtil.isKerberosMech(cStub.getMech()) && targetName != null) {
233 cStub = stub;
236 long[] info = cStub
[all...]

Completed in 32 milliseconds