[openssl-users] Fwd: DTLS over UDP

2018-02-13 Thread Nivedita
Hi Michael, Please ignore the previous mail. By mistankely it got sent. I have provided my comments below. Thanks in advance. Regards, Nivedita On Wed, Feb 14, 2018 at 10:22 AM, Nivedita wrote: > Hi Michael, > > Thanks for the reply. > > I have mentioned the answers below. > > > On Wed

[openssl-users] OSSL_STORE_ctrl

2018-02-13 Thread Norm Green
In 1.1.1 pre-relase 1, we have this new function: int OSSL_STORE_ctrl(OSSL_STORE_CTX *ctx, int cmd, ... /* args */); Would it be possible to add a version that takes va_args like this? int OSSL_STORE_vctrl(OSSL_STORE_CTX *ctx, int cmd, va_list args); OpenSSL already have this precedent in othe

Re: [openssl-users] OpenSSL 1.1.1 pre-release 1 build failure

2018-02-13 Thread Norm Green
Turns out it only fails in my build environment and it builds clean as a stand-alone SSL build.  So it's something on my end. Sorry for the noise. Norm On 2/13/2018 2:59 PM, Matt Caswell wrote: On 13/02/18 21:06, Norm Green wrote: This is on Ubuntu 16.04with a build configured to be debug-

Re: [openssl-users] Explicit IV in TLS 1.1+

2018-02-13 Thread Matt Caswell
On 13/02/18 22:02, Curt Johansson wrote: > Hi all, > > I'm developing support for TLS 1.1 and 1.2 in a radius-server that until now > only handles TLS 1.0. I'm testing with a testtool that the vendor says is > using OpenSSL to implement the TLS support. It all seems to work except for > the f

Re: [openssl-users] OpenSSL 1.1.1 pre-release 1 build failure

2018-02-13 Thread Matt Caswell
On 13/02/18 21:06, Norm Green wrote: > This is on Ubuntu 16.04with a build configured to be debug-linux-x86_64 > > normg@moop>gmake > make depend && make _all > make[1]: Entering directory > '/export/moop3/users/normg/gs64-3xm1/slow50/openssl_1.1' > make[1]: Leaving directory > '/export/moop3/us

[openssl-users] Explicit IV in TLS 1.1+

2018-02-13 Thread Curt Johansson
Hi all, I'm developing support for TLS 1.1 and 1.2 in a radius-server that until now only handles TLS 1.0. I'm testing with a testtool that the vendor says is using OpenSSL to implement the TLS support. It all seems to work except for the following: When all key exchange messages are sent fro

Re: [openssl-users] 回复: crash in `sha1_block_data_order_avx`

2018-02-13 Thread Salz, Rich via openssl-users
* If your program uses threads, then you *have* to set the thread functions. Glad you got it fixed. > Why can't OpenSSL do this automatically? Yes, some applications will need to > supply specialty functions, but it could supply defaults. It does in 1.1.0 and later. -- openssl-users mai

Re: [openssl-users] 回复: crash in `sha1_block_data_order_avx`

2018-02-13 Thread Jordan Brown
On 2/13/2018 5:31 AM, Salz, Rich via openssl-users wrote: > > If your program uses threads, then you **have** to set the thread > functions.  Glad you got it fixed. > Why can't OpenSSL do this automatically?  Yes, some applications will need to supply specialty functions, but it could supply defau

[openssl-users] OpenSSL 1.1.1 pre-release 1 build failure

2018-02-13 Thread Norm Green
This is on Ubuntu 16.04with a build configured to be debug-linux-x86_64 normg@moop>gmake make depend && make _all make[1]: Entering directory '/export/moop3/users/normg/gs64-3xm1/slow50/openssl_1.1' make[1]: Leaving directory '/export/moop3/users/normg/gs64-3xm1/slow50/openssl_1.1' make[1]: Ent

Re: [openssl-users] DTLS over UDP

2018-02-13 Thread Michael Richardson
Nivedita wrote: > I am trying to establish DTLS over UDP connection by using > DTLSv1_listen method . > I have followed the below steps - 1. Created a server socket and using > this socket created bio and ssl object. bio = > BIO_new_dgram(VI_sock,BIO_NOCLOSE)) SSL_set_bio(ss

[openssl-users] extract private exponent

2018-02-13 Thread Ashwani Kumar
Hi All, is there any openssl API to extract private exponent from DER key? -rds, -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

[openssl-users] OpenSSL version 1.1.1 pre release 1 published

2018-02-13 Thread OpenSSL
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 OpenSSL version 1.1.1 pre release 1 (alpha) === OpenSSL - The Open Source toolkit for SSL/TLS https://www.openssl.org/ OpenSSL 1.1.1 is currently in alpha. OpenSSL 1.1.1 pre release 1 has now

Re: [openssl-users] 回复: crash in `sha1_block_data_order_avx`

2018-02-13 Thread Sergio NNX
> Dear all, very appreciate your reply! We have double check the implementation > of related > functions, and confirm that the input params for the function > int rsa_public_encrypt(const uint8_t *rsa_input, const int input_len, uint8_t > *enc_out, > uint8_t *public_key, const int key_len) > are

Re: [openssl-users] 回复: crash in `sha1_block_data_order_avx`

2018-02-13 Thread Salz, Rich via openssl-users
If your program uses threads, then you *have* to set the thread functions. Glad you got it fixed. -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] 回复: crash in `sha1_block_data_order_avx`

2018-02-13 Thread Jakob Bohm
On 13/02/2018 12:16, Xiang Ren wrote: Dear all, very appreciate your reply! We have double check the implementation of related functions, and confirm that the input params for the function int rsa_public_encrypt(const uint8_t *rsa_input, const int input_len, uint8_t *enc_out, uint8_t *public_ke

[openssl-users] 回复: crash in `sha1_block_data_order_avx`

2018-02-13 Thread Xiang Ren
Dear all, very appreciate your reply! We have double check the implementation of related functions, and confirm that the input params for the function int rsa_public_encrypt(const uint8_t *rsa_input, const int input_len, uint8_t *enc_out, uint8_t *public_key, const int key_len) are all stack var

[openssl-users] DTLS over UDP

2018-02-13 Thread Nivedita
Hi All, I am trying to establish DTLS over UDP connection by using DTLSv1_listen method . I have followed the below steps - 1. Created a server socket and using this socket created bio and ssl object. bio = BIO_new_dgram(VI_sock,BIO_NOCLOSE)) SSL_set_bio(ssl,VP_bio,VP_bio); 2. E