in src/java/org/apache/fulcrum/jce/crypto/extended/CryptoUtilJ8.java [88:95]
public static CryptoUtilJ8 getInstance(TYPES type, byte[] salt, int count) {
synchronized (CryptoUtilJ8.class) {
if (!instancesWithExplicitParams.containsKey(type)) {
instancesWithExplicitParams.put(type, new CryptoUtilJ8(type, salt, count));
}
return instancesWithExplicitParams.get(type);
}
}