encrypt_object encrypts a R object as a raw object or a string and decrypt_object decrypts a raw object or a string(encrypted by encrypt_object)

decrypt_object(object, key = "pass", pkey = NULL)

Arguments

object

Object to be decrypted

key

For symmetric decryption, 'pkey' should be NULL (default) and 'key' can be either a string (Default is 'pass') or a raw object. For asymmetric decryption, both 'key' (private key of the decrypter) and 'pkey' (public key of the encrypter) should be raw objects.

pkey

See 'key'

Value

A raw object if ascii is FALSE. A string if ascii is TRUE.

Examples

# symmetric case: temp <- encrypt_object(1:3) all( is.raw(temp) , decrypt_object(temp) == 1:3)
#> [1] TRUE
temp <- encrypt_object(iris, ascii = TRUE) all( is.character(temp) , decrypt_object(temp) == iris , identical(decrypt_object(temp), iris))
#> [1] TRUE
rm(temp) # asymmetric case: alice <- keypair() bob <- keypair() temp <- encrypt_object(1:10, alice$private_key, bob$public_key) temp2 <- decrypt_object(temp, bob$private_key, alice$public_key) identical(1:10, temp2)
#> [1] TRUE