You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/fips/README.md
+22-5Lines changed: 22 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,14 @@
1
1
# FIPS Compliance
2
2
3
-
We tested FIPS compliance for the client using OpenSSL 3.0. To use the client in FIPS-compliant mode, use OpenSSL 3.0. Older versions of OpenSSL have not been verified (although they may work).
3
+
4
+
This client supports both FIPS 140-2 and FIPS 140-3 compliance. Use the version mapping below to ensure compliance:
5
+
6
+
| Compliance Standard | OpenSSL Version | FIPS Provider Version |
For new deployments, we recommend **FIPS 140-3** as FIPS 140-2 certificates issued after September 21, 2026 will no longer be accepted for federal procurement.
4
12
5
13
## Communication between client and Kafka cluster
6
14
@@ -26,12 +34,15 @@ You configure OpenSSL to use the FIPS provider using the FIPS configuration in O
26
34
27
35
#### Steps to build FIPS provider module
28
36
29
-
You can find steps to generate the FIPS provider module in the [README-FIPS doc](https://github.com/openssl/openssl/blob/openssl-3.0.8/README-FIPS.md)
37
+
Follow the version-specific READMEs below to build the FIPS provider:
38
+
39
+
* For FIPS 140-2 (v3.0.8): [Build Guide](https://github.com/openssl/openssl/blob/openssl-3.0.8/README-FIPS.md)
40
+
* For FIPS 140-3 (v3.1.2): [Build Guide](https://github.com/openssl/openssl/blob/openssl-3.1.2/README-FIPS.md)
30
41
31
42
In short, you need to perform the following steps:
32
43
33
44
1) Clone OpenSSL from [OpenSSL Github Repo](https://github.com/openssl/openssl)
34
-
2) Checkout the correct version. (v3.0.8 is the current FIPS compliant version for OpenSSL 3.0 at the time of writing this doc.)
45
+
2) Checkout the correct version. (v3.1.2 for FIPS 140-3 and v3.0.8 for FIPS 140-2)
35
46
3) Run `./Configure enable-fips`
36
47
4) Run `make install_fips`
37
48
@@ -82,9 +93,15 @@ To make client (consumer, producer or admin client) FIPS compliant, you must ena
82
93
83
94
## Communication between client and Schema Registry
84
95
85
-
The communication between client and Schema Registry is also FIPS compliant if the underlying python is using FIPS compliant OpenSSL. This depends on the system level OpenSSL if the python is installed in default way. To know more on how to use FIPS provider with OpenSSL, check [How to use FIPS Module](https://www.openssl.org/docs/man3.0/man7/fips_module.html) and [Generating FIPS module and config file](https://github.com/openssl/openssl/blob/openssl-3.0.8/README-FIPS.md) links. The steps are briefly described above as well.
96
+
The communication between client and Schema Registry is also FIPS compliant if the underlying python is using FIPS compliant OpenSSL. This depends on the system level OpenSSL if the python is installed in default way. To know more on how to use FIPS provider with OpenSSL, check
97
+
*[How to use FIPS Module](https://www.openssl.org/docs/man3.0/man7/fips_module.html)
98
+
*[Generating FIPS module and config file for FIPS 140-2](https://github.com/openssl/openssl/blob/openssl-3.0.8/README-FIPS.md)
99
+
*[Generating FIPS module and config file for FIPS 140-3](https://github.com/openssl/openssl/blob/openssl-3.1.2/README-FIPS.md)
100
+
86
101
87
102
## References
88
-
*[Generating FIPS module and config file](https://github.com/openssl/openssl/blob/openssl-3.0.8/README-FIPS.md)
103
+
*[Generating FIPS module and config file for FIPS 140-2](https://github.com/openssl/openssl/blob/openssl-3.0.8/README-FIPS.md)
104
+
*[Generating FIPS module and config file for FIPS 140-3](https://github.com/openssl/openssl/blob/openssl-3.1.2/README-FIPS.md)
105
+
*[OpenSSL 3.1.2: FIPS 140-3 Validated](https://openssl-library.org/post/2025-03-11-fips-140-3/)
89
106
*[How to use FIPS Module](https://www.openssl.org/docs/man3.0/man7/fips_module.html)
0 commit comments