]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - twister-small.c
new AES in C, happy new year
[avr-crypto-lib.git] / twister-small.c
index 2f46af02be237504a41561b3959e13743049075b..44212859a0bf4d7a82081b3e8654f406c89c63be 100644 (file)
@@ -53,7 +53,6 @@ void twister_small_nextBlock(twister_state_t* ctx, void* msg){
 
 void twister_small_lastBlock(twister_state_t* ctx, void* msg, uint16_t length_b){
        uint8_t tmp[64];        
-       uint8_t i;
        while(length_b>512){
                twister_small_nextBlock(ctx, msg);
                msg = ((uint8_t*)msg)+64;