X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=cscipher%2Fcscipher_tiny_asm.S;h=2a4b1b1c5c991e620436a3d9ffcc0d03fbeab0f2;hb=c26c0ae7602db9d3b2d7baf6ae6fc9639539ad02;hp=bba78f91f65a0d459efd56b26d6f8fe49be9cc44;hpb=0542221a3e793e4455e84b271b07aa0959d5dfb3;p=avr-crypto-lib.git 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);