Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
asm/ | 03-May-2024 | - | 675 | 553 | ||
README | D | 03-May-2024 | 780 | 16 | 13 | |
ripemd.h | D | 03-May-2024 | 4.2 KiB | 108 | 41 | |
rmd160.c | D | 03-May-2024 | 4.1 KiB | 128 | 60 | |
rmd_dgst.c | D | 03-May-2024 | 9.8 KiB | 293 | 213 | |
rmd_locl.h | D | 03-May-2024 | 5.6 KiB | 151 | 69 | |
rmd_one.c | D | 03-May-2024 | 3.6 KiB | 79 | 17 | |
rmdconst.h | D | 03-May-2024 | 8.4 KiB | 400 | 330 | |
rmdtest.c | D | 03-May-2024 | 4.9 KiB | 146 | 78 |
README
1RIPEMD-160 2http://www.esat.kuleuven.ac.be/~bosselae/ripemd160.html 3 4This is my implementation of RIPEMD-160. The pentium assember is a little 5off the pace since I only get 1050 cycles, while the best is 1013. 6I have a few ideas for how to get another 20 or so cycles, but at 7this point I will not bother right now. I believe the trick will be 8to remove my 'copy X array onto stack' until inside the RIP1() finctions the 9first time round. To do this I need another register and will only have one 10temporary one. A bit tricky.... I can also cleanup the saving of the 5 words 11after the first half of the calculation. I should read the origional 12value, add then write. Currently I just save the new and read the origioal. 13I then read both at the end. Bad. 14 15eric (20-Jan-1998) 16