public synchronized static CryptoUtil getInstance()

in src/java/org/apache/fulcrum/jce/crypto/CryptoUtil.java [77:83]


    public synchronized static CryptoUtil getInstance(byte[] salt, int count) {
        if (CryptoUtil.instance == null) {
            CryptoUtil.instance = new CryptoUtil(salt, count);
        }

        return CryptoUtil.instance;
    }