Re: Using EVP api in fips mode (openssl3.0)

2020-02-25 Thread Matt Caswell
On 25/02/2020 11:12, Manish Patidar wrote: > Thanks for reply. It really help to use fips lib. > > I have another doubts regarding the hmac stored in fipsinstall.conf. If > some one modify the fips library after installation and modify the hmac > in fipsinstall.conf accordingly, is openssl3.0

Re: Using EVP api in fips mode (openssl3.0)

2020-02-25 Thread Manish Patidar
Thanks for reply. It really help to use fips lib. I have another doubts regarding the hmac stored in fipsinstall.conf. If some one modify the fips library after installation and modify the hmac in fipsinstall.conf accordingly, is openssl3.0 is able to identify this and fail the fips library

Re: Using EVP api in fips mode (openssl3.0)

2020-01-16 Thread Matt Caswell
On 14/01/2020 04:51, Manish Patidar wrote: > Hi > > Can any guide me how to use fips api in openssl? > > I try to use like below but it always returns null.  > > ctx = EVP_CIPHER_CTX_new() ; > ciph = EVP_CIPHER_fetch(NULL, "aes-128-cbc", "fips=yes") ; > > I am doubting fips provider is not

Using EVP api in fips mode (openssl3.0)

2020-01-13 Thread Manish Patidar
Hi Can any guide me how to use fips api in openssl? I try to use like below but it always returns null. ctx = EVP_CIPHER_CTX_new() ; ciph = EVP_CIPHER_fetch(NULL, "aes-128-cbc", "fips=yes") ; I am doubting fips provider is not loaded. Regards Manish