We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3117897 commit 65c5a77Copy full SHA for 65c5a77
test/openssl/test_pkey_ec.rb
@@ -309,7 +309,10 @@ def test_ec_group
309
assert_equal group1.to_der, group2.to_der
310
assert_equal group1, group2
311
group2.asn1_flag ^=OpenSSL::PKey::EC::NAMED_CURVE
312
- assert_not_equal group1.to_der, group2.to_der
+ # AWS-LC does not support serializing explicit curves.
313
+ unless aws_lc?
314
+ assert_not_equal group1.to_der, group2.to_der
315
+ end
316
317
318
group3 = group1.dup
0 commit comments