public InputStream getSmartInputStream()

in src/java/org/apache/fulcrum/jce/crypto/CryptoStreamFactoryImpl.java [152:164]


    public InputStream getSmartInputStream(InputStream is, char[] password )
        throws GeneralSecurityException, IOException
    {
        SmartDecryptingInputStream result;

        result = new SmartDecryptingInputStream(
            getInstance(),
            is,
            password
            );

        return result;
    }