Hello,
Functions from sha.c doesn't work properly on 64-bit architecture, because
there is used 'unsigned long' (which is 8-bytes long on 64 and 4-bytes on
32). The way to repair it is to use uint32_t (from stdint.h) instead of
unsigned long. I simply replaced all occurences of 'unsigned long' with
'uint32_t' and now library seems working ok.
Original issue reported on code.google.com by sma...@gmail.com on 23 Jul 2007 at 9:01
Original issue reported on code.google.com by
sma...@gmail.com
on 23 Jul 2007 at 9:01