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

I need to generate shared ttls secrets from TLS sessions using this API. Note this implementation is incomplete! as it does not allow using the context. See the first commit...

OpenSSL 3.0 is scheduled to be released later this year. It is a major version bump from 1.1 and contains architecture changes that affect Ruby/OpenSSL. From https://www.openssl.org/policies/releasestrat.html: > The following...

There are multiple places where it's necessary to know whether a pkey is a private key, a public key, or just key parameters. Unfortunately, OpenSSL doesn't expose an API for...

Can you add the support of RFC 9266: Channel Bindings for TLS 1.3? - https://datatracker.ietf.org/doc/html/rfc9266 Little details, to know easily: - tls-unique for TLS =< 1.2 - tls-exporter for TLS...

```ruby require "openssl" cert1 = OpenSSL::X509::Certificate.new cert1.version = 2 cert1.serial = 1 cert1.subject = cert1.issuer = OpenSSL::X509::Name.new([["CN", "CN"]]) t = Time.now cert1.not_before = t - 3600 cert1.not_after = t +...

Hello, In the context of https://bugs.ruby-lang.org/issues/18658#note-8, I would like to ask what would it take to support OpenSSL 1.0.1-3.0.0 in the Ruby openssl gem? (the current openssl gem release 3.0.0...

The documentation for [SSLContext](https://ruby-doc.org/stdlib-3.1.0/libdoc/openssl/rdoc/OpenSSL/SSL/SSLContext.html) states that the `#key=` and `#cert=` writer methods are deprecated and to instead use `#add_certificate`. However, I noticed there does not seem to be a way...

A collection of patches to support OpenSSL 3.0 API. Currently, as of 2021-05-25, it compiles with OpenSSL's master branch (3.0.0-alpha17), but many things are known to be broken and test...

Adds commit ruby/ruby@6d8f396f37350b7aa9c85a097929f54a0939448b and ruby/ruby@c8b3bd45cc3cae93ae701333202416838ee6a00c.

I'm working on ractor-safety in the http library I maintain, and I just got this error when performing an https request: # code looks like: ```ruby ctx = OpenSSL::SSL::SSLContext.new ctx.set_params(ctx_options)...