X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;ds=sidebyside;f=cscipher%2Fcscipher_tiny_asm.S;h=f912bf6c4c4344019ff3f31e1b10ddd9340ece8f;hb=1f6be6ce98d01772fbb1f4d5205a13bea896a1f1;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..f912bf6 100644 --- a/cscipher/cscipher_tiny_asm.S +++ b/cscipher/cscipher_tiny_asm.S @@ -1,7 +1,7 @@ /* cscipher_tiny_asm.S */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2006-2010 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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);