An open API service indexing awesome lists of open source software.

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

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`