mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/lib/openssl/bn.rb: Hide copyright info from RDoc.
* ext/openssl/lib/openssl/digest.rb: ditto * ext/openssl/lib/openssl/x509.rb: ditto * ext/openssl/lib/openssl/cipher.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b0fb4fb689
commit
965f51b348
5 changed files with 83 additions and 60 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Thu Aug 25 09:43:16 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
* ext/openssl/lib/openssl/bn.rb: Hide copyright info from RDoc.
|
||||||
|
* ext/openssl/lib/openssl/digest.rb: ditto
|
||||||
|
* ext/openssl/lib/openssl/x509.rb: ditto
|
||||||
|
* ext/openssl/lib/openssl/cipher.rb: ditto
|
||||||
|
|
||||||
Thu Aug 25 09:25:48 2011 Eric Hodel <drbrain@segment7.net>
|
Thu Aug 25 09:25:48 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
* ext/openssl/ossl_digest.c: Document OpenSSL::Digest::digest and add
|
* ext/openssl/ossl_digest.c: Document OpenSSL::Digest::digest and add
|
||||||
|
|
|
@ -1,18 +1,22 @@
|
||||||
=begin
|
#--
|
||||||
= $RCSfile$ -- Ruby-space definitions that completes C-space funcs for BN
|
#
|
||||||
|
# $RCSfile$
|
||||||
= Info
|
#
|
||||||
'OpenSSL for Ruby 2' project
|
# = Ruby-space definitions that completes C-space funcs for BN
|
||||||
Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
#
|
||||||
All rights reserved.
|
# = Info
|
||||||
|
# 'OpenSSL for Ruby 2' project
|
||||||
= Licence
|
# Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
||||||
This program is licenced under the same licence as Ruby.
|
# All rights reserved.
|
||||||
(See the file 'LICENCE'.)
|
#
|
||||||
|
# = Licence
|
||||||
= Version
|
# This program is licenced under the same licence as Ruby.
|
||||||
$Id$
|
# (See the file 'LICENCE'.)
|
||||||
=end
|
#
|
||||||
|
# = Version
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
#++
|
||||||
|
|
||||||
module OpenSSL
|
module OpenSSL
|
||||||
class BN
|
class BN
|
||||||
|
|
|
@ -1,18 +1,22 @@
|
||||||
=begin
|
#--
|
||||||
= $RCSfile$ -- Ruby-space predefined Cipher subclasses
|
#
|
||||||
|
# $RCSfile$
|
||||||
= Info
|
#
|
||||||
'OpenSSL for Ruby 2' project
|
# = Ruby-space predefined Cipher subclasses
|
||||||
Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
#
|
||||||
All rights reserved.
|
# = Info
|
||||||
|
# 'OpenSSL for Ruby 2' project
|
||||||
= Licence
|
# Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
||||||
This program is licenced under the same licence as Ruby.
|
# All rights reserved.
|
||||||
(See the file 'LICENCE'.)
|
#
|
||||||
|
# = Licence
|
||||||
= Version
|
# This program is licenced under the same licence as Ruby.
|
||||||
$Id$
|
# (See the file 'LICENCE'.)
|
||||||
=end
|
#
|
||||||
|
# = Version
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
#++
|
||||||
|
|
||||||
module OpenSSL
|
module OpenSSL
|
||||||
class Cipher
|
class Cipher
|
||||||
|
|
|
@ -1,18 +1,22 @@
|
||||||
=begin
|
#--
|
||||||
= $RCSfile$ -- Ruby-space predefined Digest subclasses
|
#
|
||||||
|
# $RCSfile$
|
||||||
= Info
|
#
|
||||||
'OpenSSL for Ruby 2' project
|
# = Ruby-space predefined Digest subclasses
|
||||||
Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
#
|
||||||
All rights reserved.
|
# = Info
|
||||||
|
# 'OpenSSL for Ruby 2' project
|
||||||
= Licence
|
# Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
||||||
This program is licenced under the same licence as Ruby.
|
# All rights reserved.
|
||||||
(See the file 'LICENCE'.)
|
#
|
||||||
|
# = Licence
|
||||||
= Version
|
# This program is licenced under the same licence as Ruby.
|
||||||
$Id$
|
# (See the file 'LICENCE'.)
|
||||||
=end
|
#
|
||||||
|
# = Version
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
#++
|
||||||
|
|
||||||
module OpenSSL
|
module OpenSSL
|
||||||
class Digest
|
class Digest
|
||||||
|
|
|
@ -1,18 +1,22 @@
|
||||||
=begin
|
#--
|
||||||
= $RCSfile$ -- Ruby-space definitions that completes C-space funcs for X509 and subclasses
|
#
|
||||||
|
# $RCSfile$
|
||||||
= Info
|
#
|
||||||
'OpenSSL for Ruby 2' project
|
# = Ruby-space definitions that completes C-space funcs for X509 and subclasses
|
||||||
Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
#
|
||||||
All rights reserved.
|
# = Info
|
||||||
|
# 'OpenSSL for Ruby 2' project
|
||||||
= Licence
|
# Copyright (C) 2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
||||||
This program is licenced under the same licence as Ruby.
|
# All rights reserved.
|
||||||
(See the file 'LICENCE'.)
|
#
|
||||||
|
# = Licence
|
||||||
= Version
|
# This program is licenced under the same licence as Ruby.
|
||||||
$Id$
|
# (See the file 'LICENCE'.)
|
||||||
=end
|
#
|
||||||
|
# = Version
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
#++
|
||||||
|
|
||||||
module OpenSSL
|
module OpenSSL
|
||||||
module X509
|
module X509
|
||||||
|
|
Loading…
Add table
Reference in a new issue