Re: [EXTERNAL] Re: Not able to perform FIPS self-tests

2022-02-10 Thread pauli
Shane, any thoughts? Pauli On 11/2/22 5:23 pm, Gahlot, Ashish Kumar wrote: Hi, Thanks Pauli, the API worked but also I have a callback defined as below which is failing at corrupt phase: int SelfTestCb(const OSSL_PARAM params[], void *arg) {     int ret = 0;     const OSSL_PARAM *p = N

RE: [EXTERNAL] Re: Not able to perform FIPS self-tests

2022-02-10 Thread Gahlot, Ashish Kumar
Hi, Thanks Pauli, the API worked but also I have a callback defined as below which is failing at corrupt phase: int SelfTestCb(const OSSL_PARAM params[], void *arg) { int ret = 0; const OSSL_PARAM *p = NULL; const char *phase = NULL; const char *type = NULL; const char *desc

答复: How run the specific test case //答复: How to run a simple test case

2022-02-10 Thread Chenxinping via openssl-users
Thanks for your information. Issue have raised: https://github.com/openssl/openssl/issues/17681 -邮件原件- 发件人: Dr. Matthias St. Pierre [mailto:matthias.st.pie...@ncp-e.com] 发送时间: 2022年2月10日 0:03 收件人: Chenxinping ; openssl-users@openssl.org 主题: RE: How run the specific test case //答复: How to

Re: [OpenSSL 1.1.1l] Hi Team, my SSL/TLS server crashed with the attached call stack. Your advice will be highly appreciated.

2022-02-10 Thread Viktor Dukhovni
On Thu, Feb 10, 2022 at 11:48:06PM +, Ma Zhenhua wrote: > Hi Team, > > My SSL/TLS server crashed with the following call stack. > I'm using OpenSSL 1.1.1l. I compared 1.1.1l with 1.1.1 master branch and > didn't find related fixes in crypto/asn1. > Your advice will be highly appreciated. You

[OpenSSL 1.1.1l] Hi Team, my SSL/TLS server crashed with the attached call stack. Your advice will be highly appreciated.

2022-02-10 Thread Ma Zhenhua
Hi Team, My SSL/TLS server crashed with the following call stack. I'm using OpenSSL 1.1.1l. I compared 1.1.1l with 1.1.1 master branch and didn't find related fixes in crypto/asn1. Your advice will be highly appreciated. (gdb) 0 0x7f4cf7844ce6 in ASN1_OBJECT_free () from /lib/libcrypto.so

Re: Handshake Failure : SSL_accept:Error in before SSL initialization

2022-02-10 Thread Kamala Ayyar
Hello Matt, I used the same test server application to listen on the port but used the command line version for the client to connect and it connects without issue and handshake done and server certificates displayed on screen. openssl s_client -connect servername:20333 I am not sure what is the i

Re: SSL_set_info_callback with argument

2022-02-10 Thread Matt Caswell
On 09/02/2022 21:49, Tal Dery wrote: Hi, SSL_set_info_callbacknot accepting any argument, is there an elegant solution to get an argumentin the callback? You can set arbitrary application data on the SSL object using `SSL_set_app_data` and retrieve it again using `SSL_get_app_data`. The

Re: [EXTERNAL] Re: does Openssl 3.0 has backward compatiblity.

2022-02-10 Thread Tomas Mraz
The returned value should be just passed to OSSL_PROVIDER_unload() when you're no longer using the provider. Tomas On Thu, 2022-02-10 at 11:03 +, Srinivas, Saketh (c) wrote: > do you have an example how to set it. It seems the function returns > OSSL_PROVIDER. what/where do i set this return