diff options
author | william <william@25thandclement.com> | 2015-02-25 15:04:32 -0800 |
---|---|---|
committer | william <william@25thandclement.com> | 2015-02-25 15:04:32 -0800 |
commit | 978fce0097361adfe473c033d7d61878e73c072a (patch) | |
tree | d3442576548636ce8d54d8896106b51648c43c4f /examples | |
parent | 7dce9c391259f1b72f949f73ac1604d6fcb79fdd (diff) | |
download | luaossl-978fce0097361adfe473c033d7d61878e73c072a.tar.gz luaossl-978fce0097361adfe473c033d7d61878e73c072a.tar.bz2 luaossl-978fce0097361adfe473c033d7d61878e73c072a.zip |
fix argument handling bug in lm.hash example
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/lm.hash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/lm.hash b/examples/lm.hash index 4d8157c..b71b606 100755 --- a/examples/lm.hash +++ b/examples/lm.hash @@ -68,4 +68,4 @@ end -- tohex local pass = ... or "passphrase" -print(pass, tohex(lm_hash(... or "passphrase"))) +print(pass, tohex(lm_hash(pass))) |