gaborcsardi / secret

:closed_lock_with_key: Secure sharing of sensitive information in R packages
Other
102 stars 16 forks source link

Helper for encrypting/decrypting files? #25

Open hadley opened 7 years ago

hadley commented 7 years ago

i.e. generate secure password for symmetric encryption, encrypt file using password and store the password in the vault

gaborcsardi commented 7 years ago

That's basically just secret::add_secret(value = readBin(...)) I think. I am not sure if it is worth a helper. Maybe an example in the docs is enough?