diff options
Diffstat (limited to 'rsa.h')
-rw-r--r-- | rsa.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsa.h,v 1.16 2006/03/25 22:22:43 djm Exp $ */ | 1 | /* $OpenBSD: rsa.h,v 1.17 2014/06/24 01:13:21 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -19,8 +19,8 @@ | |||
19 | #include <openssl/bn.h> | 19 | #include <openssl/bn.h> |
20 | #include <openssl/rsa.h> | 20 | #include <openssl/rsa.h> |
21 | 21 | ||
22 | void rsa_public_encrypt(BIGNUM *, BIGNUM *, RSA *); | 22 | int rsa_public_encrypt(BIGNUM *, BIGNUM *, RSA *); |
23 | int rsa_private_decrypt(BIGNUM *, BIGNUM *, RSA *); | 23 | int rsa_private_decrypt(BIGNUM *, BIGNUM *, RSA *); |
24 | void rsa_generate_additional_parameters(RSA *); | 24 | int rsa_generate_additional_parameters(RSA *); |
25 | 25 | ||
26 | #endif /* RSA_H */ | 26 | #endif /* RSA_H */ |