]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - cscipher/cscipher_tiny_asm.S
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / cscipher / cscipher_tiny_asm.S
index bba78f91f65a0d459efd56b26d6f8fe49be9cc44..f912bf6c4c4344019ff3f31e1b10ddd9340ece8f 100644 (file)
@@ -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);