qcrypt | R Documentation |
Store and Encrypt R Objects or Files or Read and Decrypt Them
qcrypt(obj, base, service = "R-keyring-service", file)
obj |
an R object to write to disk and encrypt (if |
base |
base file name when creating a file. Not used when |
service |
a fairly arbitrary |
file |
full name of file to encrypt or decrypt |
qcrypt
is used to protect sensitive information on a user's computer or when transmitting a copy of the file to another R user. Unencrypted information only exists for a moment, and the encryption password does not appear in the user's script but instead is managed by the keyring
package to remember the password across R sessions, and the getPass
package, which pops up a password entry window and does not allow the password to be visible. The password is requested only once, except perhaps when the user logs out of their operating system session or reboots.
The keyring can be bypassed and the password entered in a popup window by specifying service=NA
. This is the preferred approach when sending an encrypted file to a user on a different computer.
qcrypt
writes R objects to disk in a temporary file using the qs
package qsave
function. The file is quickly encrypted using the safer
package, and the temporary unencrypted qs
file is deleted. When reading an encrypted file the process is reversed.
To save an object in an encrypted file, specify the object as the first argument obj
and specify a base file name as a character string in the second argument base
. The full qs
file name will be of the form base.qs.encrypted
in the user's current working directory. To unencrypt the file into a short-lived temporary file and use qs::qread
to read it, specify the base file name as a character string with the first argument, and do not specify the base
argument.
Alternatively, qcrypt
can be used to encrypt or decrypt existing files of any type using the same password and keyring mechanism. The former is done by specifying file
that does not end in '.encrypted'
and the latter is done by ending file
with '.encrypted'
. When file
does not contain a path it is assumed to be in the current working directory. When a file is encrypted the original file is removed. Files are decrypted into a temporary directory created by tempdir()
, with the name of the file being the value of file
with '.encrypted'
removed.
Interactive password provision works when running R
, Rscript
, RStudio
, or Quarto
but does not work when running R CMD BATCH
. getPass
fails under RStudio
on Macs.
See R Workflow for more information.
(invisibly) the full encrypted file name if writing the file, or the restored R object if reading the file. When decrypting a general file with file=
, the returned value is the full path to a temporary file containing the decrypted data.
Frank Harrell
## Not run:
# Suppose x is a data.table or data.frame
# The first time qcrypt is run with a service a password will
# be requested. It will be remembered across sessions thanks to
# the keyring package
qcrypt(x, 'x') # creates x.qs.encrypted in current working directory
x <- qcrypt('x') # unencrypts x.qs.encrypted into a temporary
# directory, uses qs::qread to read it, and
# stores the result in x
# Encrypt a general file using a different password
qcrypt(file='report.pdf', service='pdfkey')
# Decrypt that file
fi <- qcrypt(file='report.pdf.encrypted', service='pdfkey')
fi contains the full unencrypted file name which is in a temporary directory
# Encrypt without using a keyring
qcrypt(x, 'x', service=NA)
x <- qcrypt('x', service=NA)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.