Searched refs:prfHashAlg (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/internal/spec/
H A DTlsPrfParameterSpec.java51 private final String prfHashAlg; field in class:TlsPrfParameterSpec
62 * @param prfHashAlg the name of the TLS PRF hash algorithm to use.
74 String prfHashAlg, int prfHashLength, int prfBlockSize) {
85 this.prfHashAlg = prfHashAlg;
134 return prfHashAlg;
72 TlsPrfParameterSpec(SecretKey secret, String label, byte[] seed, int outputLength, String prfHashAlg, int prfHashLength, int prfBlockSize) argument
H A DTlsMasterSecretParameterSpec.java51 private final String prfHashAlg; field in class:TlsMasterSecretParameterSpec
67 * @param prfHashAlg the name of the TLS PRF hash algorithm to use.
82 String prfHashAlg, int prfHashLength, int prfBlockSize) {
91 this.prfHashAlg = prfHashAlg;
155 return prfHashAlg;
79 TlsMasterSecretParameterSpec(SecretKey premasterSecret, int majorVersion, int minorVersion, byte[] clientRandom, byte[] serverRandom, String prfHashAlg, int prfHashLength, int prfBlockSize) argument
H A DTlsKeyMaterialParameterSpec.java54 private final String prfHashAlg; field in class:TlsKeyMaterialParameterSpec
78 * @param prfHashAlg the name of the TLS PRF hash algorithm to use.
96 String prfHashAlg, int prfHashLength, int prfBlockSize) {
115 this.prfHashAlg = prfHashAlg;
239 return prfHashAlg;
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
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherSuite.java617 private final String prfHashAlg; field in class:CipherSuite.PRF
621 PRF(String prfHashAlg, int prfHashLength, int prfBlockSize) { argument
622 this.prfHashAlg = prfHashAlg;
628 return prfHashAlg;
H A DHandshaker.java1041 String prfHashAlg = prf.getPRFHashAlg();
1048 prfHashAlg, prfHashLength, prfBlockSize);
1175 String prfHashAlg = prf.getPRFHashAlg();
1184 prfHashAlg, prfHashLength, prfBlockSize);
H A DHandshakeMessage.java1930 String prfHashAlg = prf.getPRFHashAlg();
1942 prfHashAlg, prfHashLength, prfBlockSize);

Completed in 304 milliseconds