Learn R Programming

encryptr (version 0.1.2)

decrypt: Decrypt a dataframe or tibble column using an RSA public/private key

Description

Decrypt a dataframe or tibble column using an RSA public/private key

Usage

decrypt(.data, ..., private_key_path = "id_rsa", lookup_object = NULL,
  lookup_path = NULL)

Arguments

.data

A dataframe or tibble.

...

The unquoted names of columns to decrypt.

private_key_path

Character. A quoted path to an RSA private key created using genkeys.

lookup_object

An unquote name of a lookup object in the current environment created using link{encrypt}.

lookup_path

Character. A quoted path to an RSA private key created using encrypt.

Value

The original dataframe or tibble with the specified columns decrypted.

Examples

Run this code
# NOT RUN {
library(dplyr)
gp_encrypt = gp %>%
  select(-c(name, address1, address2, address3)) %>%
  encrypt(postcode, telephone)

gp_encrypt %>%
  decrypt(postcode, telephone)
# }

Run the code above in your browser using DataLab