]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/CyaSSL/cyassl/ctaocrypt/rsa.h
70e3fcd1a5c47a4ca5ab591ec3545cf5781589fc
[freertos] / FreeRTOS-Plus / Source / CyaSSL / cyassl / ctaocrypt / rsa.h
1 /* rsa.h
2  *
3  * Copyright (C) 2006-2012 Sawtooth Consulting Ltd.
4  *
5  * This file is part of CyaSSL.
6  *
7  * CyaSSL is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * CyaSSL is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20  */
21
22
23 #ifndef CTAO_CRYPT_RSA_H
24 #define CTAO_CRYPT_RSA_H
25
26 #include <cyassl/ctaocrypt/types.h>
27 #include <cyassl/ctaocrypt/integer.h>
28 #include <cyassl/ctaocrypt/random.h>
29
30 #ifdef __cplusplus
31     extern "C" {
32 #endif
33
34
35 enum {
36     RSA_PUBLIC   = 0,
37     RSA_PRIVATE  = 1
38 };
39
40 /* RSA */
41 typedef struct RsaKey {
42     mp_int n, e, d, p, q, dP, dQ, u;
43     int   type;                               /* public or private */
44     void* heap;                               /* for user memory overrides */
45 } RsaKey;
46
47
48 CYASSL_API void InitRsaKey(RsaKey* key, void*);
49 CYASSL_API void FreeRsaKey(RsaKey* key);
50
51 CYASSL_API int  RsaPublicEncrypt(const byte* in, word32 inLen, byte* out,
52                                  word32 outLen, RsaKey* key, RNG* rng);
53 CYASSL_API int  RsaPrivateDecryptInline(byte* in, word32 inLen, byte** out,
54                                         RsaKey* key);
55 CYASSL_API int  RsaPrivateDecrypt(const byte* in, word32 inLen, byte* out,
56                                   word32 outLen, RsaKey* key);
57 CYASSL_API int  RsaSSL_Sign(const byte* in, word32 inLen, byte* out,
58                             word32 outLen, RsaKey* key, RNG* rng);
59 CYASSL_API int  RsaSSL_VerifyInline(byte* in, word32 inLen, byte** out,
60                                     RsaKey* key);
61 CYASSL_API int  RsaSSL_Verify(const byte* in, word32 inLen, byte* out,
62                               word32 outLen, RsaKey* key);
63 CYASSL_API int  RsaEncryptSize(RsaKey* key);
64
65 CYASSL_API int RsaPrivateKeyDecode(const byte* input, word32* inOutIdx, RsaKey*,
66                                    word32);
67 CYASSL_API int RsaPublicKeyDecode(const byte* input, word32* inOutIdx, RsaKey*,
68                                   word32);
69 #ifdef CYASSL_KEY_GEN
70     CYASSL_API int MakeRsaKey(RsaKey* key, int size, long e, RNG* rng);
71     CYASSL_API int RsaKeyToDer(RsaKey*, byte* output, word32 inLen);
72 #endif
73
74
75
76 #ifdef __cplusplus
77     } /* extern "C" */
78 #endif
79
80 #endif /* CTAO_CRYPT_RSA_H */
81