No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / external / bsd / openssh / dist / rsa.h
blob778c5bc319160ef58e1cb5329373d346b3dca8e9
1 /* $NetBSD$ */
2 /* $OpenBSD: rsa.h,v 1.16 2006/03/25 22:22:43 djm Exp $ */
4 /*
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * All rights reserved
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".
17 #ifndef RSA_H
18 #define RSA_H
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 *);
27 #endif /* RSA_H */