RIPEMD-160: Difference between revisions

Added comments
(Added C section)
(Added comments)
Line 28:
#if RMDsize == 128
#include "rmd128.h"
'''#include "rmd128.c"''' /* Added to remove errors during compilation */
#elif RMDsize == 160
#include "rmd160.h"
'''#include "rmd160.c"''' /* Added to remove errors during compilation */
#endif
 
Line 125:
 
And yes, all of this was done on a Raspberry Pi 4B with 4 GB RAM, which I suspect is more powerful than the system(s) on which RIPEMD-160 was initially designed and tested.
 
=={{header|C sharp|C#}}==
<lang csharp>using System;
503

edits