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 number,

[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

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Barry Rowlingson
On Fri, Mar 19, 2010 at 5:00 PM, Hadley Wickham had...@rice.edu 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

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Gabor Grothendieck
chartr? On Fri, Mar 19, 2010 at 1:00 PM, Hadley Wickham had...@rice.edu 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

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. 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 had...@rice.edu wrote:

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Barry Rowlingson
On Fri, Mar 19, 2010 at 5:10 PM, Barry Rowlingson b.rowling...@lancaster.ac.uk wrote: On Fri, Mar 19, 2010 at 5:00 PM, Hadley Wickham had...@rice.edu 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

Re: [R] Encrypt/decrypt in R

2010-03-19 Thread Hadley Wickham
On Fri, Mar 19, 2010 at 12:35 PM, Barry Rowlingson b.rowling...@lancaster.ac.uk wrote: On Fri, Mar 19, 2010 at 5:10 PM, Barry Rowlingson b.rowling...@lancaster.ac.uk wrote: On Fri, Mar 19, 2010 at 5:00 PM, Hadley Wickham had...@rice.edu wrote: Hi all, Does any one know of any