> 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
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
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
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,
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
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
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.
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
8 matches
Mail list logo