openssl (version 0.9.6)

my_key: Default keypair

Description

Set a default keypair via USER_KEY and USER_PUKBEY variables.

Usage

my_key()

my_pubkey()

Arguments

Details

The my_key() function checks environment variable USER_KEY for a path to a private keyfile. If unset it defaults to "~/.ssh/id_rsa".

The my_pubkey() function first tries USER_PUBKEY and if unset it checks for USER_KEY to derive the corresponding pubkey. If both are unset it defaults to "~/.ssh/id_rsa.pub".

Examples

Run this code
# NOT RUN {
# Set random RSA key as default
key <- rsa_keygen()
write_pem(key, tmp <- tempfile(), password = "")
rm(key)
Sys.setenv("USER_KEY" = tmp)

# Check the new keys
print(my_key())
print(my_pubkey())
# }

Run the code above in your browser using DataCamp Workspace