https://github.com/ericcurtin/fips_openssl_check
A simple C program to check if installed libcrypto library has FIPS enabled
https://github.com/ericcurtin/fips_openssl_check
crypto fips fips140-2 libcrypto openssl
Last synced: about 1 year ago
JSON representation
A simple C program to check if installed libcrypto library has FIPS enabled
- Host: GitHub
- URL: https://github.com/ericcurtin/fips_openssl_check
- Owner: ericcurtin
- License: gpl-2.0
- Created: 2019-01-08T14:17:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-08T14:21:35.000Z (over 7 years ago)
- Last Synced: 2025-03-20T04:46:20.114Z (about 1 year ago)
- Topics: crypto, fips, fips140-2, libcrypto, openssl
- Language: C
- Size: 6.84 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fips_openssl_check
A simple C program to check if installed libcrypto library has FIPS enabled
Compile like so:
`gcc fips_openssl_check.c -lcrypto`
or
`gcc fips_openssl_check.c -l:libcrypto.so.1.0.2`
if you have multiple libcrypto versions installed and want to check a specific
one. Other compilers such as clang are fine too.
Execute to perform the check:
`./a.out`