blob: b803b3ad35f09d34aed05be5e3792f4c183f27ca [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * RSA key generation, encryption and decryption.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000014/* RCSID("$OpenBSD: rsa.h,v 1.12 2001/06/26 06:32:58 itojun Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#ifndef RSA_H
17#define RSA_H
18
19#include <openssl/bn.h>
20#include <openssl/rsa.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000022void rsa_public_encrypt __P((BIGNUM *, BIGNUM *, RSA *));
23int rsa_private_decrypt __P((BIGNUM *, BIGNUM *, RSA *));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000025void generate_additional_parameters __P((RSA *));
Ben Lindstromd09fcf52001-03-29 00:29:54 +000026
Damien Miller95def091999-11-25 00:26:21 +110027#endif /* RSA_H */