public InputStream getInputStream()

in src/java/org/apache/fulcrum/jce/crypto/CryptoStreamFactoryTemplate.java [93:111]


    public InputStream getInputStream(InputStream is, String decryptionMode, char[] password) throws GeneralSecurityException, IOException 
    {

        InputStream result = null;

        if( "auto".equalsIgnoreCase(decryptionMode) )
        {
            result = getSmartInputStream(is, password);
        }
        else if( "true".equalsIgnoreCase(decryptionMode) )
        {
            result = getInputStream(is, password);
        }
        else
        {
            result = is;
        }
        return result;
    }