]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - sha256.c
added sha1 in C and AVR-ASM
[avr-crypto-lib.git] / sha256.c
index fea934028cf43a52e553dede176c19c6a1731360..30ab0a53494a6aff4cb147b119c796681b264723 100644 (file)
--- 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){