]> git.cryptolib.org Git - avr-crypto-lib.git/blob - rsa/rsa.h
2d5c7729ee55736547dc8a84baee99e56e6cb536
[avr-crypto-lib.git] / rsa / rsa.h
1 /* rsa.h */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2010 Daniel Otte (daniel.otte@rub.de)
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef RSA_H_
21 #define RSA_H_
22
23 #include <stdint.h>
24 #include "hfal/hfal-basic.h"
25 #include "bigint/bigint.h"
26
27
28 typedef bigint_t rsa_modulus_t;
29 typedef bigint_t rsa_pubexp_t;
30 typedef bigint_t rsa_privexp_t;
31
32 typedef struct{
33         rsa_modulus_t modulus;
34         rsa_pubexp_t  pubexp;
35         rsa_privexp_t privexp;
36 } rsa_ctx_t;
37
38
39 uint8_t rsa_enc_bigint(bigint_t* c, const bigint_t* m,
40                                 const rsa_ctx_t* ctx);
41 uint8_t rsa_dec_bigint(bigint_t* m, const bigint_t* c,
42                                 const rsa_ctx_t* ctx);
43
44 #endif /* RSA_H_ */