lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Jan 16, 2014 9:55 AM, "Daniel Silverstone" <dsilvers@digital-scurf.org> wrote:
> Lua's strings are interned and hashed.  As a result, string comparison for
> equality is pretty much constant time :)

Unless it's Lua >= 5.2 and the password is really large, like >32 bytes large. But this can be changed at compile time.

=)