Displaying 2 results from an estimated 2 matches for "0607b0a3".
2016 Jul 20
1
Tinc and FIPS mode fails to connect.
...g
set in tinc.conf
# Default Configuration file for.
BindToAddress=* 655
Cipher=aes-256-cbc
Digest=sha1
Name=myserver2_com
AutoConnect=yes
Connect=myserver_com
And when connecting to my test server, it can't connect with an error
message saying "Error while setting key: error:0607B0A3:digital envelope
routines:EVP_CipherInit_ex:disabled for fips". It just keeps on failing.
Example output:
2016-07-20 16:06:37 tinc.vpn[2920]: Trying to connect to myserver_com
(204.200.1.44 port 655)
2016-07-20 16:06:37 tinc.vpn[2920]: Connected to myserver_com (204.200.1.44
port 655)
2...
2020 Mar 06
0
[FIPS] FIPS_selftest failing in Centos 7
...de is
#include "stdio.h"
int main()
{
int ret=0;
ret=FIPS_mode();
printf("\nFIPS_mode = %u \n",ret);
ret=FIPS_selftest();
printf("\nFIPS_selftest=%u \n",ret);
ERR_print_errors_fp(stderr);
}
Output is
"
FIPS_mode = 1
FIPS_selftest=0
140091346814640:error:0607B0A3:lib(6):func(123):reason(163):evp_enc.c:313:
140091346814640:error:2D06F065:lib(45):func(111):reason(101):fips_des_selftest.c:134:
"
Looks like flag EVP_CIPH_FLAG_FIPS is not set for the cipher returned
by EVP_des_ede_ecb() .
I am using openssl-1.0.2k-19.el7.x86_64 on "CentOS L...