I'm using the OpenSSL::Timestamp class in my library to generate timestamp request and process their response. When trying to run this on JRuby I'm running into the issue that OpenSSL::Timestamp is missing:
irb(main):001> RUBY_VERSION
=> "4.0.0"
irb(main):002> JRUBY_VERSION
=> "10.1.1.0"
irb(main):003> require 'openssl'
=> true
irb(main):004> JOpenSSL::VERSION
=> "0.16.2"
irb(main):005> OpenSSL::Timestamp
org/jruby/RubyModule.java:4849:in 'const_missing': uninitialized constant OpenSSL::Timestamp (NameError)
Is there an alternative that can/should be used on JRuby? Or is this not yet implemented?
I'm using the
OpenSSL::Timestampclass in my library to generate timestamp request and process their response. When trying to run this on JRuby I'm running into the issue thatOpenSSL::Timestampis missing:Is there an alternative that can/should be used on JRuby? Or is this not yet implemented?