RE: Witango-Talk: encrypting into mysql

2009-11-24 Thread Robert Shubert
/decrypt actions are two-way and can be decryted provided you have the key. Rijndael (aka AES) is the current standard. Robert -Original Message- From: Roland Dumas [mailto:radu...@mac.com] Sent: Tuesday, November 24, 2009 11:48 AM To: witango-talk@witango.com Subject: Re: Witango-Talk

Re: Witango-Talk: encrypting into mysql

2009-11-24 Thread Beverly Voth
@cipher doesn't work for you? On 11/24/09 11:48 AM, Roland Dumas radu...@mac.com wrote in whole or in part: thank you. I'm ignorant about these things and need more explicit steps: how does one hash a string? There's no @hash tag in witango What if you really want the unhashed string back

Re: Witango-Talk: encrypting into mysql

2009-11-24 Thread Anthony Humphreys
All of the hashes and encryption methods are found in Witango by using the built-in Meta Tag @CIPHER. @CIPHER ACTION=action TYPE=type STR=string [KEY=key] [KEYTYPE] [ENCODING= encoding] Hashes are perfect for a password; you don't need to store the password itself, just the hash of the password.

Re: Witango-Talk: encrypting into mysql

2009-11-24 Thread Roland Dumas
thanks. that looks promising. On Nov 24, 2009, at 11:11 AM, Robert Garcia wrote: I would agree using mysql, but I think you mean use aes_crypt() aes_decrypt(), or encode decode, there is no decrypt(). So to insert a record insert into sometable ('name','somestringname') values