2018-02-02 15:48:28 -08:00
|
|
|
use "core"
|
|
|
|
|
2018-05-24 15:33:06 -07:00
|
|
|
action [file with hash %hash]
|
|
|
|
lua> ".."
|
|
|
|
local Hash = require("openssl.digest")
|
|
|
|
for filename in io.popen('find -L . -type f -name "*.nom"'):lines() do
|
|
|
|
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-05-24 15:33:06 -07:00
|
|
|
action [hash %, sha1 %]
|
|
|
|
%hashlib <- (=lua "require('openssl.digest')")
|
|
|
|
%hash <- (=lua "\%hashlib.new('sha1'):final(\%)")
|
|
|
|
return: =lua "\%hash:gsub('.', function(c) return string.format('%02x', string.byte(c)) end)"
|
2018-02-02 15:48:28 -08:00
|
|
|
|
2018-05-24 15:33:06 -07:00
|
|
|
parse [hash of file %filename] as
|
|
|
|
sha1: =lua "io.open(\%filename):read('*a')"
|
2018-02-02 15:48:28 -08:00
|
|
|
|