mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
![tenderlove](/assets/img/avatar_default.png)
DEFAULT_1024 constants in Ruby. * ext/openssl/lib/openssl/ssl.rb (module OpenSSL): Ask PKey for the default DH callback since it aleady must check whether openssl has been compiled with DH support. * ext/openssl/ossl_pkey_dh.c (OSSL_PKEY_BN): Remove C definitions of DEFAULT_512 and DEFAULT_1024 * ext/openssl/ossl_pkey_dh.c (Init_ossl_dh): ditto * test/openssl/test_pkey_dh.rb (class OpenSSL): add test to ensure the Ruby definitions are the same as the C definitions were. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
506 B
Ruby
25 lines
506 B
Ruby
=begin
|
|
= $RCSfile$ -- Loader for all OpenSSL C-space and Ruby-space definitions
|
|
|
|
= 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 'LICENCE'.)
|
|
|
|
= Version
|
|
$Id$
|
|
=end
|
|
|
|
require 'openssl.so'
|
|
|
|
require 'openssl/bn'
|
|
require 'openssl/pkey'
|
|
require 'openssl/cipher'
|
|
require 'openssl/config'
|
|
require 'openssl/digest'
|
|
require 'openssl/x509'
|
|
require 'openssl/ssl'
|