file-uploader-crystal/src/utils/hashing.cr
Fijxu 8995f023ac
Some checks failed
File-uploader-crystal CI / build (push) Failing after 15s
0.9.5: Rewrite
2025-04-21 00:35:29 -04:00

11 lines
230 B
Crystal

module Utils::Hashing
extend self
def hash_file(file_path : String) : String
Digest::SHA1.hexdigest &.file(file_path)
end
def hash_io(file_path : IO) : String
Digest::SHA1.hexdigest &.update(file_path)
end
end