class OpenSSL::PKey::EC
marked as @private so it won't appear in the yard doc @private
marked as @private so it won't appear in the yard doc @private
Constants
- UNSUPPORTED
Public Class Methods
new(*args)
click to toggle source
# File lib/r509/ec-hack.rb, line 29 def initialize(*args) raise R509::R509Error, "EC is unavailable. You may need to recompile Ruby with an OpenSSL that has elliptic curve support." end
Public Instance Methods
method_missing(method, *args, &block)
click to toggle source
# File lib/r509/ec-hack.rb, line 33 def method_missing(method, *args, &block) raise R509::R509Error, "EC is unavailable. You may need to recompile Ruby with an OpenSSL that has elliptic curve support." end
private?()
click to toggle source
# File lib/r509/ec-hack.rb, line 14 def private? private_key? end