src/java/org/apache/fulcrum/jce/crypto/CryptoUtil.java [247:252]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void decrypt(CryptoStreamFactory factory, Object source, Object target, char[] password)
            throws GeneralSecurityException, IOException {
        InputStream is = StreamUtil.createInputStream(source);
        OutputStream os = StreamUtil.createOutputStream(target);
        InputStream dis = factory.getInputStream(is, password);
        StreamUtil.copy(dis, os);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/fulcrum/jce/crypto/extended/CryptoUtilJ8.java [148:153]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected void decrypt(CryptoStreamFactory factory, Object source, Object target, char[] password)
			throws GeneralSecurityException, IOException {
		InputStream is = StreamUtil.createInputStream(source);
		OutputStream os = StreamUtil.createOutputStream(target);
		InputStream dis = factory.getInputStream(is, password);
		StreamUtil.copy(dis, os);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



