diff options
Diffstat (limited to 'rsa.c')
-rw-r--r-- | rsa.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsa.c,v 1.27 2006/07/22 20:48:23 stevesk Exp $ */ | 1 | /* $OpenBSD: rsa.c,v 1.28 2006/08/03 03:34:42 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -62,11 +62,13 @@ | |||
62 | 62 | ||
63 | #include "includes.h" | 63 | #include "includes.h" |
64 | 64 | ||
65 | #include <sys/types.h> | ||
66 | |||
65 | #include <string.h> | 67 | #include <string.h> |
66 | 68 | ||
69 | #include "xmalloc.h" | ||
67 | #include "rsa.h" | 70 | #include "rsa.h" |
68 | #include "log.h" | 71 | #include "log.h" |
69 | #include "xmalloc.h" | ||
70 | 72 | ||
71 | void | 73 | void |
72 | rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *key) | 74 | rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *key) |