Skip to content

Commit 5126bdf

Browse files
authored
Merge pull request #43 from canonical/pushkarnk-patch-1
Update README.md
2 parents 574a54f + 00f0dec commit 5126bdf

1 file changed

Lines changed: 41 additions & 4 deletions

File tree

README.md

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
1-
## Instructions
1+
### Introduction
2+
The OpenSSL FIPS Java project is a Java FIPS security provider module layered on top of the [OpenSSL library and its FIPS module](https://docs.openssl.org/3.0/man7/OSSL_PROVIDER-FIPS/). Complying with the [Java Cryptography Architecture](https://docs.oracle.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec.html), it implements the Java security SPI classes for security functions including [Deterministic Random Bit Generators](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/security/SecureRandomSpi.html), [Ciphers](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/javax/crypto/CipherSpi.html), [Key Agreements](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/javax/crypto/KeyAgreementSpi.html), [Key Derivations](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/javax/crypto/SecretKeyFactorySpi.html), [Key Encapsulation](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/javax/crypto/KEMSpi.html), [Message Digests](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/security/MessageDigest.html#:~:text=Message%20digests%20are%20secure%20one,called%20to%20reset%20the%20digest.), [Message Authentication Codes](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/javax/crypto/Mac.html) and [Signatures](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/security/Signature.html?source=%3Aso%3Atw%3Aor%3Aawr%3Aosec%3A%2C%3Aso%3Atw%3Aor%3Aawr%3Aosec%3A).
23

3-
1. Install and configure openssl in the FIPS mode as detailed [here](https://github.com/openssl/openssl/blob/master/README-FIPS.md)
4-
2. `git clone https://github.com/canonical/openssl-fips-jni-wrapper && cd openssl-fips-jni-wrapper`
5-
3. `make test`
4+
Under the covers, OpenSSL FIPS Java is quite tightly coupled with OpenSSL through the [Java Native Interface](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/security/Signature.html?source=%3Aso%3Atw%3Aor%3Aawr%3Aosec%3A%2C%3Aso%3Atw%3Aor%3Aawr%3Aosec%3A) and the [OpenSSL EVP API](https://docs.openssl.org/3.3/man7/evp/). Only FIPS-approved algorithms, offered by the OpenSSL FIPS module are registered with this provider. The binaries produced from this source should be generally considered FIPS-compliant if the underlying OpenSSL module is FIPS 140-2/140-3 certified.
5+
6+
### Structure of the source code
7+
| Directory | Functionality |
8+
|-----------|---------------|
9+
| src/main/java/com/canonical/openssl | Java classes, including SPI implementations |
10+
| src/main/native/c | C code that invokes OpenSSL EVP API, JNI code |
11+
| src/main/native/include | JNI headers and library header files |
12+
| src/test | C and Java tests |
13+
14+
### Instructions to build and test the provider
15+
#### Install and configure OpenSSL FIPS
16+
You should skip this step if you have OpenSSL and OpenSSL FIPS module installed. Here are the commands for Ubuntu/Debian installations:
17+
```
18+
git clone https://github.com/openssl/openssl && cd openssl
19+
git checkout openssl-3.0.2
20+
sudo apt update && sudo apt install build-essential -y
21+
./Configure enable-fips && make && sudo make install && sudo make install_fips
22+
```
23+
Create a FIPS module configuration file which will be loaded by the provider. Please keep this file under `/usr/local/ssl` only.
24+
```
25+
sudo mkdir -p /usr/local/ssl
26+
sudo openssl fipsinstall -out /usr/local/ssl/fipsmodule.cnf -module /usr/local/lib64/ossl-modules/fips.so
27+
```
28+
#### Install OpenJDK v21
29+
This project needs OpenJDK 21 or a later release of it. On Ubuntu/Debian systems, you may install the OpenJDK from the archive.
30+
```
31+
sudo apt update
32+
sudo apt install openjdk-21-jdk-headless
33+
```
34+
#### Clone the project, build and test
35+
This set of commands may be used on Ubuntu/Debian systems.
36+
```
37+
git clone https://github.com/canonical/openssl-fips-java
38+
cd openssl-fips-java
39+
export JAVA_HOME=/usr/lib/jvm/java-21-openjdk-amd64/
40+
mvn -B package --file pom.xml
41+
```
42+
Refer to this [GitHub Action](https://github.com/canonical/openssl-fips-java/blob/main/.github/workflows/maven.yml) for more details.

0 commit comments

Comments
 (0)