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

/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/spec/
H A DHMACParameterSpec.java55 private int outputLength; field in class:HMACParameterSpec
61 * @param outputLength the truncation length in number of bits
63 public HMACParameterSpec(int outputLength) { argument
64 this.outputLength = outputLength;
73 return outputLength;
/openjdk7/jdk/src/share/classes/sun/security/internal/spec/
H A DTlsPrfParameterSpec.java50 private final int outputLength; field in class:TlsPrfParameterSpec
61 * @param outputLength the length in bytes of the output key to be produced
70 * @throws IllegalArgumentException if outputLength is negative
73 byte[] seed, int outputLength,
78 if (outputLength <= 0) {
79 throw new IllegalArgumentException("outputLength must be positive");
84 this.outputLength = outputLength;
125 return outputLength;
72 TlsPrfParameterSpec(SecretKey secret, String label, byte[] seed, int outputLength, String prfHashAlg, int prfHashLength, int prfBlockSize) argument
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharConverter.java165 int outputLength = convert( input, 0, input.length,
167 outputLength += flush( output, outputLength, output.length );
169 char [] returnedOutput = new char[ outputLength ];
170 System.arraycopy( output, 0, returnedOutput, 0, outputLength );
H A DCharToByteConverter.java231 int outputLength = convert( input, 0, input.length,
233 outputLength += flush( output, nextByteIndex(), output.length );
235 byte [] returnedOutput = new byte[ outputLength ];
236 System.arraycopy( output, 0, returnedOutput, 0, outputLength );
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMHMACSignatureMethod.java60 private int outputLength; field in class:DOMHMACSignatureMethod
90 outputLength = ((HMACParameterSpec) params).getOutputLength();
94 "Setting outputLength from HMACParameterSpec to: "
95 + outputLength);
98 outputLength = -1;
104 outputLength = new Integer
108 log.log(Level.FINE, "unmarshalled outputLength: " + outputLength);
110 return new HMACParameterSpec(outputLength);
120 (String.valueOf(outputLength)));
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DTlsPrfGenerator.java165 byte[] seed, int outputLength,
172 return doTLS12PRF(secret, labelBytes, seed, outputLength,
177 byte[] seed, int outputLength,
190 byte[] output = new byte[outputLength];
215 byte[] seed, int outputLength) throws NoSuchAlgorithmException,
219 return doTLS10PRF(secret, labelBytes, seed, outputLength, md5, sha);
223 byte[] seed, int outputLength, MessageDigest md5,
244 byte[] output = new byte[outputLength];
164 doTLS12PRF(byte[] secret, byte[] labelBytes, byte[] seed, int outputLength, String prfHash, int prfHashLength, int prfBlockSize) argument
176 doTLS12PRF(byte[] secret, byte[] labelBytes, byte[] seed, int outputLength, MessageDigest mdPRF, int mdPRFLen, int mdPRFBlockSize) argument
214 doTLS10PRF(byte[] secret, byte[] labelBytes, byte[] seed, int outputLength) argument
222 doTLS10PRF(byte[] secret, byte[] labelBytes, byte[] seed, int outputLength, MessageDigest md5, MessageDigest sha) argument

Completed in 42 milliseconds