X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=cscipher%2Fcscipher_tiny_asm.S;fp=cscipher%2Fcscipher_tiny_asm.S;h=2a4b1b1c5c991e620436a3d9ffcc0d03fbeab0f2;hp=bba78f91f65a0d459efd56b26d6f8fe49be9cc44;hb=3a9f9d918fb95474996af535c225a7e187d88372;hpb=33d65e8032f77c1cbec1bc99e898affc96966c3c diff --git a/cscipher/cscipher_tiny_asm.S b/cscipher/cscipher_tiny_asm.S index bba78f9..2a4b1b1 100644 --- a/cscipher/cscipher_tiny_asm.S +++ b/cscipher/cscipher_tiny_asm.S @@ -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);