Project

General

Profile

Actions

Bug #1184

closed

Type error in Integer#to_bn (via Openssl)

Added by mfurr (Mike Furr) about 15 years ago. Updated over 7 years ago.

Status:
Closed
Target version:
ruby -v:
ruby 1.8.7 (2008-08-11 patchlevel 72) [x86_64-linux]
[ruby-core:22297]

Description

=begin
The openssl library adds the to_bn method to the Integer class for creating an instance of the OpenSSL::BN class. The code, located in openssl/bn.rb, is:

def to_bn
OpenSSL::BN::new(self)
end

However, the constructor for the BN class takes a String, not an Integer.

The following repoduces the error:
require 'openssl'
3.to_bn
=> TypeError: can't convert Fixnum into String
=end

Actions #1

Updated by shyouhei (Shyouhei Urabe) over 13 years ago

  • Status changed from Open to Assigned
  • Assignee set to nahi (Hiroshi Nakamura)

=begin
It seems this bug remains in 1.8 branches. Fixed in 1.9. Please close if I'm wrong.
=end

Actions #2

Updated by nahi (Hiroshi Nakamura) over 13 years ago

  • Category set to ext
  • Assignee changed from nahi (Hiroshi Nakamura) to shyouhei (Shyouhei Urabe)
  • Target version set to Ruby 1.8.7

=begin
Fixed at trunk in r29407. It must be a simple bug so I backported the fix to ruby_1_8 at r30275.

It should go to ruby_1_8_7 as well.
=end

Actions #3

Updated by shyouhei (Shyouhei Urabe) over 7 years ago

  • Status changed from Assigned to Closed
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0