/openjdk7/jdk/src/share/classes/sun/security/internal/spec/ |
H A D | TlsPrfParameterSpec.java | 53 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 D | TlsMasterSecretParameterSpec.java | 53 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 D | TlsKeyMaterialParameterSpec.java | 56 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/test/com/sun/crypto/provider/TLS/ |
H A D | TestPRF12.java | 66 int prfBlockSize = 0; 93 prfBlockSize = 64; 97 prfBlockSize = 64; 101 prfBlockSize = 128; 105 prfBlockSize = 128; 126 prfAlg, prfHashLength, prfBlockSize);
|
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/ |
H A D | TlsPrfGenerator.java | 166 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 D | CipherSuite.java | 619 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;
|
H A D | Handshaker.java | 1043 int prfBlockSize = prf.getPRFBlockSize(); 1048 prfHashAlg, prfHashLength, prfBlockSize); 1177 int prfBlockSize = prf.getPRFBlockSize(); 1184 prfHashAlg, prfHashLength, prfBlockSize);
|
H A D | HandshakeMessage.java | 1932 int prfBlockSize = prf.getPRFBlockSize(); 1942 prfHashAlg, prfHashLength, prfBlockSize);
|