Nobuhiro IMAI

Results 6 comments of Nobuhiro IMAI

If I understand correctly, the cause of this is what is described here: https://www.openssl.org/docs/man3.0/man3/i2d_X509.html > Any function which encodes a structure (i2d_TYPE(), i2d_TYPE() or > i2d_TYPE()) may return a stale...

> I agree with your analysis. Thank you. > It's also confusing since the behavior is inconsistent between types, e.g., `X509_REQ_set_version()` updates the `modified` bit while `X509_set_version()` doesn't. Thanks for...

I recently found that `OpenSSL::PKey::EC.new("prime256v1").to_der` dumps core, and have been searching the way to check the pkey is `public?` or not briefly. This PR almostly implement that way, but the...

I found that each failing check is caused by the following change: https://github.com/ruby/openssl/commit/6c09fd3ef5422d798f6674094b9f222c3abae660 The simple way to pass a spec is to not specify an exception class. By the way,...

Thanks for your informations! I omitted the exception class on the spec.

I'm sorry, I'm late. I prepared the `EC` keys with and without password encrypted, and added the specs for those `EC` keys (almostly copied from the specs for `RSA` keys...