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

Also available in: Atom PDF

Like0
Like0Like0Like0