Difference between revisions of "Talk:AES PHP Implementation"
John Avium (talk | contribs) |
|||
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. [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) | 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) | ||
Is that compatible with the LSL implementation though? The reason I ended up writing this is that mcrypt appears to be incompatible with the LSL AES script, I ended up wasting so much time trying to figure out why that I just went and wrote this port of the LSL script instead. | |||
Otherwise it may be worth noting that this isn't intended for use except when encrypting/decrypting for communication with an LSL script anyway, so you shouldn't be putting more than 8kb of data through it =) -- [[User:Haravikk Mistral|Haravikk Mistral]] 15:15, 24 May 2010 (UTC) |
Revision as of 07:15, 24 May 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)
Is that compatible with the LSL implementation though? The reason I ended up writing this is that mcrypt appears to be incompatible with the LSL AES script, I ended up wasting so much time trying to figure out why that I just went and wrote this port of the LSL script instead. Otherwise it may be worth noting that this isn't intended for use except when encrypting/decrypting for communication with an LSL script anyway, so you shouldn't be putting more than 8kb of data through it =) -- Haravikk Mistral 15:15, 24 May 2010 (UTC)