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

org.apache.commons.crypto.jna.OpenSslJnaCryptoRandom 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.jna;

import java.nio.ByteBuffer;
import java.security.GeneralSecurityException;
import java.security.NoSuchAlgorithmException;
import java.util.Properties;
import java.util.Random;

import org.apache.commons.crypto.random.CryptoRandom;
import org.apache.commons.crypto.utils.Utils;

import com.sun.jna.NativeLong;
import com.sun.jna.ptr.PointerByReference;

/**
 * 

* OpenSSL secure random using JNA. This implementation is thread-safe. *

* *

* If using an Intel chipset with RDRAND, the high-performance hardware random * number generator will be used and it's much faster than SecureRandom. If * RDRAND is unavailable, default OpenSSL secure random generator will be used. * It's still faster and can generate strong random bytes. *

* * @see * https://wiki.openssl.org/index.php/Random_Numbers * @see * http://en.wikipedia.org/wiki/RdRand */ class OpenSslJnaCryptoRandom extends Random implements CryptoRandom { private static final long serialVersionUID = -7128193502768749585L; private final boolean rdrandEnabled; private PointerByReference rdrandEngine; /** * Constructs a {@link OpenSslJnaCryptoRandom}. * * @param props the configuration properties (not used) * @throws GeneralSecurityException if could not enable JNA access */ public OpenSslJnaCryptoRandom(Properties props) //NOPMD throws GeneralSecurityException { if (!OpenSslJna.isEnabled()) { throw new GeneralSecurityException("Could not enable JNA access", OpenSslJna.initialisationError()); } boolean rdrandLoaded = false; try { OpenSslNativeJna.ENGINE_load_rdrand(); rdrandEngine = OpenSslNativeJna.ENGINE_by_id("rdrand"); int ENGINE_METHOD_RAND = 0x0008; if(rdrandEngine != null) { int rc = OpenSslNativeJna.ENGINE_init(rdrandEngine); if(rc != 0) { int rc2 = OpenSslNativeJna.ENGINE_set_default(rdrandEngine, ENGINE_METHOD_RAND); if(rc2 != 0) { rdrandLoaded = true; } } } } catch (Exception e) { throw new NoSuchAlgorithmException(); } rdrandEnabled = rdrandLoaded; if(!rdrandLoaded) { closeRdrandEngine(); } } /** * Generates a user-specified number of random bytes. It's thread-safe. * * @param bytes the array to be filled in with random bytes. */ @Override public void nextBytes(byte[] bytes) { synchronized (OpenSslJnaCryptoRandom.class) { //this method is synchronized for now //to support multithreading https://wiki.openssl.org/index.php/Manual:Threads(3) needs to be done if(rdrandEnabled && OpenSslNativeJna.RAND_get_rand_method().equals(OpenSslNativeJna.RAND_SSLeay())) { close(); throw new RuntimeException("rdrand should be used but default is detected"); } ByteBuffer buf = ByteBuffer.allocateDirect(bytes.length); int retVal = OpenSslNativeJna.RAND_bytes(buf, bytes.length); throwOnError(retVal); buf.rewind(); buf.get(bytes,0, bytes.length); } } /** * Overrides {@link OpenSslJnaCryptoRandom}. For {@link OpenSslJnaCryptoRandom}, * we don't need to set seed. * * @param seed the initial seed. */ @Override public void setSeed(long seed) { // Self-seeding. } /** * Overrides Random#next(). Generates an integer containing the * user-specified number of random bits(right justified, with leading * zeros). * * @param numBits number of random bits to be generated, where 0 * {@literal <=} numBits {@literal <=} 32. * @return int an int containing the user-specified number of * random bits (right justified, with leading zeros). */ @Override final protected int next(int numBits) { Utils.checkArgument(numBits >= 0 && numBits <= 32); int numBytes = (numBits + 7) / 8; byte b[] = new byte[numBytes]; int next = 0; nextBytes(b); for (int i = 0; i < numBytes; i++) { next = (next << 8) + (b[i] & 0xFF); } return next >>> (numBytes * 8 - numBits); } /** * Overrides {@link java.lang.AutoCloseable#close()}. Closes OpenSSL context * if native enabled. */ @Override public void close() { closeRdrandEngine(); OpenSslNativeJna.ENGINE_cleanup(); //cleanup locks //OpenSslNativeJna.CRYPTO_set_locking_callback(null); //LOCK.unlock(); } /** * Closes the rdrand engine. */ private void closeRdrandEngine() { if(rdrandEngine != null) { OpenSslNativeJna.ENGINE_finish(rdrandEngine); OpenSslNativeJna.ENGINE_free(rdrandEngine); } } /** * Checks if rdrand engine is used to retrieve random bytes * * @return true if rdrand is used, false if default engine is used */ public boolean isRdrandEnabled() { return rdrandEnabled; } /** * @param retVal the result value of error. */ private void throwOnError(int retVal) { if (retVal != 1) { NativeLong err = OpenSslNativeJna.ERR_peek_error(); String errdesc = OpenSslNativeJna.ERR_error_string(err, null); close(); throw new RuntimeException("return code " + retVal + " from OpenSSL. Err code is " + err + ": " + errdesc); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy