crypto-algorithms
crypto-algorithms copied to clipboard
Basic implementations of standard cryptography algorithms, like AES and SHA-1.
Results
32
crypto-algorithms issues
Sort by
recently updated
recently updated
newest added
The read from `data` is promoted to `int`, and so the left shift by 24 in `md5.c` may cause signed overflow. This requires cast to an `unsigned int`: ```diff ---...
I noticed that I can't build sha256.c and sha256.h in Windows, because `WORD` is redefined with different data types. There is no 32-bit `WORD`. A `WORD` is always 16-bit, and...