certificate_authority icon indicating copy to clipboard operation
certificate_authority copied to clipboard

Ruby gem for managing the core functions outlined in RFC-3280 for PKI

Results 17 certificate_authority issues
Sort by recently updated
recently updated
newest added

The print format for X509v3 authority key identifier was changed in openssl, and in openssl >= 3.0 the `keyid:` prefix is no longer included in most cases. See https://github.com/openssl/openssl/commit/86afd005fb8184e37c41d85128a01b58ac152d60 and...

I am doing something like this: signing_key = OpenSSL::X509::Certificate.new File.read "intermediate.pem" plain_cert = CertificateAuthority::Certificate.new plain_cert.subject.common_name = "mydomain.com" plain_cert.serial_number.number = 4 plain_cert.key_material.generate_key plain_cert.parent = signing_key plain_cert.sign! just to test the loading...

Hi @cchandler, this library is dope - great work! I notice that the README mentions conveniences for CSR as coming soon. Did you make any progress with that? I'm about...

A deprecated warning appears in example code from README: ``` /Users/ztz/.rvm/gems/ruby-2.6.5/gems/certificate_authority-0.1.6/lib/certificate_authority/certificate.rb:94: warning: constant OpenSSL::Digest::Digest is deprecated ``` Code: ```ruby require 'certificate_authority' root = CertificateAuthority::Certificate.new root.subject.common_name= "http://mydomain.com" root.serial_number.number=1 root.key_material.generate_key root.signing_entity =...

Please release certificate_authority 0.2.0, which appears to remove the dependency on ActiveModel

I'm currently developing against the master branch, as it's the only that runs in ruby 2.3 and greater without warnings. I've encountered this problem when running the ssl tests against...

and matching rake task

There is no example of using path_len in the full "signing_profile", and the details about "Basic Constraints" makes the user believe that the key should be called "pathlen", where it...

Are you planning to release 0.2.0? There are few methods I find useful :)