MD5.jl icon indicating copy to clipboard operation
MD5.jl copied to clipboard

A performant, 100% native-julia MD5 implementation

Results 2 MD5.jl issues
Sort by recently updated
recently updated
newest added

MD5 currently relies on SHA internals, including: * Unexported, undocumented functions `transform!`, `pad_remainder!`, `lrot`, `buffer_pointer`, `blocklen`, `short_blocklen`, `state_type` and `digestlen` * Unexported, undocumented type `SHA_CTX` Since Julia stdlibs are about...

Somewhere along the way performance on strings must have taken a hit: ```julia julia> data = rand(UInt8, 10^6); julia> str = String(data); julia> @time md5(data); 0.000047 seconds (6 allocations: 288...