add @Iceman1001 s sha1 scripting changes.

This commit is contained in:
marshmellow42 2015-05-30 21:51:15 -04:00
commit 1c4c0b0681
6 changed files with 981 additions and 6 deletions

View file

@ -394,7 +394,7 @@ int hextobinstring(char *target, char *source)
// convert binary array of 0x00/0x01 values to hex (safe to do in place as target will always be shorter than source)
// return number of bits converted
int binarraytohex(char *target, char *source, int length)
int binarraytohex(char *target,char *source, int length)
{
unsigned char i, x;
int j = length;