openssl icon indicating copy to clipboard operation
openssl copied to clipboard

Provides SSL, TLS and general purpose cryptography.

Results 132 openssl issues
Sort by recently updated
recently updated
newest added

In https://github.com/ruby/openssl/blob/master/ext/openssl/ossl_ocsp.c#L428-L429, ossl_ocspreq_verify does: ``` if (result 0 ? Qtrue : Qfalse; ``` If the result is not successful, the error information is cleared. This makes it not available in...

This is an initial implementation of OCSP stapling support, intended to work with MongoDB. So far I tested it on login.live.com using the following script: ``` require 'byebug' require 'openssl'...

We are looking into implementing OCSP stapling support in our application using Ruby and are wondering how to do so/whether this is possible. I found this SO post giving the...

Follow-up to https://github.com/ruby/openssl/pull/362 and https://github.com/ruby/openssl/issues/304 - actually deprecate these constants.

Request for comments: Is it safe to do this? Would there be any issues? The digest library (::Digest) needs to either drop the OpenSSL backend or be updated to use...

Implementing https://github.com/ruby/openssl/pull/329#issuecomment-629650162 and Marshal support. I'm not very good at C, so any feedback is very welcome.

/cc @ioquatix This reverts commit 23b07043e7fde743ff920f8354b5a094fee19a03. Fixes https://github.com/ruby/openssl/issues/318

I'm experimenting with implementing a SSL server with SNI. Once the peer has negotiated the connection, and has connected successfully, I want to access the hostname that was used. I...

A number of routines (I'm debugging ossl_x509extfactory_create_ext) need to log the entire SSL error call stack in order to provide better diagnostics. I know how to get this out as...

instead just pass strings to X509V3_EXT_nconf, which has all the logic for processing dealing with generic extensions. This is not yet right; it may insert two additional bytes to the...