public CryptoStreamPBEImpl()

in src/java/org/apache/fulcrum/jce/crypto/algo/CryptoStreamPBEImpl.java [107:114]


    public CryptoStreamPBEImpl( byte[] salt, int count)
    {
        setSalt(salt);
        this.count = count;
        this.providerName = PROVIDERNAME;
        setType(TYPES.PBE);
        this.algorithm = CryptoParametersJ8.TYPES_IMPL.ALGORITHM_J8_PBE.getAlgorithm();
    }