Nobuhiro IMAI
Nobuhiro IMAI
```ruby require "openssl" cert1 = OpenSSL::X509::Certificate.new cert1.version = 2 cert1.serial = 1 cert1.subject = cert1.issuer = OpenSSL::X509::Name.new([["CN", "CN"]]) t = Time.now cert1.not_before = t - 3600 cert1.not_after = t +...
It is enough to use `OpenSSL::PKey.read` to handle private keys. In the case of key or passphrase is invalid, the exception class and the message are changed. Is this acceptable?...
Currently, `MQTT::Client#key=` or `MQTT::Client#key_file=` treat a key or a file as an RSA key. I would like to use an EC key as well.
## Description completion for Symbols in `multiline mode` doesn't work well. What are your expected behavior and actual behavior of your environment? (TAB) is hit TAB key expected: ```ruby $...