blob: 153d9057623c1d728435aa7c8cee72423da9acc2 [file] [log] [blame]
package org.apache.fulcrum.jce.crypto;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.GeneralSecurityException;
/**
* Helper class to provde generic functions to work with CryptoStreams.
*
* The code uses parts from Markus Hahn's Blowfish library found at
* http://blowfishj.sourceforge.net/
*
* @author <a href="mailto:siegfried.goeschl@it20one.at">Siegfried Goeschl </a>
* @author <a href="mailto:maakus@earthlink.net">Markus Hahn</a>
*/
public final class CryptoUtil
{
/**
* Copies from a source to a target object using encryption
*
* @param source the source object
* @param target the target object
* @param password the password to use for encryption
* @throws GeneralSecurityException accessing JCE failed
* @throws IOException accessing the souce failed
*
*/
public static void encrypt( Object source, Object target, char[] password )
throws GeneralSecurityException, IOException
{
CryptoUtil.encrypt(
CryptoUtil.getCryptoStreamFactory(),
source,
target,
password
);
}
/**
* Copies from a source to a target object using encryption and a
* caller supplied CryptoStreamFactory.
*
* @param factory the factory to create the crypto streams
* @param source the source object
* @param target the target object
* @param password the password to use for encryption
* @throws GeneralSecurityException accessing JCE failed
* @throws IOException accessing the souce failed
*/
public static void encrypt(
CryptoStreamFactory factory, Object source, Object target, char[] password )
throws GeneralSecurityException, IOException
{
InputStream is = StreamUtil.createInputStream( source );
OutputStream os = StreamUtil.createOutputStream( target );
OutputStream eos = factory.getOutputStream( os, password );
StreamUtil.copy( is, eos );
}
/**
* Copies from a source to a target object using decryption.
*
* @param source the source object
* @param target the target object
* @param password the password to use for decryption
* @throws GeneralSecurityException accessing JCE failed
* @throws IOException accessing the souce failed
*/
public static void decrypt( Object source, Object target, char[] password )
throws GeneralSecurityException, IOException
{
CryptoUtil.decrypt(
CryptoUtil.getCryptoStreamFactory(),
source,
target,
password
);
}
/**
* Copies from a source to a target object using decryption and a
* caller-suppier CryptoStreamFactory.
*
* @param factory the factory to create the crypto streams
* @param source the source object
* @param target the target object
* @param password the password to use for decryption
* @throws GeneralSecurityException accessing JCE failed
* @throws IOException accessing the souce failed
*/
public static 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 );
}
/**
* Encrypts a string into a hex string.
*
* @param plainText the plain text to be encrypted
* @param password the password for encryption
* @return the encrypted string
* @throws GeneralSecurityException accessing JCE failed
* @throws IOException accessing the souce failed
*/
public static String encryptString( String plainText, char[] password )
throws GeneralSecurityException, IOException
{
return CryptoUtil.encryptString(
CryptoUtil.getCryptoStreamFactory(),
plainText,
password
);
}
/**
* Encrypts a string into a hex string.
*
* @param factory the factory to create the crypto streams
* @param plainText the plain text to be encrypted
* @param password the password for encryption
* @return the encrypted string
* @throws GeneralSecurityException accessing JCE failed
* @throws IOException accessing the souce failed
*/
public static String encryptString(
CryptoStreamFactory factory, String plainText, char[] password )
throws GeneralSecurityException, IOException
{
ByteArrayOutputStream bais = new ByteArrayOutputStream();
CryptoUtil.encrypt( factory, plainText, bais, password );
return HexConverter.toString( bais.toByteArray() );
}
/**
* Decrypts an encrypted string into the plain text. The encrypted
* string must be a hex string created by encryptString.
*
* @param cipherText the encrypted text to be decrypted
* @param password the password for decryption
* @return the decrypted string
* @throws GeneralSecurityException accessing JCE failed
* @throws IOException accessing the souce failed
*/
public static String decryptString( String cipherText, char[] password )
throws GeneralSecurityException, IOException
{
return CryptoUtil.decryptString(
CryptoUtil.getCryptoStreamFactory(),
cipherText,
password
);
}
/**
* Decrypts an encrypted string into the plain text. The encrypted
* string must be a hex string created by encryptString.
*
* @param factory the factory to create the crypto streams
* @param cipherText the encrypted text to be decrypted
* @param password the password for decryption
* @return the decrypted string
* @throws GeneralSecurityException accessing JCE failed
* @throws IOException accessing the souce failed
*/
public static String decryptString(
CryptoStreamFactory factory, String cipherText, char[] password )
throws GeneralSecurityException, IOException
{
byte[] buffer = HexConverter.toBytes( cipherText );
ByteArrayOutputStream bais = new ByteArrayOutputStream();
CryptoUtil.decrypt( factory, buffer, bais, password );
return new String( bais.toByteArray(), "utf-8" );
}
/**
* Pumps the input stream to the output stream.
*
* @param is the source input stream
* @param os the target output stream
* @return the number of bytes copied
* @throws IOException the copying failed
* @deprecated use StreamUtil instead
*/
public static long copy( InputStream is, OutputStream os )
throws IOException
{
return StreamUtil.copy(is, os);
}
/**
* @return the CryptoStreamFactory to be used
*/
public static CryptoStreamFactory getCryptoStreamFactory()
{
return CryptoStreamFactoryImpl.getInstance();
}
}