Skip to content

Commit e175e69

Browse files
committed
[fix] initialize @unused_bits = 0 for BitString
1 parent 86daed3 commit e175e69

File tree

2 files changed

+19
-17
lines changed

2 files changed

+19
-17
lines changed

src/main/java/org/jruby/ext/openssl/ASN1.java

+15-10
Original file line numberDiff line numberDiff line change
@@ -1574,16 +1574,21 @@ static void initializeImpl(final ThreadContext context,
15741574

15751575
// NOTE: Primitive only
15761576
final String baseName = self.getMetaClass().getRealClass().getBaseName();
1577-
if ( "ObjectId".equals( baseName ) ) {
1578-
final String name;
1579-
try {
1580-
name = oid2Sym( runtime, getObjectID(runtime, value.toString()), true );
1581-
}
1582-
catch (IllegalArgumentException e) {
1583-
// e.g. in case of nil "string not an OID"
1584-
throw runtime.newTypeError(e.getMessage());
1585-
}
1586-
if ( name != null ) value = runtime.newString(name);
1577+
switch (baseName) {
1578+
case "ObjectId":
1579+
final String name;
1580+
try {
1581+
name = oid2Sym( runtime, getObjectID(runtime, value.toString()), true );
1582+
}
1583+
catch (IllegalArgumentException e) {
1584+
// e.g. in case of nil "string not an OID"
1585+
throw runtime.newTypeError(e.getMessage());
1586+
}
1587+
if ( name != null ) value = runtime.newString(name);
1588+
break;
1589+
case "BitString":
1590+
self.setInstanceVariable("@unused_bits", runtime.newFixnum(0));
1591+
break;
15871592
}
15881593

15891594
self.setInstanceVariable("@tag", tag);

src/test/ruby/test_asn1.rb

+4-7
Original file line numberDiff line numberDiff line change
@@ -1162,14 +1162,11 @@ def test_decode
11621162
#assert_equal calulated_sig, sig_val.value
11631163
end
11641164

1165-
# This is from the upstream MRI tests, might be superseded by `test_bit_string_infinite_length`?
1165+
# This is from the upstream MRI tests
11661166
def test_bitstring
1167-
# TODO: Import Issue
1168-
# fails <nil> expected but was <0>
1169-
#encode_decode_test B(%w{ 03 01 00 }), OpenSSL::ASN1::BitString.new(B(%w{}))
1170-
# TODO: Import Issue
1171-
# fails with <nil> expected but was <0>
1172-
#encode_decode_test B(%w{ 03 02 00 01 }), OpenSSL::ASN1::BitString.new(B(%w{ 01 }))
1167+
encode_decode_test B(%w{ 03 01 00 }), OpenSSL::ASN1::BitString.new(B(%w{}))
1168+
encode_decode_test B(%w{ 03 02 00 01 }), OpenSSL::ASN1::BitString.new(B(%w{ 01 }))
1169+
11731170
obj = OpenSSL::ASN1::BitString.new(B(%w{ F0 }))
11741171
obj.unused_bits = 4
11751172
encode_decode_test B(%w{ 03 02 04 F0 }), obj

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy