crypto-algorithms.c

Basic implementations of standard cryptography algorithms, like AES and SHA-1
git clone git://git.finwo.net/lib/crypto-algorithms.c
Log | Files | Refs | README

commit cfbde48414baacf51fc7c74f275190881f037d32
parent fb753a91706e3d4ec2e6275be6deb6e91d03d95c
Author: Brad Conte <brad@bradconte.com>
Date:   Sun, 26 Apr 2015 20:50:49 -0700

Fixed typo in log string.

Diffstat:
Msha256_test.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sha256_test.c b/sha256_test.c @@ -55,7 +55,7 @@ int sha256_test() int main() { - printf("SHA-256 tests: %s\n", sha256_test() ? "SUCCEEDED" : "FAILEd"); + printf("SHA-256 tests: %s\n", sha256_test() ? "SUCCEEDED" : "FAILED"); return(0); }