MD5/Implementation: Difference between revisions

Update link to F# implementation
m (→‎{{header|Sidef}}: Fix link: Perl 6 --> Raku)
(Update link to F# implementation)
Line 1,340:
 
=={{header|F#}}==
Pure functional implementation (slower than library function) (Link to original blog [https://znprojectszakaluka.blogspotgithub.comio/2017/04/23/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