push
[NextIRCd.git] / src / crypt_rsa.h
1 /* crypt_rsa.h - NextIRCd
2  * Copyright (C) 2012-2013  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17
18 #ifndef _crypt_rsa_h
19 #define _crypt_rsa_h
20
21 struct crypt_rsa_pubkey;
22 struct crypt_rsa_privkey;
23
24 void crypt_init();
25 void crypt_deinit();
26
27 struct crypt_rsa_pubkey *crypt_rsa_load_pubkey(const char *key);
28 void crypt_rsa_unload_pubkey(struct crypt_rsa_pubkey *pubkey);
29 char *crypt_rsa_export_pubkey(struct crypt_rsa_pubkey *privkey);
30 struct crypt_rsa_privkey *crypt_rsa_load_privkey(const char *key);
31 struct crypt_rsa_privkey *crypt_rsa_generate_privkey(const int keysize);
32 void crypt_rsa_unload_privkey(struct crypt_rsa_privkey *privkey);
33 char *crypt_rsa_export_privkey(struct crypt_rsa_privkey *privkey, int pubkey);
34 struct crypt_rsa_pubkey *crypt_rsa_get_pubkey(struct crypt_rsa_privkey *privkey);
35
36 int crypt_rsa_encrypt_data(struct crypt_rsa_pubkey *pubkey, const unsigned char *data, int datalen, unsigned char **encrypted);
37 int crypt_rsa_decrypt_data(struct crypt_rsa_privkey *privkey, const unsigned char *encrypted, int enclen, unsigned char **data);
38 int crypt_rsa_encrypt_maxlen(struct crypt_rsa_pubkey *pubkey);
39 void crypt_rsa_encrypt_free(char *encrypted);
40 void crypt_rsa_decrypt_free(char *data);
41
42 #endif