]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/wpa/src/tls/rsa.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / wpa / src / tls / rsa.h
1 /*
2  * RSA
3  * Copyright (c) 2006, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #ifndef RSA_H
10 #define RSA_H
11
12 struct crypto_rsa_key;
13
14 struct crypto_rsa_key *
15 crypto_rsa_import_public_key(const u8 *buf, size_t len);
16 struct crypto_rsa_key *
17 crypto_rsa_import_private_key(const u8 *buf, size_t len);
18 size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key);
19 int crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen,
20                        struct crypto_rsa_key *key, int use_private);
21 void crypto_rsa_free(struct crypto_rsa_key *key);
22
23 #endif /* RSA_H */