X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/blobdiff_plain/2a1e46390831d514bb362d61dac9d0e1f534f278..HEAD:/rsa.h diff --git a/rsa.h b/rsa.h index b803b3ad..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.12 2001/06/26 06:32:58 itojun Exp $"); */ - #ifndef RSA_H #define RSA_H #include #include -void rsa_public_encrypt __P((BIGNUM *, BIGNUM *, RSA *)); -int rsa_private_decrypt __P((BIGNUM *, BIGNUM *, RSA *)); - -void generate_additional_parameters __P((RSA *)); +void rsa_public_encrypt(BIGNUM *, BIGNUM *, RSA *); +int rsa_private_decrypt(BIGNUM *, BIGNUM *, RSA *); +void rsa_generate_additional_parameters(RSA *); #endif /* RSA_H */