X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=sha256.c;h=30ab0a53494a6aff4cb147b119c796681b264723;hb=2ef10ed48d5d396bbdaad2dcad7599e2169624f1;hp=fea934028cf43a52e553dede176c19c6a1731360;hpb=9b1bf59ca8d49db1a7495d95119c68d62b036c59;p=avr-crypto-lib.git diff --git a/sha256.c b/sha256.c index fea9340..30ab0a5 100644 --- a/sha256.c +++ b/sha256.c @@ -180,7 +180,7 @@ void sha256_lastBlock(sha256_ctx_t *state, void* block, uint16_t length){ /* * length in bits! */ -void sha256(sha256_hash_t *dest, void* msg, uint32_t length){ /* length could be choosen longer but this is for ?C */ +void sha256(sha256_hash_t *dest, void* msg, uint32_t length){ /* length could be choosen longer but this is for µC */ sha256_ctx_t s; sha256_init(&s); while(length >= SHA256_BLOCK_BITS){