X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=host%2Fgf256mul.c;fp=host%2Fgf256mul.c;h=3da67cb53fc0e6a8087124dce458aa1c702ce723;hb=b3daeff2bc9d451afc9c311034a122c6495cc1ab;hp=0000000000000000000000000000000000000000;hpb=96789d49fd89502f9c20dbc0611e401b1a417880;p=avr-crypto-lib.git diff --git a/host/gf256mul.c b/host/gf256mul.c new file mode 100644 index 0000000..3da67cb --- /dev/null +++ b/host/gf256mul.c @@ -0,0 +1,42 @@ +/* gf256mul.c */ +/* + This file is part of the Crypto-avr-lib/microcrypt-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 gf256mul.c + * \email daniel.otte@rub.de + * \author Daniel Otte + * \date 2009-01-13 + * \license GPLv3 or later + * + */ +#include +#include "gf256mul.h" + +uint8_t gf256mul(uint8_t a, uint8_t b, uint8_t reducer){ + uint8_t t,ret=0; + while(a){ + if(a&1) + ret ^= b; + t=a&0x80; + b<<=1; + if(t) + b^=reducer; + a>>=1; + } + return ret; +}