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 4f 9e d2 a2 c0 ab ac 5a e0 15 67 da ca b9 c0 ae 36 7a 00 06 e9 eb 7c
[51] 97 fa 7d 54 c8 f7 cd 5c cc 9c 3d 25 64 52 97 e4 da 6d 75 c3 d4 db 5c b1 c8
[76] ab 80 cb c5 fc 1e ab 96 c3 3e ff 5e 02 a8 51 9e

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: 134d90795f88ec4bd08ff5b145e07ff5
sha256: 54ff8ded28ea34afc0e91a0d16b39c381f40e432841919f3d982f40b96c54fb0

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-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAET57SosCrrFrgFWfayrnArjZ6AAbp
63yX+n1UyPfNXMycPSVkUpfk2m11w9TbXLHIq4DLxfweq5bDPv9eAqhRng==
-----END PUBLIC KEY-----
cat(write_pem(key, password = NULL))
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQguqBLcfMqhG3TXa5G
vzuWGjmLA6eeDA3Gg3bbcYkTo+GhRANCAARPntKiwKusWuAVZ9rKucCuNnoABunr
fJf6fVTI981czJw9JWRSl+TabXXD1NtcscirgMvF/B6rlsM+/14CqFGe
-----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-----
MIHjME4GCSqGSIb3DQEFDTBBMCkGCSqGSIb3DQEFDDAcBAh2TSmr8aF2aQICCAAw
DAYIKoZIhvcNAgkFADAUBggqhkiG9w0DBwQI0BtM1iZhQ7kEgZDne7riiH2gX4kn
A/56ldtVpE9ayjFEsH5fyMmguZ1q8oDvlfDJYHD7N+2p7lhAko2fKxbeXwdimWdR
DP7O2Q24gln3tAj5MY02XfpC05toxAAjCO28gocCGdoFTJ7c+1sX3/UznIt/QVPL
+Hddd6YKqxof7GSh+VzHi9iL3hu2O9O13hzX6IOmDjAi3Ird6Ac=
-----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 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE+e0qLAq6xa4BVn2sq5wK42egAG6et8l/p9VMj3zVzMnD0lZFKX5NptdcPU21yxyKuAy8X8HquWwz7/XgKoUZ4="

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: 134d90795f88ec4bd08ff5b145e07ff5
sha256: 54ff8ded28ea34afc0e91a0d16b39c381f40e432841919f3d982f40b96c54fb0

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": "T57SosCrrFrgFWfayrnArjZ6AAbp63yX-n1UyPfNXMw",
    "y": "nD0lZFKX5NptdcPU21yxyKuAy8X8HquWwz7_XgKoUZ4"
}
 

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: 134d90795f88ec4bd08ff5b145e07ff5
sha256: 54ff8ded28ea34afc0e91a0d16b39c381f40e432841919f3d982f40b96c54fb0