Working with sensitive data
Moderator:Jouni (see all) |
|
Upload data
|
Question
How to work with data that has sensitive parts?
Moderator:Jouni (see all) |
|
Upload data
|
How to work with data that has sensitive parts?
library(OpasnetUtils) cat(paste("The table has", nrow(table), "rows and", ncol(table), "columns with names...\n", sep = " ")) oprint(table[1, ]) etable <- objects.encode(table, password) objects.put(etable) cat("The table has been encrypted and saved with name etable. Please write down the key of the run and your password, otherwise you will not be able to retrieve your data.\nDO NOT REMOVE THIS RUN, JUST CLOSE THE BROWSER WINDOW. Otherwise you will permanently remove your encrypted table.\n") |
library(OpasnetUtils) objects.get(token) table <- objects.decode(etable, password) oprint(table) |