Difference between revisions of "Talk:AES PHP Implementation"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with 'I was benchmarking this against some other PHP AES implementations and... this implementation is actually quite slow. Took a full minute to encrypt 128K of text on my quad-core...')
 
Line 1: Line 1:
I was benchmarking this against some other PHP AES implementations and...  this implementation is actually quite slow.  Took a full minute to encrypt 128K of text on my quad-core 1.73ghz Intel Core i7.  phpseclib's Crypt_AES, in contrast, took about a second on the same computer.  And that was without mcrypt. [[User:John Avium|John Avium]] 03:46, 13 April 2010 (UTC)
I was benchmarking this against some other PHP AES implementations and...  this implementation is actually quite slow.  Took a full minute to encrypt 128K of text on my quad-core 1.73ghz Intel Core i7.  [http://phpseclib.sourceforge.net/ phpseclib's pure PHP AES implementation], in contrast, took about a second on the same computer.  And that was without mcrypt. [[User:John Avium|John Avium]] 03:46, 13 April 2010 (UTC)

Revision as of 09:19, 13 April 2010

I was benchmarking this against some other PHP AES implementations and... this implementation is actually quite slow. Took a full minute to encrypt 128K of text on my quad-core 1.73ghz Intel Core i7. phpseclib's pure PHP AES implementation, in contrast, took about a second on the same computer. And that was without mcrypt. John Avium 03:46, 13 April 2010 (UTC)