com.googlecode.jinahya.nica.util.AesBC Maven / Gradle / Ivy
/*
* Copyright 2012 Jin Kwon .
*
* Licensed 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.
*/
package com.googlecode.jinahya.nica.util;
import org.bouncycastle.crypto.BufferedBlockCipher;
import org.bouncycastle.crypto.InvalidCipherTextException;
import org.bouncycastle.crypto.engines.AESFastEngine;
import org.bouncycastle.crypto.modes.CBCBlockCipher;
import org.bouncycastle.crypto.paddings.PaddedBufferedBlockCipher;
import org.bouncycastle.crypto.params.KeyParameter;
import org.bouncycastle.crypto.params.ParametersWithIV;
/**
* An Aes implementation using Bouncy Castle .
*
* @author Jin Kwon
*/
public class AesBC extends Aes {
/**
* Creates a new instance.
*
* @param key encryption key
*/
public AesBC(final byte[] key) {
super();
if (key == null) {
throw new NullPointerException("key");
}
if (key.length != KEY_SIZE_IN_BYTES) {
throw new IllegalArgumentException(
"key.length(" + key.length + ") != " + KEY_SIZE_IN_BYTES);
}
keyParameter = new KeyParameter(key);
cipher = new PaddedBufferedBlockCipher(new CBCBlockCipher(
new AESFastEngine()));
}
//@Override // commented for pre5
public byte[] encrypt(final byte[] iv, final byte[] decrypted) {
if (iv == null) {
throw new NullPointerException("iv");
}
if (iv.length != BLOCK_SIZE_IN_BYTES) {
throw new IllegalArgumentException(
"iv.length(" + iv.length + ") != " + BLOCK_SIZE_IN_BYTES);
}
if (decrypted == null) {
throw new NullPointerException("decrypted");
}
cipher.reset();
cipher.init(true, new ParametersWithIV(keyParameter, iv));
final byte[] encrypted =
new byte[cipher.getOutputSize(decrypted.length)];
int offset = cipher.processBytes(
decrypted, 0, decrypted.length, encrypted, 0);
try {
offset += cipher.doFinal(encrypted, offset);
} catch (InvalidCipherTextException icte) {
throw new RuntimeException(icte.getMessage());
}
if (offset < encrypted.length) {
final byte[] trimmed = new byte[offset];
System.arraycopy(encrypted, 0, trimmed, 0, offset);
return trimmed;
}
return encrypted;
}
//@Override // commented for pre5
public byte[] decrypt(final byte[] iv, final byte[] encrypted) {
if (iv == null) {
throw new NullPointerException("iv");
}
if (iv.length != BLOCK_SIZE_IN_BYTES) {
throw new IllegalArgumentException(
"iv.length(" + iv.length + ") != " + BLOCK_SIZE_IN_BYTES);
}
if (encrypted == null) {
throw new NullPointerException("encrypted");
}
cipher.reset();
cipher.init(false, new ParametersWithIV(keyParameter, iv));
final byte[] decrypted =
new byte[cipher.getOutputSize(encrypted.length)];
int offset = cipher.processBytes(
encrypted, 0, encrypted.length, decrypted, 0);
try {
offset += cipher.doFinal(decrypted, offset);
} catch (InvalidCipherTextException icte) {
throw new RuntimeException(icte.getMessage());
}
if (offset < decrypted.length) {
final byte[] trimmed = new byte[offset];
System.arraycopy(decrypted, 0, trimmed, 0, offset);
return trimmed;
}
return decrypted;
}
/**
* key.
*/
private final KeyParameter keyParameter;
/**
* cipher.
*/
private final BufferedBlockCipher cipher;
}