X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=bigint%2Fbigint.c;h=0ff6338031c7100f8b6ca8880eb152a514876821;hb=69d6349f8ad9d35c2acdb4e4e38ad42cd28b426c;hp=7004e0dc1cb6640cadcf5ec2929e8f67f75fc40c;hpb=c9c11514d91b8c19f77d65ac051b998bd99048b0;p=avr-crypto-lib.git 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 */