/opt/cpanel/ea-ruby27/root/usr/share/gems/gems/openssl-2.1.4/lib/openssl
NameSizeModeActions
bn.rb7080644editdlrm
buffering.rb99160644editdlrm
cipher.rb17450644editdlrm
config.rb128530644editdlrm
digest.rb17540644editdlrm
pkcs5.rb6140644editdlrm
pkey.rb6630644editdlrm
ssl.rb163630644editdlrm
x509.rb59550644editdlrm
Edit: /opt/cpanel/ea-ruby27/root/usr/share/gems/gems/openssl-2.1.4/lib/openssl/bn.rb (708B)
# frozen_string_literal: false #-- # # = Ruby-space definitions that completes C-space funcs for BN # # = Info # 'OpenSSL for Ruby 2' project # Copyright (C) 2002 Michal Rokos # All rights reserved. # # = Licence # This program is licensed under the same licence as Ruby. # (See the file 'LICENCE'.) #++ module OpenSSL class BN include Comparable def pretty_print(q) q.object_group(self) { q.text ' ' q.text to_i.to_s } end end # BN end # OpenSSL ## #-- # Add double dispatch to Integer #++ class Integer # Casts an Integer as an OpenSSL::BN # # See `man bn` for more info. def to_bn OpenSSL::BN::new(self) end end # Integer