blob: d3d2c996427c071c8c338d2ab3f98a540813ff8a [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 Lindstromd09fcf52001-03-29 00:29:54 +000014/* RCSID("$OpenBSD: rsa.h,v 1.11 2001/03/26 23:23:24 markus 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
Damien Miller95def091999-11-25 00:26:21 +110022void rsa_public_encrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv));
Damien Miller7650bc62001-01-30 09:27:26 +110023int rsa_private_decrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024
Ben Lindstromd09fcf52001-03-29 00:29:54 +000025void generate_additional_parameters __P((RSA *rsa));
26
Damien Miller95def091999-11-25 00:26:21 +110027#endif /* RSA_H */