Searched defs:cipherSuite (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/sun/security/ssl/sanity/interop/
H A DCipherTest.java106 String cipherSuite; field in class:CipherTest.TestParameters
110 TestParameters(String cipherSuite, String protocol, argument
112 this.cipherSuite = cipherSuite;
118 return TLSCipherStatus.isEnabled(cipherSuite, protocol);
122 String s = cipherSuite + " in " + protocol + " mode";
175 final String cipherSuite; field in class:CipherTest.TestParameters.TLSCipherStatus
183 TLSCipherStatus(String cipherSuite, argument
185 this.cipherSuite = cipherSuite;
190 isEnabled(String cipherSuite, String protocol) argument
438 isSupported(String cipherSuite, String protocol) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSessionImpl.java96 private CipherSuite cipherSuite; field in class:SSLSessionImpl
150 SSLSessionImpl(ProtocolVersion protocolVersion, CipherSuite cipherSuite, argument
153 this(protocolVersion, cipherSuite, algorithms,
160 SSLSessionImpl(ProtocolVersion protocolVersion, CipherSuite cipherSuite, argument
167 this.cipherSuite = cipherSuite;
308 return cipherSuite;
315 cipherSuite = suite;
391 if ((cipherSuite.keyExchange == K_KRB5) ||
392 (cipherSuite
[all...]
H A DHandshakeMessage.java343 CipherSuite cipherSuite; field in class:HandshakeMessage.ServerHello
357 cipherSuite = CipherSuite.valueOf(input.getInt8(), input.getInt8());
381 s.putInt8(cipherSuite.id >> 8);
382 s.putInt8(cipherSuite.id & 0xff);
400 s.println("Cipher Suite: " + cipherSuite);
1852 private CipherSuite cipherSuite; field in class:HandshakeMessage.Finished
1858 int sender, SecretKey master, CipherSuite cipherSuite) {
1860 this.cipherSuite = cipherSuite;
1868 CipherSuite cipherSuite) throw
1857 Finished(ProtocolVersion protocolVersion, HandshakeHash handshakeHash, int sender, SecretKey master, CipherSuite cipherSuite) argument
1867 Finished(ProtocolVersion protocolVersion, HandshakeInStream input, CipherSuite cipherSuite) argument
[all...]
H A DHandshaker.java130 CipherSuite cipherSuite; field in class:Handshaker
503 * Set cipherSuite and keyExchange to the given CipherSuite.
508 this.cipherSuite = s;
666 BulkCipher cipher = cipherSuite.cipher;
686 BulkCipher cipher = cipherSuite.cipher;
706 MacAlg macAlg = cipherSuite.macAlg;
722 MacAlg macAlg = cipherSuite.macAlg;
1035 prf = cipherSuite.prfAlg;
1158 int hashSize = cipherSuite.macAlg.size;
1159 boolean is_exportable = cipherSuite
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/fips/
H A DCipherTest.java105 String cipherSuite; field in class:CipherTest.TestParameters
109 TestParameters(String cipherSuite, String protocol, argument
111 this.cipherSuite = cipherSuite;
117 return TLSCipherStatus.isEnabled(cipherSuite, protocol);
121 String s = cipherSuite + " in " + protocol + " mode";
174 final String cipherSuite; field in class:CipherTest.TestParameters.TLSCipherStatus
182 TLSCipherStatus(String cipherSuite, argument
184 this.cipherSuite = cipherSuite;
189 isEnabled(String cipherSuite, String protocol) argument
453 isSupported(String cipherSuite, String protocol) argument
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/sslecc/
H A DCipherTest.java105 String cipherSuite; field in class:CipherTest.TestParameters
109 TestParameters(String cipherSuite, String protocol, argument
111 this.cipherSuite = cipherSuite;
117 return TLSCipherStatus.isEnabled(cipherSuite, protocol);
121 String s = cipherSuite + " in " + protocol + " mode";
174 final String cipherSuite; field in class:CipherTest.TestParameters.TLSCipherStatus
182 TLSCipherStatus(String cipherSuite, argument
184 this.cipherSuite = cipherSuite;
189 isEnabled(String cipherSuite, String protocol) argument
439 isSupported(String cipherSuite, String protocol) argument
[all...]

Completed in 46 milliseconds