2018-12-31 00:20:07 -08:00
|
|
|
#!/usr/bin/env nomsu -V6.13.12.8
|
2018-07-15 19:41:22 -07:00
|
|
|
#
|
|
|
|
This file defines some actions for hashing files and looking up files by hash.
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-30 14:11:45 -07:00
|
|
|
use "lib/os.nom"
|
|
|
|
use "lib/base64.nom"
|
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
lua> "local \$use_sha1, \$hashlib = pcall(require, 'openssl.digest')"
|
2018-07-30 14:11:45 -07:00
|
|
|
test:
|
2018-09-14 19:17:09 -07:00
|
|
|
assume (hash "hello world") == (hash "hello world")
|
2018-12-30 19:04:34 -08:00
|
|
|
assume ((hash "hello world") != (hash "goodbye")) or barf ("
|
2018-12-14 20:21:03 -08:00
|
|
|
Hash collision:
|
2018-08-29 19:38:14 -07:00
|
|
|
(hash "hello world") = \(hash "hello world")
|
2018-12-30 19:04:34 -08:00
|
|
|
(hash "goodbye") = \(hash "goodbye")
|
|
|
|
")
|
2018-08-30 14:16:09 -07:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
assume
|
|
|
|
(
|
|
|
|
hash ("
|
2018-12-14 20:21:03 -08:00
|
|
|
This is a really long string meant to stress test the hashing function and
|
2018-12-30 19:04:34 -08:00
|
|
|
ensure that it's not overflowing with long inputs.
|
|
|
|
")
|
|
|
|
) != "inf"
|
2018-08-30 14:16:09 -07:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
assume ((hash "\000") != (hash "\000\000\000\000\000")) or barf
|
2018-12-30 23:58:47 -08:00
|
|
|
"Incorrect hashing of null strings"
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
if $use_sha1:
|
2018-08-29 19:38:14 -07:00
|
|
|
assume ((hash "hello world") == "Kq5sNclPz7QV2+lfQIuc6R7oRu0=")
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
if $use_sha1:
|
|
|
|
externally (hash $) means:
|
|
|
|
$hash = (=lua "\$hashlib.new('sha1'):final(\$)")
|
|
|
|
return (base64 $hash)
|
2018-08-29 19:38:14 -07:00
|
|
|
..else:
|
|
|
|
# TODO: remove warning?
|
2018-12-30 19:04:34 -08:00
|
|
|
say ("
|
|
|
|
\027[31;1mWARNING: OpenSSL module not found. Defaulting to a non-cryptographically secure \
|
|
|
|
..hash function.\027[0m
|
|
|
|
")
|
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally (hash $) means:
|
2018-12-30 19:04:34 -08:00
|
|
|
$bytes = ($, bytes)
|
2018-12-14 20:21:03 -08:00
|
|
|
$hash = ($bytes.1 << 7)
|
|
|
|
for $i in 2 to (size of $bytes):
|
|
|
|
$hash = ((1000003 * $hash) ~ $bytes.$i)
|
|
|
|
$hash = ($hash ~ (size of $bytes))
|
|
|
|
return "\$hash"
|
2018-07-30 14:11:45 -07:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally (file with hash $hash) means:
|
|
|
|
for $filename in (files for "."):
|
|
|
|
$contents = (read file $filename)
|
|
|
|
$file_hash = (hash $contents)
|
|
|
|
if ($file_hash == $hash):
|
|
|
|
return $filename
|
2018-02-02 15:48:28 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
(hash of file $filename) parses as (hash (read file $filename))
|