Importing and exporting RSA/DSA/EC keys

The openssl package implements a modern interface to libssl and libcrypto for R. It builds on the new EVP api which was introduced in OpenSSL 1.0 and provides a unified API to the various methods and formats. OpenSSL supports three major public key crypto systems:

For each type there are several common formats for storing keys and certificates:

The openssl package automatically detects the format when possible. However being able to recognize the various formats can be useful.

The DER format

DER is the standard binary format using by protocols for storing and exchanging keys and certificates. It consists of a serialized ASN.1 structure which hold the key’s (very large) prime numbers.

key <- ec_keygen()
pubkey <- key$pubkey
bin <- write_der(pubkey)
print(bin)
 [1] 30 59 30 13 06 07 2a 86 48 ce 3d 02 01 06 08 2a 86 48 ce 3d 03 01 07 03 42
[26] 00 04 9e 02 5e 0e eb 72 54 e4 05 f1 b6 1e 98 a8 d1 e2 d7 9f 50 7c 40 da af
[51] a6 aa 4c c4 18 be 78 17 84 f5 40 f5 aa 12 f2 8d 7c f3 f9 4b b3 14 12 0b fd
[76] 09 03 13 c6 2c 3a f7 f6 87 4f 38 6d 51 34 1f d0

To read a DER key use read_key or read_pubkey with der = TRUE.

read_pubkey(bin, der = TRUE)
[256-bit ecdsa public key]
md5: 370021b7fb511fa993e3b5c1cafeebc8
sha256: 8cedb98536b70a385a7d67a282b5d2570c00b497efaf908aed979dff8235b43e

Users typically don’t need to worry about the key’s underlying primes, but have a look at key$data if you are curious.

The PEM format

In practice the user rarely encounters DER because it is mainly for internal use. When humans exchange keys and certificates they typically use the PEM format. PEM is simply base64 encoded DER data, plus a header. The header identifies the key (and possibly encryption) type.

cat(write_pem(pubkey))
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEngJeDutyVOQF8bYemKjR4tefUHxA
2q+mqkzEGL54F4T1QPWqEvKNfPP5S7MUEgv9CQMTxiw69/aHTzhtUTQf0A==
-----END PUBLIC KEY-----
cat(write_pem(key, password = NULL))
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgWUx/DXAO8s1ik7fB
sUDx0y91SyCqOQm9cf/ZztwjM2ShRANCAASeAl4O63JU5AXxth6YqNHi159QfEDa
r6aqTMQYvngXhPVA9aoS8o188/lLsxQSC/0JAxPGLDr39odPOG1RNB/Q
-----END PRIVATE KEY-----

The PEM format allows for protecting private keys with a password. R will prompt you for the password when reading such a protected key.

cat(write_pem(key, password = "supersecret"))
-----BEGIN ENCRYPTED PRIVATE KEY-----
MIHjME4GCSqGSIb3DQEFDTBBMCkGCSqGSIb3DQEFDDAcBAh8n59sZuhEswICCAAw
DAYIKoZIhvcNAgkFADAUBggqhkiG9w0DBwQI0unMRZjkIIYEgZC0GxN4R9GTbVHP
fRLdCSupItjeUSweOwqA3TnUq3xiOEpr+Oe6y/ul/Aq6mGwszXHpeSIwvh/4E7YB
HgBBjIEHzRReL3aRnPM7Tdi9rAIkvhs/KwO4dN58f+K1xwjpEKAWiwKaOclgEx4Y
TF9XmKY78pIbUIS0O0Y3YUNf+zoMMLKmhzjSl+uFUcNgMmuyUzk=
-----END ENCRYPTED PRIVATE KEY-----

The OpenSSH format

For better or worse, OpenSSH uses a custom format for public keys. The advantage of this format is that it fits on a single line which is nice for e.g. your ~/.ssh/known_hosts file. There is no special format for private keys, OpenSSH uses PEM as well.

str <- write_ssh(pubkey)
print(str)
[1] "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJ4CXg7rclTkBfG2Hpio0eLXn1B8QNqvpqpMxBi+eBeE9UD1qhLyjXzz+UuzFBIL/QkDE8YsOvf2h084bVE0H9A="

The read_pubkey function will automatically detect if a file contains a PEM or SSH key.

read_pubkey(str)
[256-bit ecdsa public key]
md5: 370021b7fb511fa993e3b5c1cafeebc8
sha256: 8cedb98536b70a385a7d67a282b5d2570c00b497efaf908aed979dff8235b43e

The JSON Web Key (JWK) format

Yet another recent format to store RSA or EC keys are JSON Web Keys (JWK). JWK is part of the Javascript Object Signing and Encryption (JOSE) specification. The write_jwk and read_jwk functions are implemented in a separate package which uses the openssl package.

library(jose)
json <- write_jwk(pubkey)
jsonlite::prettify(json)
{
    "kty": "EC",
    "crv": "P-256",
    "x": "ngJeDutyVOQF8bYemKjR4tefUHxA2q-mqkzEGL54F4Q",
    "y": "9UD1qhLyjXzz-UuzFBIL_QkDE8YsOvf2h084bVE0H9A"
}
 

Keys from jose and openssl are the same.

mykey <- read_jwk(json)
identical(mykey, pubkey)
[1] TRUE
print(mykey)
[256-bit ecdsa public key]
md5: 370021b7fb511fa993e3b5c1cafeebc8
sha256: 8cedb98536b70a385a7d67a282b5d2570c00b497efaf908aed979dff8235b43e