MCPcopy Index your code
hub / github.com/apache/commons-crypto

github.com/apache/commons-crypto @CRYPTO-1.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release CRYPTO-1.0.0 ↗ · + Follow
551 symbols 1,402 edges 88 files 336 documented · 61%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Apache Commons Crypto

Build Status Maven Central License

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:

Documentation

More information can be found on the homepage. The JavaDoc can be browsed. Questions related to the usage of Apache Commons Crypto should be posted to the user mailing list.

Where can I get the latest release?

You can download source and binaries from our download page.

Alternatively you can pull it from the central Maven repositories:

<dependency>
  <groupId>org.apache.commons</groupId>
  <artifactId>commons-crypto</artifactId>
  <version>1.0.0</version>
</dependency>

Contributing

We accept PRs via github. The developer mailing list is the main channel of communication for contributors. There are some guidelines which will make applying PRs easier for us: + No tabs! Please use spaces for indentation. + Respect the code style. + Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change. + Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running mvn clean test.

If you plan to contribute on a regular basis, please consider filing a contributor license agreement. You can learn more about contributing via GitHub in our contribution guidelines.

License

Code is under the Apache Licence v2.

Donations

You like Apache Commons Crypto? Then donate back to the ASF to support the development.

Additional Resources

Extension points exported contracts — how you extend this code

CryptoRandom (Interface)
The interface for CryptoRandom. Note that implementations must provide a constructor that takes a Properties instanc [13 …
src/main/java/org/apache/commons/crypto/random/CryptoRandom.java
CryptoCipher (Interface)
The interface of cryptographic cipher for encryption and decryption. Note that implementations must provide a const [6 …
src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java
Input (Interface)
The Input interface abstract the input source of CryptoInputStream so that different implementation of inpu [6 implementers]
src/main/java/org/apache/commons/crypto/stream/input/Input.java
Output (Interface)
The Output interface abstract the output target of CryptoOutputStream so that different implementation of o [5 implementers]
src/main/java/org/apache/commons/crypto/stream/output/Output.java

Core symbols most depended-on inside this repo

close
called by 33
src/main/java/org/apache/commons/crypto/stream/input/Input.java
read
called by 24
src/main/java/org/apache/commons/crypto/stream/input/Input.java
init
called by 22
src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java
doFinal
called by 20
src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java
getCryptoRandom
called by 18
src/main/java/org/apache/commons/crypto/random/CryptoRandomFactory.java
nextBytes
called by 17
src/main/java/org/apache/commons/crypto/random/CryptoRandom.java
get
called by 17
src/main/java/org/apache/commons/crypto/cipher/OpenSsl.java
update
called by 16
src/main/java/org/apache/commons/crypto/cipher/CryptoCipher.java

Shape

Method 435
Class 76
Function 30
Enum 6
Interface 4

Languages

Java95%
C5%
C++1%

Modules by API surface

src/main/java/org/apache/commons/crypto/jna/OpenSslNativeJna.java30 symbols
src/test/java/org/apache/commons/crypto/stream/PositionedCryptoInputStreamTest.java26 symbols
src/main/java/org/apache/commons/crypto/stream/CryptoInputStream.java24 symbols
src/main/java/org/apache/commons/crypto/stream/CtrCryptoInputStream.java20 symbols
src/test/java/org/apache/commons/crypto/stream/AbstractCipherStreamTest.java19 symbols
src/main/java/org/apache/commons/crypto/stream/PositionedCryptoInputStream.java19 symbols
src/main/java/org/apache/commons/crypto/jna/OpenSslJnaCipher.java17 symbols
src/main/java/org/apache/commons/crypto/cipher/OpenSsl.java17 symbols
src/main/java/org/apache/commons/crypto/stream/CryptoOutputStream.java15 symbols
src/test/java/org/apache/commons/crypto/cipher/AbstractCipherTest.java13 symbols
src/main/native/org/apache/commons/crypto/cipher/OpenSslNative.c12 symbols
src/test/java/org/apache/commons/crypto/random/CryptoRandomFactoryTest.java11 symbols

For agents

$ claude mcp add commons-crypto \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact