Re: [R] Encrypt/decrypt in R

2010-03-20 Thread Carl Witthoft
> Hi all, > > Does any one know of any encryption/decryption algorithms in R? I'm > not looking for anything robust - I want some way of printing output > to the screen that the user can't read immediately, but can decrypt a > little later. The main thing I don't want to the user to see is a > num

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Hadley Wickham
On Fri, Mar 19, 2010 at 12:35 PM, Barry Rowlingson wrote: > On Fri, Mar 19, 2010 at 5:10 PM, Barry Rowlingson > wrote: >> On Fri, Mar 19, 2010 at 5:00 PM, Hadley Wickham wrote: >>> Hi all, >>> >>> Does any one know of any encryption/decryption algorithms in R?  I'm >>> not looking for anything r

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Barry Rowlingson
On Fri, Mar 19, 2010 at 5:10 PM, Barry Rowlingson wrote: > On Fri, Mar 19, 2010 at 5:00 PM, Hadley Wickham wrote: >> Hi all, >> >> Does any one know of any encryption/decryption algorithms in R?  I'm >> not looking for anything robust - I want some way of printing output >> to the screen that the

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Henrique Dallazuanna
Perhaps, If is there a connection with mysql: library(RMySQL) #conn <- dbConnect(...) encStr <- dbGetQuery(conn, "SELECT AES_ENCRYPT('teste', 'password')") dbGetQuery(conn, sprintf("SELECT AES_DECRYPT('%s', 'password')", encStr)) On Fri, Mar 19, 2010 at 2:00 PM, Hadley Wickham wrote: > Hi all,

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Marc Schwartz
On Mar 19, 2010, at 12:00 PM, Hadley Wickham wrote: > Hi all, > > Does any one know of any encryption/decryption algorithms in R? I'm > not looking for anything robust - I want some way of printing output > to the screen that the user can't read immediately, but can decrypt a > little later. Th

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Gabor Grothendieck
chartr? On Fri, Mar 19, 2010 at 1:00 PM, Hadley Wickham wrote: > Hi all, > > Does any one know of any encryption/decryption algorithms in R?  I'm > not looking for anything robust - I want some way of printing output > to the screen that the user can't read immediately, but can decrypt a > little

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Barry Rowlingson
On Fri, Mar 19, 2010 at 5:00 PM, Hadley Wickham wrote: > Hi all, > > Does any one know of any encryption/decryption algorithms in R?  I'm > not looking for anything robust - I want some way of printing output > to the screen that the user can't read immediately, but can decrypt a > little later.  

[R] Encrypt/decrypt in R

2010-03-19 Thread Hadley Wickham
Hi all, Does any one know of any encryption/decryption algorithms in R? I'm not looking for anything robust - I want some way of printing output to the screen that the user can't read immediately, but can decrypt a little later. The main thing I don't want to the user to see is a number, so (e.g