X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=bigint%2Fbigint_adjust.S;h=b5079b72a2a3fa52c8e620eb8ee8a6ea4c5cc2e1;hp=56ff2a1e5c655953064bc7e3cf1f5912608d6b15;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=0ce5b31e9772c15cd1514e371a59f04e3a888111 diff --git a/bigint/bigint_adjust.S b/bigint/bigint_adjust.S index 56ff2a1..b5079b7 100644 --- a/bigint/bigint_adjust.S +++ b/bigint/bigint_adjust.S @@ -1,7 +1,7 @@ /* bigint_adjust.S */ /* This file is part of the ARM-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 @@ -18,7 +18,7 @@ */ /* -void bigint_adjust(bigint_t* a){ +void bigint_adjust(bigint_t *a){ while(a->length_B!=0 && a->wordv[a->length_B-1]==0){ a->length_B--; } @@ -76,7 +76,7 @@ bigint_adjust_ret: ret /* -void bigint_copy(bigint_t* dest, const bigint_t* src){ +void bigint_copy(bigint_t *dest, const bigint_t *src){ memcpy(dest->wordv, src->wordv, src->length_B); dest->length_B = src->length_B; dest->info = src->info;