blob: 5abdaf6e2aafeb71873d862de902cdf97412b4c6 (
plain)
1
2
3
4
5
6
|
# in the FIPS mode, OpenSSL disables DES and other weak algorithms
source include/have_ssl_crypto_functs.inc;
if (`select des_encrypt("a", "b") IS NULL`) {
skip DES is disabled (fips mode?);
}
|