org.apache.commons.crypto.random.OsCryptoRandom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-crypto Show documentation
Show all versions of commons-crypto Show documentation
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
/**
* 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.random;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
import java.util.Random;
import org.apache.commons.crypto.utils.IoUtils;
/**
* A Random implementation that uses random bytes sourced from the operating
* system.
*/
class OsCryptoRandom extends Random implements CryptoRandom {
private static final long serialVersionUID = 6391500337172057900L;
private static final int RESERVOIR_LENGTH = 8192;
private transient FileInputStream stream;
private final byte[] reservoir = new byte[RESERVOIR_LENGTH];
private int pos = reservoir.length;
/**
* Fills the reservoir.
*
* @param min the length.
*/
private void fillReservoir(final int min) {
if (pos >= reservoir.length - min) {
try {
IoUtils.readFully(stream, reservoir, 0, reservoir.length);
} catch (final IOException e) {
throw new IllegalStateException("failed to fill reservoir", e);
}
pos = 0;
}
}
/**
* Constructs a {@link OsCryptoRandom}.
*
* @param props the configuration properties.
* Uses {@link CryptoRandomFactory#DEVICE_FILE_PATH_KEY} to determine the
* path to the random device, default is
* {@link CryptoRandomFactory#DEVICE_FILE_PATH_DEFAULT}
*/
// N.B. this class is not public/protected so does not appear in the main Javadoc
// Please ensure that property use is documented in the enum CryptoRandomFactory.RandomProvider
public OsCryptoRandom(final Properties props) {
final File randomDevFile = new File(
props.getProperty(CryptoRandomFactory.DEVICE_FILE_PATH_KEY,
CryptoRandomFactory.DEVICE_FILE_PATH_DEFAULT));
try {
close();
this.stream = new FileInputStream(randomDevFile);
} catch (final IOException e) {
throw new IllegalArgumentException(e);
}
try {
fillReservoir(0);
} catch (final IllegalStateException e) {
close();
throw e;
}
}
/**
* Overrides {@link CryptoRandom#nextBytes(byte[])}. Generates random bytes
* and places them into a user-supplied byte array. The number of random
* bytes produced is equal to the length of the byte array.
*
* @param bytes the array to be filled in with random bytes.
*/
@Override
synchronized public void nextBytes(final byte[] bytes) {
int off = 0;
int n = 0;
while (off < bytes.length) {
fillReservoir(0);
n = Math.min(bytes.length - off, reservoir.length - pos);
System.arraycopy(reservoir, pos, bytes, off, n);
off += n;
pos += n;
}
}
/**
* Overrides Random#next(). Generates the next pseudorandom number.
* Subclasses should override this, as this is used by all other methods.
*
* @param nbits random bits.
* @return the next pseudorandom value from this random number generator's
* sequence.
*/
@Override
synchronized protected int next(final int nbits) {
fillReservoir(4);
int n = 0;
for (int i = 0; i < 4; i++) {
n = (n << 8) | (reservoir[pos++] & 0xff);
}
return n & (0xffffffff >> (32 - nbits));
}
/**
* Overrides {@link java.lang.AutoCloseable#close()}. Closes the OS stream.
*/
@Override
synchronized public void close() {
if (stream != null) {
IoUtils.closeQuietly(stream);
stream = null;
}
}
}