X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=ecdsa%2Fnist_p192.h;fp=ecdsa%2Fnist_p192.h;h=9959bd86f0fed3cf01092e1e67eb3113284431b1;hb=32705e6283b34dd709dc8fafdf5c3e32d6a944a1;hp=0000000000000000000000000000000000000000;hpb=7edc452f9303d020656a094a465a3f45cacf8587;p=avr-crypto-lib.git diff --git a/ecdsa/nist_p192.h b/ecdsa/nist_p192.h new file mode 100644 index 0000000..9959bd8 --- /dev/null +++ b/ecdsa/nist_p192.h @@ -0,0 +1,28 @@ +/* nist_p192.h */ +/* + This file is part of the AVR-Crypto-Lib. + Copyright (C) 2012 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 . +*/ + +#ifndef NIST_P192_H_ +#define NIST_P192_H_ + +#include "bigint.h" + +extern bigint_t nist_curve_p192_p; +int bigint_reduce_p192(bigint_t *a); + +#endif /* NIST_P192_H_ */