MD5/Implementation: Difference between revisions

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