commitmonitor Code
Monitor your SVN repositories and notifies you on new commits
Brought to you by:
steveking
File | Date | Author | Commit |
---|---|---|---|
asm | 2012-11-17 | tortoisesvn | [r779] Use %REPOROOT+% instead of just %REPOROOT% |
Makefile | 2012-03-25 | tortoisesvn | [r629] Update to OpenSSL-1.0.1 |
README | 2009-04-05 | tortoisesvn | [r386] Update to OpenSSL 0.9.8k. |
ripemd.h | 2012-03-25 | tortoisesvn | [r629] Update to OpenSSL-1.0.1 |
rmd160.c | 2007-03-12 | tortoisesvn | [r2] import first data. |
rmd_dgst.c | 2013-02-06 | tortoisesvn | [r839] Update to OpenSSL 1.0.1d |
rmd_locl.h | 2013-02-06 | tortoisesvn | [r839] Update to OpenSSL 1.0.1d |
rmd_one.c | 2007-03-12 | tortoisesvn | [r2] import first data. |
rmdconst.h | 2007-03-12 | tortoisesvn | [r2] import first data. |
rmdtest.c | 2008-10-01 | tortoisesvn | [r331] * Update to OpenSSL 0.9.8i |
RIPEMD-160 http://www.esat.kuleuven.ac.be/~bosselae/ripemd160.html This is my implementation of RIPEMD-160. The pentium assember is a little off the pace since I only get 1050 cycles, while the best is 1013. I have a few ideas for how to get another 20 or so cycles, but at this point I will not bother right now. I believe the trick will be to remove my 'copy X array onto stack' until inside the RIP1() finctions the first time round. To do this I need another register and will only have one temporary one. A bit tricky.... I can also cleanup the saving of the 5 words after the first half of the calculation. I should read the origional value, add then write. Currently I just save the new and read the origioal. I then read both at the end. Bad. eric (20-Jan-1998)