X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=bigint%2Fbigint.c;h=0ff6338031c7100f8b6ca8880eb152a514876821;hp=7004e0dc1cb6640cadcf5ec2929e8f67f75fc40c;hb=62d7d4d281af70bc2f56fb3baa86a6915e126240;hpb=548902530e99ffda615113aee335956ea92aab7c diff --git a/bigint/bigint.c b/bigint/bigint.c index 7004e0d..0ff6338 100644 --- a/bigint/bigint.c +++ b/bigint/bigint.c @@ -85,7 +85,6 @@ void bigint_copy(bigint_t* dest, const bigint_t* src){ /******************************************************************************/ /* this should be implemented in assembly */ -/* void bigint_add_u(bigint_t* dest, const bigint_t* a, const bigint_t* b){ uint16_t t=0, i; if(a->length_B < b->length_B){ @@ -105,7 +104,7 @@ void bigint_add_u(bigint_t* dest, const bigint_t* a, const bigint_t* b){ dest->length_B = i; bigint_adjust(dest); } -*/ + /******************************************************************************/ /* this should be implemented in assembly */