2018-07-25 13:49:17 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.5.5.4
|
2018-07-15 19:41:22 -07:00
|
|
|
#
|
|
|
|
This file defines some actions for hashing files and looking up files by hash.
|
|
|
|
|
2018-07-17 23:37:20 -07:00
|
|
|
action [file with hash %hash]:
|
2018-05-24 15:33:06 -07:00
|
|
|
lua> ".."
|
|
|
|
local Hash = require("openssl.digest")
|
2018-05-24 16:13:23 -07:00
|
|
|
for filename in io.popen('find -L . -not -path "*/\\\\.*" -type f -name "*.nom"'):lines() do
|
2018-05-24 15:33:06 -07:00
|
|
|
local file = io.open(filename)
|
|
|
|
local contents = file:read("*a")
|
|
|
|
file:close()
|
|
|
|
local hash = Hash.new("sha1"):final(contents)
|
|
|
|
local hex = hash:gsub('.', function(c) return string.format('%02x', string.byte(c)) end)
|
|
|
|
if hex == \%hash then
|
|
|
|
return filename
|
2018-02-02 15:48:28 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-17 23:37:20 -07:00
|
|
|
action [hash %, sha1 %]:
|
2018-07-18 01:27:56 -07:00
|
|
|
%hashlib = (=lua "require('openssl.digest')")
|
|
|
|
%hash = (=lua "\%hashlib.new('sha1'):final(\%)")
|
2018-07-17 23:37:20 -07:00
|
|
|
return (..)
|
2018-07-20 20:27:15 -07:00
|
|
|
=lua ".."
|
|
|
|
\%hash:gsub('.', function(c) return string.format('%02x', string.byte(c)) end)
|
2018-02-02 15:48:28 -08:00
|
|
|
|
2018-07-22 15:01:05 -07:00
|
|
|
parse [hash of file %filename] as (sha1 (=lua "io.open(\%filename):read('*a')"))
|