blob: c476707d53b8d927972af7382bd249fa419462b2 [file] [log] [blame]
Damien Miller86687062014-07-02 15:28:02 +10001/* $OpenBSD: rsa.h,v 1.17 2014/06/24 01:13:21 djm Exp $ */
Ben Lindstrom05764b92002-03-05 01:53:02 +00002
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003/*
Damien Miller95def091999-11-25 00:26:21 +11004 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11005 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11007 * RSA key generation, encryption and decryption.
Damien Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * 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 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016#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 Miller86687062014-07-02 15:28:02 +100022int rsa_public_encrypt(BIGNUM *, BIGNUM *, RSA *);
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000023int rsa_private_decrypt(BIGNUM *, BIGNUM *, RSA *);
Damien Miller86687062014-07-02 15:28:02 +100024int rsa_generate_additional_parameters(RSA *);
Ben Lindstromd09fcf52001-03-29 00:29:54 +000025
Damien Miller95def091999-11-25 00:26:21 +110026#endif /* RSA_H */