Searched defs:cipherAlgorithm (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/test/sun/security/pkcs11/tls/
H A DTestKeyMaterial.java70 String cipherAlgorithm = null;
103 cipherAlgorithm = data;
134 clientRandom, serverRandom, cipherAlgorithm,
142 result.getClientCipherKey(), cipherAlgorithm);
144 result.getServerCipherKey(), cipherAlgorithm);
169 String cipherAlgorithm) throws Exception {
180 if (cipherAlgorithm.equalsIgnoreCase("DES") ||
181 cipherAlgorithm.equalsIgnoreCase("DESede")) {
168 match(int lineNumber, byte[] out, Object res, String cipherAlgorithm) argument
/openjdk7/jdk/src/share/classes/sun/security/internal/spec/
H A DTlsKeyMaterialParameterSpec.java51 private final String cipherAlgorithm; field in class:TlsKeyMaterialParameterSpec
66 * @param cipherAlgorithm the algorithm name of the cipher keys to
86 * serverRandom, or cipherAlgorithm are null
94 byte[] serverRandom, String cipherAlgorithm, int cipherKeyLength,
100 if (cipherAlgorithm == null) {
110 this.cipherAlgorithm = cipherAlgorithm;
178 return cipherAlgorithm;
92 TlsKeyMaterialParameterSpec(SecretKey masterSecret, int majorVersion, int minorVersion, byte[] clientRandom, byte[] serverRandom, String cipherAlgorithm, int cipherKeyLength, int expandedCipherKeyLength, int ivLength, int macKeyLength, String prfHashAlg, int prfHashLength, int prfBlockSize) argument

Completed in 30 milliseconds