1/* $OpenBSD: rsa.h,v 1.16 2006/03/25 22:22:43 djm Exp $ */
2
3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 *                    All rights reserved
7 * RSA key generation, encryption and decryption.
8 *
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose.  Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 */
15
16#ifndef RSA_H
17#define RSA_H
18
19#ifdef __APPLE_CRYPTO__
20#include "ossl-bn.h"
21#include "ossl-rsa.h"
22#else
23#include <openssl/bn.h>
24#include <openssl/rsa.h>
25#endif
26
27void	 rsa_public_encrypt(BIGNUM *, BIGNUM *, RSA *);
28int	 rsa_private_decrypt(BIGNUM *, BIGNUM *, RSA *);
29void	 rsa_generate_additional_parameters(RSA *);
30
31#endif				/* RSA_H */
32