Store and Encrypt R Objects or Files or Read and Decrypt Them
qcrypt(obj, base, service = "R-keyring-service", file)
(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.
an R object to write to disk and encrypt (if base
is specified) or the base file name to read and uncrypted (if base
is not specified). Not used when file
is given.
base file name when creating a file. Not used when file
is given.
a fairly arbitrary keyring
service name. The default is almost always OK unless you need to use different passwords for different files.
full name of file to encrypt or decrypt
Frank Harrell
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.
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.