Searched refs:iCount (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacPKCS12PBESHA1.java81 int iCount = 0;
87 iCount = pbeKey.getIterationCount(); // maybe 0 if unspecified
107 if (iCount == 0) iCount = 100;
122 if (iCount != 0) {
123 if (iCount != pbeParams.getIterationCount()) {
128 iCount = pbeParams.getIterationCount();
138 if (iCount <= 0) {
143 iCount, hmac.getDigestLength(), PKCS12PBECipherCore.MAC_KEY);
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/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; }
/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/src/share/classes/java/text/
H A DCharacterIteratorFieldDelegate.java114 int iCount = attributedStrings.size();
116 AttributedCharacterIterator[iCount];
118 for (int counter = 0; counter < iCount; counter++) {

Completed in 54 milliseconds