X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/blobdiff_plain/457fc0c69f1e0e9c913ed903bf7be04380a1f84e..7f24626bd8b952e65394adf5f99bced26251b2ce:/rsa.h diff --git a/rsa.h b/rsa.h index d3d2c996..b841ea4e 100644 --- a/rsa.h +++ b/rsa.h @@ -1,3 +1,5 @@ +/* $OpenBSD: rsa.h,v 1.16 2006/03/25 22:22:43 djm Exp $ */ + /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -11,17 +13,14 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* RCSID("$OpenBSD: rsa.h,v 1.11 2001/03/26 23:23:24 markus Exp $"); */ - #ifndef RSA_H #define RSA_H #include #include -void rsa_public_encrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv)); -int rsa_private_decrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv)); - -void generate_additional_parameters __P((RSA *rsa)); +void rsa_public_encrypt(BIGNUM *, BIGNUM *, RSA *); +int rsa_private_decrypt(BIGNUM *, BIGNUM *, RSA *); +void rsa_generate_additional_parameters(RSA *); #endif /* RSA_H */