armour (Armour Comms)
- Login: armour
- Registered on: 05/06/2016
- Last sign in: 05/06/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
05/06/2016
-
04:10 PM Ruby Feature #12354 (Closed): PKey::EC Can't output public key pem when private key exists
- Steps to reproduce:
Create EC key:
```ruby
key = OpenSSL::PKey::EC.new("prime256v1")
key.generate_key
```
Try and output in pem format
```ruby
key.to_pem #Outputs private key pem
key.public_key.to_pem #Error
```
In o...