knitr::opts_chunk$set(echo = TRUE) knitr::opts_chunk$set(comment = "") library(openssl)
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)
To read a DER key use read_key
or read_pubkey
with der = TRUE
.
read_pubkey(bin, der = TRUE)
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)) cat(write_pem(key, password = NULL))
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"))
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)
The read_pubkey
function will automatically detect if a file contains a PEM
or SSH
key.
read_pubkey(str)
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)
Keys from jose
and openssl
are the same.
mykey <- read_jwk(json) identical(mykey, pubkey) print(mykey)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.