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.
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 08 38 ef 3d 18 ad e4 18 1c c4 6e d5 bb a0 4e 43 5b 97 1b bc 23 26 db
[51] 9b 5e 19 46 1e c9 bf b4 16 51 f1 7a 70 7b 89 8a 84 af 7e bc e7 6e 86 84 48
[76] 14 f7 4a a9 3c d1 fb 58 04 0e 73 12 01 d4 23 07
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: 080abb014aa701d678497debf70e9a0e
sha256: 6babef21cde8907932459238a1a7a0d05534cdd07ed443a5985c8dec3396b3a9
Users typically don’t need to worry about the key’s underlying
primes, but have a look at key$data
if you are curious.
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-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAECDjvPRit5BgcxG7Vu6BOQ1uXG7wj
JtubXhlGHsm/tBZR8Xpwe4mKhK9+vOduhoRIFPdKqTzR+1gEDnMSAdQjBw==
-----END PUBLIC KEY-----
cat(write_pem(key, password = NULL))
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgU2yIwQqdg2X8J5ZQ
xb6eeoaMWd9BfWp3xGdqREPWXlahRANCAAQIOO89GK3kGBzEbtW7oE5DW5cbvCMm
25teGUYeyb+0FlHxenB7iYqEr368526GhEgU90qpPNH7WAQOcxIB1CMH
-----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-----
MIHrMFYGCSqGSIb3DQEFDTBJMDEGCSqGSIb3DQEFDDAkBBDv4uWrgqLkyseSkJER
mfA/AgIIADAMBggqhkiG9w0CCQUAMBQGCCqGSIb3DQMHBAjYh4jIxRxuuASBkKYX
FeVtbl1E/8G/aY2ZJ7wjuYiksM8gdfu4+zMfsygPKBircdd4oNCtV8po2h2kGw4q
EhPAEJZnzvgjkLOfp1/lptUenfATu5vsp/gGIOSAhlFqRk8JFxZVmQr+RqVn3GHH
HHNyCXllo6Zg5lzOxf2YS0KX7OIeo9fb5+/ePawQukCqeaZgnYtPlt8KL3nT2Q==
-----END ENCRYPTED PRIVATE KEY-----
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 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAg47z0YreQYHMRu1bugTkNblxu8Iybbm14ZRh7Jv7QWUfF6cHuJioSvfrznboaESBT3Sqk80ftYBA5zEgHUIwc="
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: 080abb014aa701d678497debf70e9a0e
sha256: 6babef21cde8907932459238a1a7a0d05534cdd07ed443a5985c8dec3396b3a9
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": "CDjvPRit5BgcxG7Vu6BOQ1uXG7wjJtubXhlGHsm_tBY",
"y": "UfF6cHuJioSvfrznboaESBT3Sqk80ftYBA5zEgHUIwc"
}
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: 080abb014aa701d678497debf70e9a0e
sha256: 6babef21cde8907932459238a1a7a0d05534cdd07ed443a5985c8dec3396b3a9