[google-appengine] Re: bcrypt on google app engine

2009-06-16 Thread gae123
Mike, this is great news and thanks for the clarification. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com To

[google-appengine] Re: bcrypt on google app engine

2009-06-15 Thread Kless
I recommend you bcryptor [1] since that its wrapper has been made using Pyrex (so it's more easy to maintain), and since that the C source code has been changed the just minimal for that it uses the system's PRNG. [1] http://www.bitbucket.org/ares/bcryptor/ On 11 jun, 09:09, Karl

[google-appengine] Re: bcrypt on google app engine

2009-06-15 Thread Mike Wiacek
PyCrypto on App Engine is backed by native code when using symmetric ciphers such as AES, 3DES, DES, and so on. Public key crypto components of PyCrypto are pure python. ..mike On Sat, Jun 13, 2009 at 2:25 PM, gae123 pa...@gae123.com wrote: Thanks Barry. I updated issue

[google-appengine] Re: bcrypt on google app engine

2009-06-12 Thread gae123
Nick, if I understand correctly the pycrypto implementation is in Python and I have found this very slow in the past. Are there any plans for support for a native/C based encryption library? Thanks On Jun 11, 2:11 am, Nick Johnson (Google) nick.john...@google.com wrote: Hi Karl, I'm not

[google-appengine] Re: bcrypt on google app engine

2009-06-12 Thread Barry Hunter
On 12/06/2009, gae123 pa...@gae123.com wrote: Nick, if I understand correctly the pycrypto implementation is in Python and I have found this very slow in the past. Are there any plans for support for a native/C based encryption library? Check the issue tracker, and add a suggestion if

[google-appengine] Re: bcrypt on google app engine

2009-06-11 Thread Nick Johnson (Google)
Hi Karl, I'm not aware of any pure-Python implementations of bcrypt. However, pycrypto is supported on App Engine, which supports many of the same operations and algorithms. -Nick Johnson On Thu, Jun 11, 2009 at 10:09 AM, Karl kp8...@gmail.com wrote: Are there any implementations of bcrypt