You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that internally the crl should be either in crl or crlHolder, and to_der will check both but to_pem will only check crl. When I initialize a new object from an existing crl it initializes crl internally, but when calling new with no arguments it doesn't initialize anything (sign initializes crlHolder but sets crl to null).
This is also seen by:
[16] pry(PuppetSpec::SSL)> OpenSSL::X509::CRL.new.to_der
Java::JavaLang::IllegalStateException: no crl holder
from org.jruby.ext.openssl.X509CRL.getCRL(X509CRL.java:140)
I'm on jruby 9.1.16.0.
The text was updated successfully, but these errors were encountered:
I have the following code
At this breakpoint I get
It seems that internally the crl should be either in
crl
orcrlHolder
, andto_der
will check both butto_pem
will only checkcrl
. When I initialize a new object from an existing crl it initializescrl
internally, but when callingnew
with no arguments it doesn't initialize anything (sign
initializescrlHolder
but setscrl
to null).This is also seen by:
I'm on jruby 9.1.16.0.
The text was updated successfully, but these errors were encountered: