]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - cscipher/cscipher_small.c
switching to BCAL based nessie testing
[avr-crypto-lib.git] / cscipher / cscipher_small.c
index 9cec6e8a4b3ab132823a851dc6b806a791d5cf1b..9e8b297f7598154b7fc778806699b34e20a4dceb 100644 (file)
@@ -146,7 +146,7 @@ void cscipher_dec(void* buffer, const cscipher_ctx_t* ctx){
        }while(i--);
 }
 
-void cscipher_init(void* key, cscipher_ctx_t* ctx){
+void cscipher_init(const void* key, cscipher_ctx_t* ctx){
        uint8_t tmp_key[16], tmp[8];
        uint8_t i,j,k,t;
        memcpy(tmp_key, key, 16);