MD5 streaming implementation.

This commit is contained in:
Jonathan Bernard 2025-03-04 15:50:10 -06:00
parent 2d44d2c328
commit eadf3946e7
2 changed files with 40 additions and 1 deletions

View File

@ -0,0 +1,39 @@
import std/[paths, streams]
import checksums/md5
proc fileToMD5*(filename: Path) : string =
const blockSize: int = 8192 # read files in 8KB chunnks
var
c: MD5Context
d: MD5Digest
fs: FileStream
buffer: string
#read chunk of file, calling update until all bytes have been read
try:
fs = newFileStream(open($filename))
md5Init(c)
buffer = fs.readStr(blockSize)
while buffer.len > 0:
md5Update(c, buffer.cstring, buffer.len)
buffer = fs.readStr(blockSize)
md5Final(c, d)
finally:
if fs != nil:
close(fs)
result = $d
when isMainModule:
if paramCount() > 0:
let arguments = commandLineParams()
echo("MD5: ", fileToMD5(arguments[0]))
else:
echo("Must pass filename.")
quit(-1)

View File

@ -11,7 +11,7 @@ bin = @["wdiwtlt"]
# Dependencies
requires "nim >= 2.2.0"
requires @["mpv", "nimterop", "uuids", "waterpark"]
requires @["checksums", "mpv", "nimterop", "taglib", "uuids", "waterpark"]
# Dependencies from https://git.jdb-software.com/jdb/nim-packages
requires @["db_migrate", "fiber_orm"]