X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=bmw%2Fbmw_224-tinyasm.S;h=5d5841d64d7ae6c32f96e8750185a45b0fa59197;hb=b8aa8d06134ce687993cb3148d66ebd86dbf1d6f;hp=5b3c65715abd0b23893cfe35504fe212b89481f8;hpb=794b705a0b4dedf4eab3aabcf39f76bf9856ee3f;p=avr-crypto-lib.git diff --git a/bmw/bmw_224-tinyasm.S b/bmw/bmw_224-tinyasm.S index 5b3c657..5d5841d 100644 --- a/bmw/bmw_224-tinyasm.S +++ b/bmw/bmw_224-tinyasm.S @@ -1,7 +1,7 @@ /* bmw_small-tinyasm.S */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2009 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 @@ -279,7 +279,7 @@ f0_hacktable: /******************************************************************************* -* uint32_t addelment(uint8_t j, const uint32_t* m, const uint32_t* h){ +* uint32_t addelment(uint8_t j, const uint32_t *m, const uint32_t *h){ * uint32_t r; * r = pgm_read_dword(k_lut+j); * r += rotl_addel(((uint32_t*)m)[j&0xf], j+0); @@ -1017,7 +1017,7 @@ bmw256_lastBlock: /******************************************************************************* -* void bmw224_ctx2hash(void* dest, const bmw224_ctx_t* ctx){ +* void bmw224_ctx2hash(void *dest, const bmw224_ctx_t *ctx){ * memcpy(dest, &(ctx->h[9]), 224/8); * } * @@ -1038,7 +1038,7 @@ bmw224_ctx2hash: /******************************************************************************* -* void bmw224(void* dest, const void* msg, uint32_t length_b){ +* void bmw224(void *dest, const void *msg, uint32_t length_b){ * bmw_small_ctx_t ctx; * bmw224_init(&ctx); * while(length_b>=BMW_SMALL_BLOCKSIZE){ @@ -1102,7 +1102,7 @@ bmw224: rjmp pop9 /******************************************************************************* -* void bmw224_init(bmw224_ctx_t* ctx){ +* void bmw224_init(bmw224_ctx_t *ctx){ * uint8_t i; * ctx->h[0] = 0x00010203; * for(i=1; i<16; ++i){