]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - cscipher/cscipher_tiny_asm.S
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / cscipher / cscipher_tiny_asm.S
index bba78f91f65a0d459efd56b26d6f8fe49be9cc44..2a4b1b1c5c991e620436a3d9ffcc0d03fbeab0f2 100644 (file)
@@ -164,7 +164,7 @@ round_const:
 .byte  0xbf, 0x71, 0x58, 0x80, 0x9c, 0xf4, 0xf3, 0xc7
 
 /*
-void cscipher_enc(void* buffer, const cscipher_ctx_t* ctx){
+void cscipher_enc(void *buffer, const cscipher_ctx_t *ctx){
        uint8_t i,j,k;
        uint8_t tmp[8];
        for(i=0; i<8; ++i){
@@ -288,7 +288,7 @@ cscipher_enc:
        rjmp memxor
 
 /*
-void cscipher_dec(void* buffer, const cscipher_ctx_t* ctx){
+void cscipher_dec(void *buffer, const cscipher_ctx_t *ctx){
        uint8_t i=7,j,k;
        uint8_t tmp[8];
        memxor(buffer, ctx->keys[8], 8);