00001 00016 #ifndef RSA_H 00017 #define RSA_H 00018 00019 struct crypto_rsa_key; 00020 00021 struct crypto_rsa_key * 00022 crypto_rsa_import_public_key(const u8 *buf, size_t len); 00023 struct crypto_rsa_key * 00024 crypto_rsa_import_private_key(const u8 *buf, size_t len); 00025 size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key); 00026 int crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, 00027 struct crypto_rsa_key *key, int use_private); 00028 void crypto_rsa_free(struct crypto_rsa_key *key); 00029 00030 #endif /* RSA_H */ 00031