2018-08-29 15:09:35 -07:00
|
|
|
#!/usr/bin/env nomsu -V3.6.5.6
|
2018-07-15 19:41:22 -07:00
|
|
|
#
|
|
|
|
This file defines some actions for hashing files and looking up files by hash.
|
|
|
|
|
2018-07-30 14:11:45 -07:00
|
|
|
use "lib/os.nom"
|
|
|
|
use "lib/base64.nom"
|
|
|
|
|
|
|
|
%hashlib = (=lua "require('openssl.digest')")
|
|
|
|
|
|
|
|
test:
|
|
|
|
assume ((hash "hello world") == "Kq5sNclPz7QV2+lfQIuc6R7oRu0=")
|
2018-07-17 23:37:20 -07:00
|
|
|
action [hash %, sha1 %]:
|
2018-07-18 01:27:56 -07:00
|
|
|
%hash = (=lua "\%hashlib.new('sha1'):final(\%)")
|
2018-07-30 14:11:45 -07:00
|
|
|
return (base64 %hash)
|
|
|
|
|
|
|
|
action [file with hash %hash]:
|
|
|
|
for file %filename in ".":
|
|
|
|
%contents = (read file %filename)
|
|
|
|
%file_hash = (hash %contents)
|
2018-07-30 15:05:41 -07:00
|
|
|
if (%file_hash == %hash): return %filename
|
2018-02-02 15:48:28 -08:00
|
|
|
|
2018-07-30 14:11:45 -07:00
|
|
|
parse [hash of file %filename] as (sha1 (read file %filename))
|