Home
last modified time | relevance | path

Searched refs:itCount (Results 1 – 1 of 1) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
DPKCS12KeyStoreSpi.java812 int itCount = mData.getIterationCount().intValue(); in engineLoad() local
818 … byte[] res = calculatePbeMac(algId.getAlgorithm(), salt, itCount, password, false, data); in engineLoad()
829 … res = calculatePbeMac(algId.getAlgorithm(), salt, itCount, password, true, data); in engineLoad()
1625 int itCount = MIN_ITERATIONS; in doStore() local
1635 byte[] res = calculatePbeMac(id_SHA1, mSalt, itCount, password, false, data); in doStore()
1640 mData = new MacData(dInfo, mSalt, itCount); in doStore()
1695 int itCount, in calculatePbeMac() argument
1701 PBEParameterSpec defParams = new PBEParameterSpec(salt, itCount); in calculatePbeMac()