Method: Ccrypto::X509::CertProfile#add_custom_extension
- Defined in:
- lib/ccrypto/configs/x509_cert_profile.rb
#add_custom_extension(oid, value, type = :string, critical = false) ⇒ Object Also known as: add_domain_extension
372 373 374 |
# File 'lib/ccrypto/configs/x509_cert_profile.rb', line 372 def add_custom_extension(oid, value, type = :string, critical = false) custom_extension[oid] = { type: type, value: value, critical: critical } end |