MD5/Implementation: Difference between revisions

Added link to original blog post for F# implementation.
(Updated F# implementation)
(Added link to original blog post for F# implementation.)
Line 1,312:
 
=={{header|F#}}==
Pure functional implementation (slower than library function) ([https://znprojects.blogspot.com/2017/04/md5-in-f-functionally.html]):
<lang F#>let fxyz x y z : uint32 = (x &&& y) ||| (~~~x &&& z)
let gxyz x y z : uint32 = (z &&& x) ||| (~~~z &&& y)
Anonymous user