diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-09-25 21:57:54 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-09-25 21:57:54 +0000 |
commit | ba94d0cea3d853d19732f64a17cd6207dc85ad5f (patch) | |
tree | 38b022cfba11bdd4a90667961e31cfc475ffc7c3 /crypto/openssh/rsa.h | |
parent | 2641b0c407077fa8c3032d87d15ac6a103b0ed1b (diff) |
Diffstat (limited to 'crypto/openssh/rsa.h')
-rw-r--r-- | crypto/openssh/rsa.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/crypto/openssh/rsa.h b/crypto/openssh/rsa.h deleted file mode 100644 index 878e9b0ddced..000000000000 --- a/crypto/openssh/rsa.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * - * rsa.h - * - * Author: Tatu Ylonen <ylo@cs.hut.fi> - * - * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland - * All rights reserved - * - * Created: Fri Mar 3 22:01:06 1995 ylo - * - * RSA key generation, encryption and decryption. - * - * $FreeBSD$ -*/ - -/* RCSID("$Id: rsa.h,v 1.6 2000/04/14 10:30:32 markus Exp $"); */ - -#ifndef RSA_H -#define RSA_H - -#include <openssl/bn.h> -#include <openssl/rsa.h> - -/* Calls SSL RSA_generate_key, only copies to prv and pub */ -void rsa_generate_key(RSA * prv, RSA * pub, unsigned int bits); - -/* - * Indicates whether the rsa module is permitted to show messages on the - * terminal. - */ -void rsa_set_verbose __P((int verbose)); - -int rsa_alive __P((void)); - -void rsa_public_encrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv)); -void rsa_private_decrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv)); - -#endif /* RSA_H */ |