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] Packet capture SSL traffic

2018-07-05 Thread Viktor Dukhovni
On Thu, Jul 05, 2018 at 11:50:12PM +0530, Kaushal Shriyan wrote: > Is there a way to capture SSL traffic using openssl and tcpdump or any > other utility on Linux? I look forward to hearing from you. See the bottom of: https://mta.openssl.org/pipermail/openssl-users/2017-April/005624.html

Re: [openssl-users] Packet capture SSL traffic

2018-07-05 Thread Short, Todd via openssl-users
wireshark.org; it will decode it for you as well. EKR used to have a utility on this website, but it’s likely out of date. Wireshark has been more frequently updated. -- -Todd Short // tsh...@akamai.com // "One if by land, two if by sea, three if by

[openssl-users] Packet capture SSL traffic

2018-07-05 Thread Kaushal Shriyan
Hi, Is there a way to capture SSL traffic using openssl and tcpdump or any other utility on Linux? I look forward to hearing from you. Best Regards, Kaushal -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

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