Re: [ANN] Lua 5.2.0 (work5) now available
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (work5) now available
- From: Michal Kottman <k0mpjut0r@...>
- Date: 2010年11月05日 23:57:04 +0100
On Sat, 2010年11月06日 at 09:09 +1000, pj@pjb.com.au wrote:
> Greetings all,
>
> Joseph Stewart wrote:
> > source, but what can't you do with 32-bit values that you need to do?
>
> Strong encryption ?
> In block cyphers, you need lots of XOR ops, and block sizes of
> 32 bits are inherently vulnerable but 64 bits are very tough...
Not sure if it is a good idea to do encryption in pure Lua - of course
you CAN do it, but IMHO it is better to "leave it to the experts" and
use existing cryptography libraries, like OpenSSL (which even come with
cryptography hardware support). It is available in Lua through luacrypto
(http://github.com/mkottman/luacrypto - my fork which enables
cryptography routines)