Sha256: 97e4c68def35facb22a7447fedbc37053d6ac5e2c582b1abe245cb3c58ad8006
Contents?: true
Size: 609 Bytes
Versions: 79
Compression:
Stored size: 609 Bytes
Contents
#-- # # $RCSfile$ # # = Ruby-space definitions that completes C-space funcs for BN # # = Info # 'OpenSSL for Ruby 2' project # Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz> # All rights reserved. # # = Licence # This program is licenced under the same licence as Ruby. # (See the file 'LICENCE'.) # # = Version # $Id$ # #++ module OpenSSL class BN 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 def to_bn OpenSSL::BN::new(self) end end # Integer
Version data entries
79 entries across 76 versions & 13 rubygems