Searched defs:secCtx (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/web/integration/
H A DWebPrincipal.java58 private SecurityContext secCtx; field in class:WebPrincipal
68 this.secCtx = context;
79 this.secCtx = context;
94 this.secCtx = context;
113 return secCtx;
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java150 protected SecurityCtx secCtx; field in class:DigestMD5Base
197 * Unwrap the incoming message using the wrap method of the secCtx object
214 if (secCtx == null) {
219 return (secCtx.unwrap(incoming, start, len));
223 * Wrap outgoing bytes using the wrap method of the secCtx object
240 if (secCtx == null) {
245 return (secCtx.wrap(outgoing, start, len));
249 if (secCtx != null) {
250 secCtx = null;
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Base.java49 protected GSSContext secCtx = null; field in class:GssKrb5Base
78 byte[] answer = secCtx.unwrap(incoming, start, len, msgProp);
104 byte[] answer = secCtx.wrap(outgoing, start, len, msgProp);
119 if (secCtx != null) {
121 secCtx.dispose();
125 secCtx = null;

Completed in 117 milliseconds