Re: [openssl-users] Openssl 1.0.2o issue with FIPS mode set.

2018-07-06 Thread Ajay Nalawade
Issue is not seen for Openssl version 1.0.2g. Issue is present for all versions post 1.0.2g. Thanks, Ajay On Fri, Jul 6, 2018 at 11:33 AM Ajay Nalawade wrote: > Here are some more observations. > 1. It did not take much load to cause this error(Creating even 2 > connections in parallel gives th

Re: [openssl-users] Openssl 1.0.2o issue with FIPS mode set.

2018-07-05 Thread Ajay Nalawade
Here are some more observations. 1. It did not take much load to cause this error(Creating even 2 connections in parallel gives this issue). 2. While a client is sending data, another client connecting does not error. The error seems to be only when two clients try to handshake together. If we seri

Re: [openssl-users] Openssl 1.0.2o issue with FIPS mode set.

2018-07-05 Thread Ajay Nalawade
package main import ( "log" "net" "net/http" "fmt" "os" "bufio" "io" "strconv" "github.com/spacemonkeygo/openssl" ) func init_fips() { err := openssl.FIPSModeSet(true) if err != nil { panic(fmt.Errorf("%v Error:%v\n", "openssl fa

Re: [openssl-users] Openssl 1.0.2o issue with FIPS mode set.

2018-07-05 Thread Ajay Nalawade
I am able to reproduce this issue with attached go lang based server. Am I doing anything wrong here. Is there any known issue, or any workaround available for this issue. Thanks, Ajay On Thu, Jun 7, 2018 at 12:33 PM Ajay Nalawade wrote: > Hello, > > I have golang based openssl server with FIPS

[openssl-users] Openssl 1.0.2o issue with FIPS mode set.

2018-06-07 Thread Ajay Nalawade
Hello, I have golang based openssl server with FIPS mode set. I am using Openssl library build with fips module 2.0. With Openssl 1.0.1u version, everything was running fine. Recently I upgraded to version 1.0.2o. With this version, under high traffic condition (more than 4k requests per minute),