You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2016/06/11 11:30:45 UTC

commons-crypto git commit: Line length

Repository: commons-crypto
Updated Branches:
  refs/heads/master 28fc18d23 -> 715a25d9e


Line length

Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/715a25d9
Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/715a25d9
Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/715a25d9

Branch: refs/heads/master
Commit: 715a25d9e15ea484e44dd14988bfdd221e23dd4e
Parents: 28fc18d
Author: Sebb <se...@apache.org>
Authored: Sat Jun 11 12:30:42 2016 +0100
Committer: Sebb <se...@apache.org>
Committed: Sat Jun 11 12:30:42 2016 +0100

----------------------------------------------------------------------
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/715a25d9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 06be2ea..337eccd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,12 +33,14 @@ code and effort. Please note that Crypto doesn't implement the cryptographic alg
 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); Apache Commons Crypto loads the library according to your machine environment (It looks system properties, `os.name` and `os.arch`).
+5. Portable across various operating systems (currently only Linux);
+   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.