mirror of
https://github.com/ruby/ruby.git
synced 2025-09-20 02:53:57 +02:00
merge revision(s) 35434:
* lib/drb/ssl.rb: generate 1024 bits RSA key instead of 512 bits. OpenSSL 1.0.1 rejects 512 bits RSA key for TLS1.2 with SHA512. http://rt.openssl.org/Ticket/Display.html?id=2769&user=guest&pass=guest reported by Bohuslav Kabrda. [ruby-core:43844] [ruby-trunk - Bug #6221] reported by NARUSE, Yui. [ruby-dev:45551] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@35716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ca27aa831f
commit
e050fc1bb7
3 changed files with 11 additions and 3 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,7 +1,15 @@
|
|||
Sat May 19 14:42:20 2012 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* lib/drb/ssl.rb: generate 1024 bits RSA key instead of 512 bits.
|
||||
OpenSSL 1.0.1 rejects 512 bits RSA key for TLS1.2 with SHA512.
|
||||
http://rt.openssl.org/Ticket/Display.html?id=2769&user=guest&pass=guest
|
||||
reported by Bohuslav Kabrda.
|
||||
[ruby-core:43844] [ruby-trunk - Bug #6221]
|
||||
|
||||
Sat May 19 14:41:45 2012 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* test/drb/drbtest.rb: rescue Errno::ESRCH for Process.kill.
|
||||
[ruby-dev:45551] reported by NARUSE, Yui.
|
||||
reported by NARUSE, Yui. [ruby-dev:45551]
|
||||
|
||||
Sat May 19 14:41:09 2012 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ module DRb
|
|||
return
|
||||
end
|
||||
|
||||
rsa = OpenSSL::PKey::RSA.new(512){|p, n|
|
||||
rsa = OpenSSL::PKey::RSA.new(1024){|p, n|
|
||||
next unless self[:verbose]
|
||||
case p
|
||||
when 0; $stderr.putc "." # BN_generate_prime
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.3"
|
||||
#define RUBY_PATCHLEVEL 221
|
||||
#define RUBY_PATCHLEVEL 222
|
||||
|
||||
#define RUBY_RELEASE_DATE "2012-05-19"
|
||||
#define RUBY_RELEASE_YEAR 2012
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue