38 lines
1.6 KiB
Markdown
38 lines
1.6 KiB
Markdown
|
FIPS 140-2 Integration
|
||
|
======================
|
||
|
|
||
|
Build with FIPS
|
||
|
---------------
|
||
|
|
||
|
With OpenJDK 11 on the classpath, run this from the project root directory:
|
||
|
|
||
|
```
|
||
|
mvn clean install -DskipTests=true -Dfips140-2 -Pquarkus
|
||
|
```
|
||
|
The property `fips140-2` is used to trigger maven profile to build keycloak+quarkus distribution with `bouncycastle-fips` dependencies instead of plain `bouncycastle`
|
||
|
and also with `keycloak-fips140-2` module containing some security code dependent on bouncycastle-fips APIs.
|
||
|
|
||
|
Then unzip and check only bouncycastle-fips libraries are inside "lib" directory:
|
||
|
```
|
||
|
tar xf $KEYCLOAK_SOURCES/quarkus/dist/target/keycloak-999-SNAPSHOT.tar.gz
|
||
|
ls keycloak-999-SNAPSHOT/lib/lib/main/org.bouncycastle.bc*
|
||
|
```
|
||
|
Output should be something like:
|
||
|
```
|
||
|
keycloak-999-SNAPSHOT/lib/lib/main/org.bouncycastle.bc-fips-1.0.2.jar keycloak-999-SNAPSHOT/lib/lib/main/org.bouncycastle.bctls-fips-1.0.11.jar
|
||
|
keycloak-999-SNAPSHOT/lib/lib/main/org.bouncycastle.bcpkix-fips-1.0.3.jar
|
||
|
```
|
||
|
|
||
|
Similarly the JAR keycloak-fips-integration should be available:
|
||
|
```
|
||
|
ls keycloak-999-SNAPSHOT/lib/lib/main/org.keycloak.keycloak-fips-integration-999-SNAPSHOT.jar
|
||
|
```
|
||
|
|
||
|
Now run the server on the FIPS enabled machine with FIPS-enabled OpenJDK (Tested on RHEL 8.6):
|
||
|
```
|
||
|
cd keycloak-999-SNAPSHOT/bin
|
||
|
./kc.sh start-dev
|
||
|
```
|
||
|
|
||
|
NOTE: Right now, server should start, and I am able to create admin user on `http://localhost:8080`, but I am not able to finish
|
||
|
login to the admin console. However the Keycloak uses bouncycastle-fips libraries and the `CryptoIntegration` uses `FIPS1402Provider`. More fixes are required to have Keycloak server working...
|