]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - noekeon/noekeon_ctr.h
fixing style, typos and uart
[avr-crypto-lib.git] / noekeon / noekeon_ctr.h
index 19cbe36446fa45b3c3f7fbfc4b49ba6ed1229c2c..73278865770a43b360521437dbdcddc21936c42d 100644 (file)
 #define NOEKEON_CTR_H_
 
 #include <stdint.h>
-#include "noekeon/noekeon.h"
+#include "noekeon.h"
 
 typedef struct{
        uint8_t counter[16];
        uint8_t key[16];
 }noekeon_ctr_ctx_t;
 
-void noekeon_ctr_next(void* buffer, const noekeon_ctr_ctx_t* ctx);
+void noekeon_ctr_next(void *buffer, const noekeon_ctr_ctx_t *ctx);
 
 #endif /*NOEKEON_CTR_H_*/