Method: OpenSSL::PKey::EC#q

Defined in:
lib/sshkey.rb

#qObject



27
28
29
30
31
32
33
# File 'lib/sshkey.rb', line 27

def q
  # jruby-openssl does not currently support to_octet_string
  # https://github.com/jruby/jruby-openssl/issues/226
  jruby_not_implemented("to_octet_string is not implemented")

  public_key.to_octet_string(group.point_conversion_form)
end