2 /* $OpenBSD: rsa.h,v 1.16 2006/03/25 22:22:43 djm Exp $ */
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * RSA key generation, encryption and decryption.
10 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
20 #include <openssl/bn.h>
21 #include <openssl/rsa.h>
23 void rsa_public_encrypt(BIGNUM
*, BIGNUM
*, RSA
*);
24 int rsa_private_decrypt(BIGNUM
*, BIGNUM
*, RSA
*);
25 void rsa_generate_additional_parameters(RSA
*);