Add crypto.lua: hash_file + hash_string via sha256sum #8
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-lua-common#8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add
src/daw/lua/common/crypto.luawith file and string hashing viasha256sum.Functions
Implementation notes
io.popen()+sha256sum(POSIX, no external deps)hash_string: usesecho -nto avoid trailing newline"sha256:" .. hex(consistent with transaction_context hashes{})time.lua,yaml.luaDeliverables
src/daw/lua/common/crypto.luatest/test_crypto.luaReferences
Implementation: add get_raw() to http_client.lua
Needed by DAW/steurjan#16 (invoiceninja PDF download).
Without get_raw(), http_client always runs json.decode() on the response --
binary data (PDFs) comes back as a table instead of raw bytes.
Change: add M.get_raw(url, headers) -- same pattern as M.get() but skips
json.decode, returns raw string directly.
Consumers update accordingly: