Type:
Class

RSA is an asymmetric public key algorithm that has been formalized in RFC 3447. It is in widespread use in public key infrastuctures (PKI) where certificates (cf. OpenSSL::X509::Certificate) often are issued on the basis of a public/private RSA key pair. RSA is used in a wide field of applications such as secure (symmetric) key exchange, e.g. when establishing a secure TLS/SSL connection. It is also used in various digital signature schemes.

to_der
  • References/Ruby on Rails/Ruby/Classes/OpenSSL/OpenSSL::PKey/OpenSSL::PKey::RSA

rsa.to_der => DER-format String Instance Public methods Outputs this keypair

2025-01-10 15:47:30
to_text
  • References/Ruby on Rails/Ruby/Classes/OpenSSL/OpenSSL::PKey/OpenSSL::PKey::RSA

rsa.to_text => String Instance Public methods THIS METHOD IS INSECURE, PRIVATE

2025-01-10 15:47:30
public?
  • References/Ruby on Rails/Ruby/Classes/OpenSSL/OpenSSL::PKey/OpenSSL::PKey::RSA

rsa.public? => true Instance Public methods The return value is always true

2025-01-10 15:47:30
to_pem
  • References/Ruby on Rails/Ruby/Classes/OpenSSL/OpenSSL::PKey/OpenSSL::PKey::RSA

to_pem(p1 = v1, p2 = v2) Instance Public methods Alias for:

2025-01-10 15:47:30
generate
  • References/Ruby on Rails/Ruby/Classes/OpenSSL/OpenSSL::PKey/OpenSSL::PKey::RSA

RSA.generate(size) => RSA instanceRSA.generate(size, exponent) => RSA instance Class Public

2025-01-10 15:47:30
params
  • References/Ruby on Rails/Ruby/Classes/OpenSSL/OpenSSL::PKey/OpenSSL::PKey::RSA

rsa.params => hash Instance Public methods THIS METHOD IS INSECURE, PRIVATE

2025-01-10 15:47:30
new
  • References/Ruby on Rails/Ruby/Classes/OpenSSL/OpenSSL::PKey/OpenSSL::PKey::RSA

RSA.new(key_size) => RSA instanceRSA.new(encoded_key) => RSA instanceRSA.new(encoded_key, pass_phrase) => RSA

2025-01-10 15:47:30