Searched refs:privacy (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DWrapToken_v2.java53 private final boolean privacy; field in class:WrapToken_v2
73 this.privacy = prop.getPrivacy();
92 this.privacy = prop.getPrivacy();
126 // Do decryption if this token was privacy protected.
127 if (privacy) {
176 * If the application decides to ask for privacy when the context
184 privacy = prop.getPrivacy();
186 if (!privacy) {
H A DWrapToken.java105 private boolean privacy = false; field in class:WrapToken
133 this.privacy = prop.getPrivacy();
158 this.privacy = prop.getPrivacy();
241 // Do decryption if this token was privacy protected.
243 if (privacy) {
317 // Do decryption if this token was privacy protected.
319 if (privacy) {
428 * If the application decides to ask for privacy when the context
436 privacy = prop.getPrivacy();
444 if (!privacy) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Base.java71 // integrity will be true if either privacy or integrity negotiated
77 MessageProp msgProp = new MessageProp(JGSS_QOP, privacy);
96 // integrity will be true if either privacy or integrity negotiated
103 MessageProp msgProp = new MessageProp(JGSS_QOP, privacy);
H A DGssKrb5Client.java257 privacy = true;
273 rawSendSize = secCtx.getWrapSizeLimit(JGSS_QOP, privacy,
296 "KRB5CLNT08:Selected protection: {0}; privacy: {1}; integrity: {2}",
298 Boolean.valueOf(privacy),
316 new MessageProp(0 /* qop */, false /* privacy */));
H A DGssKrb5Server.java109 // Might need privacy
214 new MessageProp(0 /* gop */, false /* privacy */));
246 privacy = true;
263 rawSendSize = secCtx.getWrapSizeLimit(JGSS_QOP, privacy,
268 "KRB5SRV10:Selected protection: {0}; privacy: {1}; integrity: {2}",
270 Boolean.valueOf(privacy),
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DContext.java375 public byte[] wrap(byte[] t, final boolean privacy) argument
380 System.out.printf("wrap %s privacy from %s: ", privacy?"with":"without", me.name);
381 MessageProp p1 = new MessageProp(0, privacy);
396 public byte[] unwrap(byte[] t, final boolean privacy) argument
401 System.out.printf("unwrap %s privacy from %s: ", privacy?"with":"without", me.name);
402 MessageProp p1 = new MessageProp(0, privacy);
491 sb.append(prop.getPrivacy()?"privacy, ":"");
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Server.java257 if (integrity && privacy) {
479 integrity = privacy = true;
490 if (privacy) {
H A DDigestMD5Client.java250 if (integrity && privacy) {
430 privacy = integrity = true;
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/util/
H A DAbstractSaslImpl.java53 protected boolean privacy = false; field in class:AbstractSaslImpl
59 // These are relevant only when privacy or integray have been negotiated
161 if (privacy) {

Completed in 2506 milliseconds