Searched defs:prfBlockSize (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/internal/spec/
H A DTlsPrfParameterSpec.java53 private final int prfBlockSize; field in class:TlsPrfParameterSpec
66 * @param prfBlockSize the input block size of the TLS PRF hash algorithm.
74 String prfHashAlg, int prfHashLength, int prfBlockSize) {
87 this.prfBlockSize = prfBlockSize;
155 return prfBlockSize;
72 TlsPrfParameterSpec(SecretKey secret, String label, byte[] seed, int outputLength, String prfHashAlg, int prfHashLength, int prfBlockSize) argument
H A DTlsMasterSecretParameterSpec.java53 private final int prfBlockSize; field in class:TlsMasterSecretParameterSpec
71 * @param prfBlockSize the input block size of the TLS PRF hash algorithm.
82 String prfHashAlg, int prfHashLength, int prfBlockSize) {
93 this.prfBlockSize = prfBlockSize;
173 return prfBlockSize;
79 TlsMasterSecretParameterSpec(SecretKey premasterSecret, int majorVersion, int minorVersion, byte[] clientRandom, byte[] serverRandom, String prfHashAlg, int prfHashLength, int prfBlockSize) argument
H A DTlsKeyMaterialParameterSpec.java56 private final int prfBlockSize; field in class:TlsKeyMaterialParameterSpec
82 * @param prfBlockSize the input block size of the TLS PRF hash algorithm.
96 String prfHashAlg, int prfHashLength, int prfBlockSize) {
117 this.prfBlockSize = prfBlockSize;
257 return prfBlockSize;
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/com/sun/crypto/provider/
H A DTlsPrfGenerator.java166 String prfHash, int prfHashLength, int prfBlockSize)
173 prfMD, prfHashLength, prfBlockSize);
164 doTLS12PRF(byte[] secret, byte[] labelBytes, byte[] seed, int outputLength, String prfHash, int prfHashLength, int prfBlockSize) argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherSuite.java619 private final int prfBlockSize; field in class:CipherSuite.PRF
621 PRF(String prfHashAlg, int prfHashLength, int prfBlockSize) { argument
624 this.prfBlockSize = prfBlockSize;
636 return prfBlockSize;

Completed in 31 milliseconds