org.apache.commons.crypto.cipher.OpenSslNative 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.cipher;
import java.nio.ByteBuffer;
/**
* JNI interface of {@link OpenSsl} implementation. The native method in this
* class is defined in OpenSslNative.h (generated by javah).
*/
class OpenSslNative {
/**
* The private constructor of {@link OpenSslNative}.
*/
private OpenSslNative() {
}
/**
* Declares a native method to initialize JNI field and method IDs.
*/
public native static void initIDs();
/**
* Declares a native method to initialize the cipher context.
*
* @param algorithm The algorithm name of cipher
* @param padding The padding name of cipher
* @return the context address of cipher
*/
public native static long initContext(int algorithm, int padding);
/**
* Declares a native method to initialize the cipher context.
*
* @param context The cipher context address
* @param mode ENCRYPT_MODE or DECRYPT_MODE
* @param alg Algorithm Mode of OpenSsl
* @param padding the padding mode of OpenSsl cipher
* @param key crypto key
* @param iv crypto iv
* @return the context address of cipher
*/
public native static long init(long context, int mode, int alg,
int padding, byte[] key, byte[] iv);
/**
* Continues a multiple-part encryption/decryption operation. The data is
* encrypted or decrypted, depending on how this cipher was initialized.
*
* @param context The cipher context address
* @param input The input byte buffer
* @param inputOffset The offset in input where the input starts
* @param inputLength The input length
* @param output The byte buffer for the result
* @param outputOffset The offset in output where the result is stored
* @param maxOutputLength The maximum length for output
* @return The number of bytes stored in output
*/
public native static int update(long context, ByteBuffer input,
int inputOffset, int inputLength, ByteBuffer output,
int outputOffset, int maxOutputLength);
/**
* Continues a multiple-part encryption/decryption operation. The data is
* encrypted or decrypted, depending on how this cipher was initialized.
*
* @param context The cipher context address
* @param input The input byte array
* @param inputOffset The offset in input where the input starts
* @param inputLength The input length
* @param output The byte array for the result
* @param outputOffset The offset in output where the result is stored
* @param maxOutputLength The maximum length for output
* @return The number of bytes stored in output
*/
public native static int updateByteArray(long context, byte[] input,
int inputOffset, int inputLength, byte[] output, int outputOffset,
int maxOutputLength);
/**
* Finishes a multiple-part operation. The data is encrypted or decrypted,
* depending on how this cipher was initialized.
*
* @param context The cipher context address
* @param output The byte buffer for the result
* @param offset The offset in output where the result is stored
* @param maxOutputLength The maximum length for output
* @return The number of bytes stored in output
*/
public native static int doFinal(long context, ByteBuffer output,
int offset, int maxOutputLength);
/**
* Finishes a multiple-part operation. The data is encrypted or decrypted,
* depending on how this cipher was initialized.
*
* @param context The cipher context address
* @param output The byte array for the result
* @param offset The offset in output where the result is stored
* @param maxOutputLength The maximum length for output
* @return The number of bytes stored in output
*/
public native static int doFinalByteArray(long context, byte[] output,
int offset, int maxOutputLength);
/**
* Cleans the context at native.
*
* @param context The cipher context address
*/
public native static void clean(long context);
}