]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-rsa-test.c
removed warnings and bugs
[avr-crypto-lib.git] / test_src / main-rsa-test.c
index fa71fe78275e34a0022df25daa3a1cde57fea264..86fb62c765083a720d44328347932237b7486155 100644 (file)
 #include "uart_i.h"
 #include "debug.h"
 
-#include "noekeon/noekeon.h"
-#include "noekeon/noekeon_prng.h"
-#include "bigint/bigint.h"
-#include "bigint/bigint_io.h"
+#include "noekeon.h"
+#include "noekeon_prng.h"
+#include "bigint.h"
+#include "bigint_io.h"
 #include "rsa.h"
 #include "rsa_key_blob.h"
 
@@ -103,7 +103,6 @@ void quick_test(void){
 
        bigint_t m,c,m_;
        uint8_t mw[rsa_ctx.modulus.length_B], cw[rsa_ctx.modulus.length_B], m_w[rsa_ctx.modulus.length_B];
-       uint8_t i;
 
        print_rsa_ctx(&rsa_ctx);
        m.wordv = mw;