This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git

commit 384c64b6be0ab369385b690538ab3e5c920d44cf
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jan 14 16:33:05 2023 -0500

    Fix typos
---
 PROPOSAL.html                                                       | 4 ++--
 README.md                                                           | 2 +-
 pom.xml                                                             | 2 +-
 .../java/org/apache/commons/crypto/cipher/OpenSslEvpCtrlValues.java | 2 +-
 src/site/xdoc/proposal.xml                                          | 2 +-
 src/site/xdoc/userguide.xml                                         | 6 +++---
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/PROPOSAL.html b/PROPOSAL.html
index 6d374ff..5b709d6 100644
--- a/PROPOSAL.html
+++ b/PROPOSAL.html
@@ -61,7 +61,7 @@ mechanism to use JCE when openssl library unavailable.</p>
 
 <p>(Note: Please note that Commons Crypto doesn’t 
 
-implement the cryptographic algorithm such as AES directly. It wraps to 
Openssl or JCE 
+implement the cryptographic algorithm such as AES directly. It wraps to 
OpenSSL or JCE 
 
 which implement algorithms.)</p>
 
@@ -73,7 +73,7 @@ which implement algorithms.)</p>
 
 <p>This proposal is to create a package of cryptographic IO classes with the 
integration 
 
-of Openssl library. </p>
+of OpenSSL library. </p>
 
 <p>It focuses on AES-NI optimizations mainly and it can be extended to other 
algorithms
 
diff --git a/README.md b/README.md
index 863232d..bb7f136 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ Apache Commons Crypto is a cryptographic library optimized 
with AES-NI (Advanced
 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.
+AES directly. It wraps to OpenSSL or JCE which implement the algorithms.
 
 Features
 --------
diff --git a/pom.xml b/pom.xml
index a8b1958..221e7a9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,7 +31,7 @@ Apache Commons Crypto is a cryptographic library optimized 
with AES-NI (Advanced
 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.
+AES directly. It wraps to OpenSSL or JCE which implement the algorithms.
 
 Features
 --------
diff --git 
a/src/main/java/org/apache/commons/crypto/cipher/OpenSslEvpCtrlValues.java 
b/src/main/java/org/apache/commons/crypto/cipher/OpenSslEvpCtrlValues.java
index 85a8d23..44af6b0 100644
--- a/src/main/java/org/apache/commons/crypto/cipher/OpenSslEvpCtrlValues.java
+++ b/src/main/java/org/apache/commons/crypto/cipher/OpenSslEvpCtrlValues.java
@@ -18,7 +18,7 @@
 package org.apache.commons.crypto.cipher;
 
 /**
- * This enum is defined for OpensslNative.ctrl() to allow various cipher
+ * This enum is defined for OpenSslNative.ctrl() to allow various cipher
  * specific parameters to be determined and set.
  * see the macro definitions in openssl/evp.h
  */
diff --git a/src/site/xdoc/proposal.xml b/src/site/xdoc/proposal.xml
index 2a8f69f..a406eff 100644
--- a/src/site/xdoc/proposal.xml
+++ b/src/site/xdoc/proposal.xml
@@ -40,7 +40,7 @@ limitations under the License.
 <subsection name="(1) Scope of the Package">
   <p>
       This proposal is to create a package of cryptographic IO classes with 
the integration
-      of Openssl library.
+      of OpenSSL library.
       It focuses on AES-NI optimizations mainly and it can be extended to 
other algorithms
       based on demand from the users later.
   </p>
diff --git a/src/site/xdoc/userguide.xml b/src/site/xdoc/userguide.xml
index b99c1bd..c3ba418 100644
--- a/src/site/xdoc/userguide.xml
+++ b/src/site/xdoc/userguide.xml
@@ -24,7 +24,7 @@
       </p>
       <p>
         Please note that Apache Commons Crypto doesn't implement the 
cryptographic
-        algorithm such as AES directly. It wraps Openssl or JCE which 
implement the algorithms.
+        algorithm such as AES directly. It wraps OpenSSL or JCE which 
implement the algorithms.
         OpenSSL 1.1.1 is required for building and running.
       </p>
       <subsection name="Interfaces Overview">
@@ -95,8 +95,8 @@
         <h4>Usage of Cipher API</h4>
         <p>
           Cipher provides an cryptographic interface for encryption and 
decryption.
-          We provide two kind of implementations: JCE Cipher and Openssl 
Cipher. The
-          JCE implementation uses JCE provider and the Openssl implementation 
uses
+          We provide two kind of implementations: JCE Cipher and OpenSSL 
Cipher. The
+          JCE implementation uses JCE provider and the OpenSSL implementation 
uses
           Intel&reg; AES New Instructions (Intel&reg; AES NI).
         </p>
         <h5>Usage of Byte Array Encryption/Decryption</h5>

Reply via email to