PATH:
opt
/
alt
/
ruby34
/
share
/
ruby
/
openssl
# frozen_string_literal: true #-- # = Ruby-space definitions to add DER (de)serialization to classes # # = Info # 'OpenSSL for Ruby 2' project # Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz> # All rights reserved. # # = Licence # This program is licensed under the same licence as Ruby. # (See the file 'COPYING'.) #++ module OpenSSL module Marshal def self.included(base) base.extend(ClassMethods) end module ClassMethods def _load(string) new(string) end end def _dump(_level) to_der end end end
[-] ssl.rb
[edit]
[-] version.rb
[edit]
[-] digest.rb
[edit]
[-] marshal.rb
[edit]
[-] asn1.rb
[edit]
[-] x509.rb
[edit]
[-] hmac.rb
[edit]
[-] cipher.rb
[edit]
[+]
..
[-] buffering.rb
[edit]
[-] bn.rb
[edit]
[-] pkcs5.rb
[edit]
[-] pkey.rb
[edit]