/* bigint.c */ /* This file is part of the AVR-Crypto-Lib. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de) 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /** * \file bigint.c * \author Daniel Otte * \date 2010-02-22 * * \license GPLv3 or later * */ #include "bigint.h" #include #include "bigint_io.h" #include "cli.h" #ifndef MAX #define MAX(a,b) (((a)>(b))?(a):(b)) #endif #ifndef MIN #define MIN(a,b) (((a)<(b))?(a):(b)) #endif #define SET_FBS(a, v) do{(a)->info &=0xF8; (a)->info |= (v);}while(0) #define GET_FBS(a) ((a)->info&BIGINT_FBS_MASK) #define SET_NEG(a) (a)->info |= BIGINT_NEG_MASK #define SET_POS(a) (a)->info &= ~BIGINT_NEG_MASK #define XCHG(a,b) do{(a)^=(b); (b)^=(a); (a)^=(b);}while(0) #define XCHG_PTR(a,b) do{ a = (void*)(((uint16_t)(a)) ^ ((uint16_t)(b))); \ b = (void*)(((uint16_t)(a)) ^ ((uint16_t)(b))); \ a = (void*)(((uint16_t)(a)) ^ ((uint16_t)(b)));}while(0) #define GET_SIGN(a) ((a)->info&BIGINT_NEG_MASK) /******************************************************************************/ void bigint_adjust(bigint_t* a){ while(a->length_B!=0 && a->wordv[a->length_B-1]==0){ a->length_B--; } if(a->length_B==0){ a->info=0; return; } uint8_t t; uint8_t i = 0x07; t = a->wordv[a->length_B-1]; while((t&0x80)==0 && i){ t<<=1; i--; } SET_FBS(a, i); } /******************************************************************************/ 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; } /******************************************************************************/ /* 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){ XCHG_PTR(a,b); } for(i=0; ilength_B; ++i){ t = a->wordv[i] + b->wordv[i] + t; dest->wordv[i] = (uint8_t)t; t>>=8; } for(; ilength_B; ++i){ t = a->wordv[i] + t; dest->wordv[i] = (uint8_t)t; t>>=8; } dest->wordv[i++] = t; dest->length_B = i; bigint_adjust(dest); } */ /******************************************************************************/ /* this should be implemented in assembly */ void bigint_add_scale_u(bigint_t* dest, const bigint_t* a, uint16_t scale){ uint16_t i,j=0; uint16_t t=0; if(scale>dest->length_B) memset(dest->wordv+dest->length_B, 0, scale-dest->length_B); for(i=scale; ilength_B+scale; ++i,++j){ t = a->wordv[j] + t; if(dest->length_B>i){ t += dest->wordv[i]; } dest->wordv[i] = (uint8_t)t; t>>=8; } while(t){ if(dest->length_B>i){ t = dest->wordv[i] + t; } dest->wordv[i] = (uint8_t)t; t>>=8; ++i; } if(dest->length_B < i){ dest->length_B = i; } bigint_adjust(dest); } /******************************************************************************/ /* this should be implemented in assembly */ void bigint_sub_u(bigint_t* dest, const bigint_t* a, const bigint_t* b){ int8_t borrow=0; int8_t r; int16_t t; uint16_t i, min, max; min = MIN(a->length_B, b->length_B); max = MAX(a->length_B, b->length_B); r = bigint_cmp_u(a,b); if(r==0){ dest->length_B = 0; dest->wordv[0] = 0; bigint_adjust(dest); return; } if(b->length_B==0){ dest->length_B = a->length_B; memcpy(dest->wordv, a->wordv, a->length_B); dest->info = a->info; SET_POS(dest); return; } if(a->length_B==0){ dest->length_B = b->length_B; memcpy(dest->wordv, b->wordv, b->length_B); dest->info = b->info; SET_NEG(dest); return; } if(r<0){ for(i=0; iwordv[i] - b->wordv[i] - borrow; if(t<1){ borrow = 0; dest->wordv[i]=(uint8_t)(-t); }else{ borrow = -1; dest->wordv[i]=(uint8_t)(-t); } } for(;iwordv[i] + borrow; if(t<1){ borrow = 0; dest->wordv[i]=(uint8_t)t; }else{ borrow = -1; dest->wordv[i]=(uint8_t)t; } } SET_NEG(dest); dest->length_B = i; bigint_adjust(dest); }else{ for(i=0; iwordv[i] - b->wordv[i] - borrow; if(t<0){ borrow = 1; dest->wordv[i]=(uint8_t)t; }else{ borrow = 0; dest->wordv[i]=(uint8_t)t; } } for(;iwordv[i] - borrow; if(t<0){ borrow = 1; dest->wordv[i]=(uint8_t)t; }else{ borrow = 0; dest->wordv[i]=(uint8_t)t; } } SET_POS(dest); dest->length_B = i; bigint_adjust(dest); } } /******************************************************************************/ int8_t bigint_cmp_u(const bigint_t* a, const bigint_t* b){ if(a->length_B > b->length_B){ return 1; } if(a->length_B < b->length_B){ return -1; } if(GET_FBS(a) > GET_FBS(b)){ return 1; } if(GET_FBS(a) < GET_FBS(b)){ return -1; } if(a->length_B==0){ return 0; } uint16_t i; i = a->length_B-1; do{ if(a->wordv[i]!=b->wordv[i]){ if(a->wordv[i]>b->wordv[i]){ return 1; }else{ return -1; } } }while(i--); return 0; } /******************************************************************************/ void bigint_add_s(bigint_t* dest, const bigint_t* a, const bigint_t* b){ uint8_t s; s = GET_SIGN(a)?2:0; s |= GET_SIGN(b)?1:0; switch(s){ case 0: /* both positive */ bigint_add_u(dest, a,b); SET_POS(dest); break; case 1: /* a positive, b negative */ bigint_sub_u(dest, a, b); break; case 2: /* a negative, b positive */ bigint_sub_u(dest, b, a); break; case 3: /* both negative */ bigint_add_u(dest, a, b); SET_NEG(dest); break; default: /* how can this happen?*/ break; } } /******************************************************************************/ void bigint_sub_s(bigint_t* dest, const bigint_t* a, const bigint_t* b){ uint8_t s; s = GET_SIGN(a)?2:0; s |= GET_SIGN(b)?1:0; switch(s){ case 0: /* both positive */ bigint_sub_u(dest, a,b); break; case 1: /* a positive, b negative */ bigint_add_u(dest, a, b); SET_POS(dest); break; case 2: /* a negative, b positive */ bigint_add_u(dest, a, b); SET_NEG(dest); break; case 3: /* both negative */ bigint_sub_u(dest, b, a); break; default: /* how can this happen?*/ break; } } /******************************************************************************/ int8_t bigint_cmp_s(const bigint_t* a, const bigint_t* b){ uint8_t s; s = GET_SIGN(a)?2:0; s |= GET_SIGN(b)?1:0; switch(s){ case 0: /* both positive */ return bigint_cmp_u(a, b); break; case 1: /* a positive, b negative */ return 1; break; case 2: /* a negative, b positive */ return -1; break; case 3: /* both negative */ return bigint_cmp_u(b, a); break; default: /* how can this happen?*/ break; } return 0; /* just to satisfy the compiler */ } /******************************************************************************/ void bigint_shiftleft(bigint_t* a, uint16_t shift){ uint16_t byteshift; uint16_t i; uint8_t bitshift; uint16_t t=0; byteshift = (shift+3)/8; bitshift = shift&7; memmove(a->wordv+byteshift, a->wordv, a->length_B); memset(a->wordv, 0, byteshift); if(bitshift!=0){ if(bitshift<=4){ /* shift to the left */ for(i=byteshift; ilength_B+byteshift; ++i){ t |= (a->wordv[i])<wordv[i] = (uint8_t)t; t >>= 8; } a->wordv[i] = (uint8_t)t; }else{ /* shift to the right */ bitshift = 8 - bitshift; for(i=a->length_B+byteshift-1; i>byteshift; --i){ t |= (a->wordv[i])<<(8-bitshift); a->wordv[i] = (uint8_t)(t>>8); t <<= 8; } t |= (a->wordv[i])<<(8-bitshift); a->wordv[i] = (uint8_t)(t>>8); } } a->length_B += byteshift+1; bigint_adjust(a); } /******************************************************************************/ void bigint_shiftright(bigint_t* a, uint16_t shift){ uint16_t byteshift; uint16_t i; uint8_t bitshift; uint16_t t=0; byteshift = shift/8; bitshift = shift&7; if(byteshift >= a->length_B){ /* we would shift out more than we have */ a->length_B=0; a->wordv[0] = 0; SET_FBS(a, 0); return; } if(byteshift == a->length_B-1 && bitshift>GET_FBS(a)){ a->length_B=0; a->wordv[0] = 0; SET_FBS(a, 0); return; } if(byteshift){ memmove(a->wordv, a->wordv+byteshift, a->length_B-byteshift); memset(a->wordv+a->length_B-byteshift, 0, byteshift); } if(bitshift!=0){ /* shift to the right */ for(i=a->length_B-byteshift-1; i>0; --i){ t |= (a->wordv[i])<<(8-bitshift); a->wordv[i] = (uint8_t)(t>>8); t <<= 8; } t |= (a->wordv[0])<<(8-bitshift); a->wordv[0] = (uint8_t)(t>>8); } a->length_B -= byteshift; bigint_adjust(a); } /******************************************************************************/ void bigint_xor(bigint_t* dest, const bigint_t* a){ uint16_t i; for(i=0; ilength_B; ++i){ dest->wordv[i] ^= a->wordv[i]; } bigint_adjust(dest); } /******************************************************************************/ void bigint_set_zero(bigint_t* a){ a->length_B=0; } /******************************************************************************/ /* using the Karatsuba-Algorithm */ /* x*y = (xh*yh)*b**2n + ((xh+xl)*(yh+yl) - xh*yh - xl*yl)*b**n + yh*yl */ void bigint_mul_u(bigint_t* dest, const bigint_t* a, const bigint_t* b){ if(a->length_B==0 || b->length_B==0){ bigint_set_zero(dest); depth -= 1; return; } if(a->length_B==1 || b->length_B==1){ if(a->length_B!=1){ XCHG_PTR(a,b); } uint16_t i, t=0; uint8_t x = a->wordv[0]; for(i=0; ilength_B; ++i){ t += b->wordv[i]*x; dest->wordv[i] = (uint8_t)t; t>>=8; } dest->wordv[i] = (uint8_t)t; dest->length_B=i+1; bigint_adjust(dest); return; } if(a->length_B<=4 && b->length_B<=4){ uint32_t p=0, q=0; uint64_t r; memcpy(&p, a->wordv, a->length_B); memcpy(&q, b->wordv, b->length_B); r = (uint64_t)p*(uint64_t)q; memcpy(dest->wordv, &r, a->length_B+b->length_B); dest->length_B = a->length_B+b->length_B; bigint_adjust(dest); return; } bigint_set_zero(dest); /* split a in xh & xl; split b in yh & yl */ uint16_t n; n=(MAX(a->length_B, b->length_B)+1)/2; bigint_t xl, xh, yl, yh; xl.wordv = a->wordv; yl.wordv = b->wordv; if(a->length_B<=n){ xh.info=0; xh.length_B = 0; xl.length_B = a->length_B; xl.info = 0; }else{ xl.length_B=n; xl.info = 0; bigint_adjust(&xl); xh.wordv = a->wordv+n; xh.length_B = a->length_B-n; xh.info = 0; } if(b->length_B<=n){ yh.info=0; yh.length_B = 0; yl.length_B = b->length_B; yl.info = b->info; }else{ yl.length_B=n; yl.info = 0; bigint_adjust(&yl); yh.wordv = b->wordv+n; yh.length_B = b->length_B-n; yh.info = 0; } /* now we have split up a and b */ uint8_t tmp_b[2*n+2], m_b[2*(n+1)]; bigint_t tmp, tmp2, m; /* calculate h=xh*yh; l=xl*yl; sx=xh+xl; sy=yh+yl */ tmp.wordv = tmp_b; tmp2.wordv = tmp_b+n+1; m.wordv = m_b; bigint_mul_u(dest, &xl, &yl); /* dest <= xl*yl */ bigint_add_u(&tmp2, &xh, &xl); /* tmp2 <= xh+xl */ bigint_add_u(&tmp, &yh, &yl); /* tmp <= yh+yl */ bigint_mul_u(&m, &tmp2, &tmp); /* m <= tmp*tmp */ bigint_mul_u(&tmp, &xh, &yh); /* h <= xh*yh */ bigint_sub_u(&m, &m, dest); /* m <= m-dest */ bigint_sub_u(&m, &m, &tmp); /* m <= m-h */ bigint_add_scale_u(dest, &m, n); bigint_add_scale_u(dest, &tmp, 2*n); } /******************************************************************************/ void bigint_mul_s(bigint_t* dest, const bigint_t* a, const bigint_t* b){ uint8_t s; s = GET_SIGN(a)?2:0; s |= GET_SIGN(b)?1:0; switch(s){ case 0: /* both positive */ bigint_mul_u(dest, a,b); SET_POS(dest); break; case 1: /* a positive, b negative */ bigint_mul_u(dest, a,b); SET_NEG(dest); break; case 2: /* a negative, b positive */ bigint_mul_u(dest, a,b); SET_NEG(dest); break; case 3: /* both negative */ bigint_mul_u(dest, a,b); SET_POS(dest); break; default: /* how can this happen?*/ break; } } /******************************************************************************/ /* square */ /* (xh*b^n+xl)^2 = xh^2*b^2n + 2*xh*xl*b^n + xl^2 */ void bigint_square(bigint_t* dest, const bigint_t* a){ if(a->length_B<=4){ uint64_t r=0; memcpy(&r, a->wordv, a->length_B); r = r*r; memcpy(dest->wordv, &r, 2*a->length_B); SET_POS(dest); dest->length_B=2*a->length_B; bigint_adjust(dest); return; } uint16_t n; n=(a->length_B+1)/2; bigint_t xh, xl, tmp; /* x-high, x-low, temp */ uint8_t buffer[2*n+1]; xl.wordv = a->wordv; xl.length_B = n; xh.wordv = a->wordv+n; xh.length_B = a->length_B-n; tmp.wordv = buffer; bigint_square(dest, &xl); bigint_square(&tmp, &xh); bigint_add_scale_u(dest, &tmp, 2*n); bigint_mul_u(&tmp, &xl, &xh); bigint_shiftleft(&tmp, 1); bigint_add_scale_u(dest, &tmp, n); }