public static CryptoUtilJ8 getInstance()

in src/java/org/apache/fulcrum/jce/crypto/extended/CryptoUtilJ8.java [71:78]


	public static CryptoUtilJ8 getInstance(TYPES type) {
		synchronized (CryptoUtilJ8.class) {
			if (!instances.containsKey(type)) {
				instances.put(type, new CryptoUtilJ8(type));
			}
			return instances.get(type);
		}
	}