All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.crypto.stream.CtrCryptoOutputStream Maven / Gradle / Ivy

Go to download

Apache Commons Crypto is a cryptographic library optimized with AES-NI (Advanced Encryption Standard New Instructions). It provides Java API for both cipher level and Java stream level. Developers can use it to implement high performance AES encryption/decryption with the minimum code and effort. Please note that Crypto doesn't implement the cryptographic algorithm such as AES directly. It wraps to Openssl or JCE which implement the algorithms. Features -------- 1. Cipher API for low level cryptographic operations. 2. Java stream API (CryptoInputStream/CryptoOutputStream) for high level stream encyrption/decryption. 3. Both optimized with high performance AES encryption/decryption. (1400 MB/s - 1700 MB/s throughput in modern Xeon processors). 4. JNI-based implementation to achieve comparable performance to the native C++ version based on OpenSsl. 5. Portable across various operating systems (currently only Linux/MacOSX/Windows); Apache Commons Crypto loads the library according to your machine environment (it checks system properties, `os.name` and `os.arch`). 6. Simple usage. Add the commons-crypto-(version).jar file to your classpath. Export restrictions ------------------- This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See <http://www.wassenaar.org/> for more information. The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this Apache Software Foundation distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code. The following provides more details on the included cryptographic software: * Commons Crypto use [Java Cryptography Extension](http://docs.oracle.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec.html) provided by Java * Commons Crypto link to and use [OpenSSL](https://www.openssl.org/) ciphers

There is a newer version: 1.2.0
Show newest version
/**
 * 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.
 */
package org.apache.commons.crypto.stream;

import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.channels.WritableByteChannel;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.util.Properties;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.ShortBufferException;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;

import org.apache.commons.crypto.cipher.CryptoCipher;
import org.apache.commons.crypto.stream.output.ChannelOutput;
import org.apache.commons.crypto.stream.output.Output;
import org.apache.commons.crypto.stream.output.StreamOutput;
import org.apache.commons.crypto.utils.Utils;

/**
 * 

* CtrCryptoOutputStream encrypts data. It is not thread-safe. AES CTR mode is * required in order to ensure that the plain text and cipher text have a 1:1 * mapping. The encryption is buffer based. The key points of the encryption are * (1) calculating counter and (2) padding through stream position. *

*

* counter = base + pos/(algorithm blocksize); padding = pos%(algorithm * blocksize); *

* The underlying stream offset is maintained as state. */ public class CtrCryptoOutputStream extends CryptoOutputStream { /** * Underlying stream offset. */ private long streamOffset = 0; /** * The initial IV. */ private final byte[] initIV; /** * Initialization vector for the cipher. */ private byte[] iv; /** * Padding = pos%(algorithm blocksize); Padding is put into * {@link #inBuffer} before any other data goes in. The purpose of padding * is to put input data at proper position. */ private byte padding; /** * Flag to mark whether the cipher has been reset */ private boolean cipherReset = false; /** * Constructs a {@link CtrCryptoOutputStream}. * * @param props The Properties class represents a set of * properties. * @param out the output stream. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @throws IOException if an I/O error occurs. */ public CtrCryptoOutputStream(Properties props, OutputStream out, byte[] key, byte[] iv) throws IOException { this(props, out, key, iv, 0); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param props The Properties class represents a set of * properties. * @param out the WritableByteChannel instance. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @throws IOException if an I/O error occurs. */ public CtrCryptoOutputStream(Properties props, WritableByteChannel out, byte[] key, byte[] iv) throws IOException { this(props, out, key, iv, 0); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param out the output stream. * @param cipher the CryptoCipher instance. * @param bufferSize the bufferSize. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @throws IOException if an I/O error occurs. */ protected CtrCryptoOutputStream(OutputStream out, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) throws IOException { this(out, cipher, bufferSize, key, iv, 0); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param channel the WritableByteChannel instance. * @param cipher the CryptoCipher instance. * @param bufferSize the bufferSize. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @throws IOException if an I/O error occurs. */ protected CtrCryptoOutputStream(WritableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) throws IOException { this(channel, cipher, bufferSize, key, iv, 0); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param output the Output instance. * @param cipher the CryptoCipher instance. * @param bufferSize the bufferSize. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @throws IOException if an I/O error occurs. */ protected CtrCryptoOutputStream(Output output, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv) throws IOException { this(output, cipher, bufferSize, key, iv, 0); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param props The Properties class represents a set of * properties. * @param out the output stream. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @param streamOffset the start offset in the data. * @throws IOException if an I/O error occurs. */ public CtrCryptoOutputStream(Properties props, OutputStream out, byte[] key, byte[] iv, long streamOffset) throws IOException { this(out, Utils.getCipherInstance( "AES/CTR/NoPadding", props), CryptoInputStream.getBufferSize(props), key, iv, streamOffset); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param props The Properties class represents a set of * properties. * @param out the WritableByteChannel instance. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @param streamOffset the start offset in the data. * @throws IOException if an I/O error occurs. */ public CtrCryptoOutputStream(Properties props, WritableByteChannel out, byte[] key, byte[] iv, long streamOffset) throws IOException { this(out, Utils.getCipherInstance( "AES/CTR/NoPadding", props), CryptoInputStream.getBufferSize(props), key, iv, streamOffset); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param out the output stream. * @param cipher the CryptoCipher instance. * @param bufferSize the bufferSize. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @param streamOffset the start offset in the data. * @throws IOException if an I/O error occurs. */ protected CtrCryptoOutputStream(OutputStream out, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) throws IOException { this(new StreamOutput(out, bufferSize), cipher, bufferSize, key, iv, streamOffset); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param channel the WritableByteChannel instance. * @param cipher the CryptoCipher instance. * @param bufferSize the bufferSize. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @param streamOffset the start offset in the data. * @throws IOException if an I/O error occurs. */ protected CtrCryptoOutputStream(WritableByteChannel channel, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) throws IOException { this(new ChannelOutput(channel), cipher, bufferSize, key, iv, streamOffset); } /** * Constructs a {@link CtrCryptoOutputStream}. * * @param output the output stream. * @param cipher the CryptoCipher instance. * @param bufferSize the bufferSize. * @param key crypto key for the cipher. * @param iv Initialization vector for the cipher. * @param streamOffset the start offset in the data. * @throws IOException if an I/O error occurs. */ protected CtrCryptoOutputStream(Output output, CryptoCipher cipher, int bufferSize, byte[] key, byte[] iv, long streamOffset) throws IOException { super(output, cipher, bufferSize, new SecretKeySpec(key, "AES"), new IvParameterSpec(iv)); CryptoInputStream.checkStreamCipher(cipher); this.streamOffset = streamOffset; this.initIV = iv.clone(); this.iv = iv.clone(); resetCipher(); } /** * Does the encryption, input is {@link #inBuffer} and output is * {@link #outBuffer}. * * @throws IOException if an I/O error occurs. */ @Override protected void encrypt() throws IOException { Utils.checkState(inBuffer.position() >= padding); if (inBuffer.position() == padding) { // There is no real data in the inBuffer. return; } inBuffer.flip(); outBuffer.clear(); encryptBuffer(outBuffer); inBuffer.clear(); outBuffer.flip(); if (padding > 0) { /* * The plain text and cipher text have a 1:1 mapping, they start at * the same position. */ outBuffer.position(padding); padding = 0; } final int len = output.write(outBuffer); streamOffset += len; if (cipherReset) { /* * This code is generally not executed since the encryptor usually * maintains encryption context (e.g. the counter) internally. * However, some implementations can't maintain context so a re-init * is necessary after each encryption call. */ resetCipher(); } } /** * Does final encryption of the last data. * * @throws IOException if an I/O error occurs. */ @Override protected void encryptFinal() throws IOException { // The same as the normal encryption for Counter mode encrypt(); } /** * Overrides the {@link CryptoOutputStream#initCipher()}. Initializes the * cipher. */ @Override protected void initCipher() { // Do nothing for initCipher // Will reset the cipher considering the stream offset } /** * Resets the {@link #cipher}: calculate counter and {@link #padding}. * * @throws IOException if an I/O error occurs. */ private void resetCipher() throws IOException { final long counter = streamOffset / cipher.getBlockSize(); padding = (byte) (streamOffset % cipher.getBlockSize()); inBuffer.position(padding); // Set proper position for input data. CtrCryptoInputStream.calculateIV(initIV, counter, iv); try { cipher.init(Cipher.ENCRYPT_MODE, key, new IvParameterSpec(iv)); } catch (InvalidKeyException e) { throw new IOException(e); } catch (InvalidAlgorithmParameterException e) { throw new IOException(e); } cipherReset = false; } /** * Does the encryption if the ByteBuffer data. * * @param out the output ByteBuffer. * @throws IOException if an I/O error occurs. */ private void encryptBuffer(ByteBuffer out) throws IOException { int inputSize = inBuffer.remaining(); try { int n = cipher.update(inBuffer, out); if (n < inputSize) { /** * Typically code will not get here. CryptoCipher#update will * consume all input data and put result in outBuffer. * CryptoCipher#doFinal will reset the cipher context. */ cipher.doFinal(inBuffer, out); cipherReset = true; } } catch (ShortBufferException e) { throw new IOException(e); } catch (BadPaddingException e) { throw new IOException(e); } catch (IllegalBlockSizeException e) { throw new IOException(e); } } /** * Get the underlying stream offset * * @return the underlying stream offset */ protected long getStreamOffset() { return streamOffset; } /** * Set the underlying stream offset * * @param streamOffset the underlying stream offset */ protected void setStreamOffset(long streamOffset) { this.streamOffset = streamOffset; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy