]> andersk Git - openssh.git/blobdiff - rsa.h
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / rsa.h
diff --git a/rsa.h b/rsa.h
index 252a910c22ba0ed33d38f9c3225f307907e6673b..b841ea4e10f9509ba469c4bc6520bc151c8fc05f 100644 (file)
--- a/rsa.h
+++ b/rsa.h
@@ -1,49 +1,26 @@
+/* $OpenBSD: rsa.h,v 1.16 2006/03/25 22:22:43 djm Exp $ */
+
 /*
- *
- * 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.
  *
-*/
-
-/* RCSID("$Id$"); */
+ * As far as I am concerned, the code I have written for this software
+ * can be used freely for any purpose.  Any derived versions of this
+ * software must be clearly marked as such, and if the derived work is
+ * incompatible with the protocol description in the RFC file, it must be
+ * called by a name other than "ssh" or "Secure Shell".
+ */
 
 #ifndef RSA_H
 #define RSA_H
 
-#include "config.h"
-
-#ifdef HAVE_OPENSSL
 #include <openssl/bn.h>
 #include <openssl/rsa.h>
-#include <openssl/rand.h>
-#endif
-
-#ifdef HAVE_SSL
-#include <ssl/bn.h>
-#include <ssl/rsa.h>
-#include <ssl/rand.h>
-#endif
-
-/* 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));
+void    rsa_public_encrypt(BIGNUM *, BIGNUM *, RSA *);
+int     rsa_private_decrypt(BIGNUM *, BIGNUM *, RSA *);
+void    rsa_generate_additional_parameters(RSA *);
 
 #endif                         /* RSA_H */
This page took 0.030703 seconds and 4 git commands to generate.