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

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPBEParameters.java59 private int iCount = 0; field in class:PBEParameters
69 this.iCount = ((PBEParameterSpec)paramSpec).getIterationCount();
84 this.iCount = val.data.getInteger();
105 return new PBEParameterSpec(this.salt, this.iCount);
117 bytes.putInteger(this.iCount);
140 + LINE_SEP + Debug.toHexString(BigInteger.valueOf(iCount))
H A DPBECipherCore.java51 private int iCount = 10; field in class:PBECipherCore
170 PBEParameterSpec pbeSpec = new PBEParameterSpec(salt, iCount);
242 iCount = ((PBEParameterSpec) params).getIterationCount();
243 if (iCount <= 0) {
275 for (int i = 0; i < iCount; i++) {
311 for (int j=0; j < iCount; j++) {
H A DPKCS12PBECipherCore.java52 private int iCount = 0; field in class:PKCS12PBECipherCore
206 // section B.4 to generate salt and iCount.
209 iCount = DEFAULT_COUNT;
211 PBEParameterSpec pbeSpec = new PBEParameterSpec(salt, iCount);
234 iCount = 0;
240 iCount = pbeKey.getIterationCount(); // maybe 0 if unspecified
257 ((params == null) && ((salt == null) || (iCount == 0)))) {
272 if (iCount == 0) iCount = DEFAULT_COUNT;
287 if (iCount !
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/PBE/
H A DPKCS12Cipher.java99 int iCount; field in class:MyPBEKey
100 MyPBEKey(char[] passwd, byte[] salt, int iCount) { argument
103 this.iCount = iCount;
107 public int getIterationCount() { return iCount; }
/openjdk7/jdk/test/com/sun/crypto/provider/Mac/
H A DHmacSaltLengths.java94 int iCount; field in class:MyPBEKey
95 MyPBEKey(char[] passwd, byte[] salt, int iCount) { argument
98 this.iCount = iCount;
102 public int getIterationCount() { return iCount; }

Completed in 47 milliseconds