Sha256: 04db2173dad5695ffbdefc645c65eca448293260cbdde16be8c5a98085ec3829

Contents?: true

Size: 588 Bytes

Versions: 81

Compression:

Stored size: 588 Bytes

Contents

#--
#
# $RCSfile$
#
# = Ruby-space predefined Digest subclasses
#
# = 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 Digest
    # This class is only provided for backwards compatibility.  Use OpenSSL::Digest in the future.
    class Digest < Digest
      def initialize(*args)
        # add warning
        super(*args)
      end
    end
  end # Digest
end # OpenSSL

Version data entries

81 entries across 78 versions & 13 rubygems

Version Path
jruby-openssl-0.9.6-java lib/jopenssl19/openssl/digest.rb