diff options
author | tb <> | 2022-01-07 09:35:36 +0000 |
---|---|---|
committer | tb <> | 2022-01-07 09:35:36 +0000 |
commit | 842e79ce2b3a53daefa413bee5287b22d37edba6 (patch) | |
tree | 7b30343db9ea87bd73fea106a4f2c20ece28fd40 /src/lib/libcrypto/dsa/dsa_sign.c | |
parent | 5da5c83c108c6006c6a5f1191036b26958cb8ad7 (diff) | |
download | openbsd-842e79ce2b3a53daefa413bee5287b22d37edba6.tar.gz openbsd-842e79ce2b3a53daefa413bee5287b22d37edba6.tar.bz2 openbsd-842e79ce2b3a53daefa413bee5287b22d37edba6.zip |
Prepare the move of DSA_SIG, DSA_METHOD and DSA to dsa_locl.h by
including the local header where it will be needed.
discussed with jsing
Diffstat (limited to 'src/lib/libcrypto/dsa/dsa_sign.c')
-rw-r--r-- | src/lib/libcrypto/dsa/dsa_sign.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/dsa/dsa_sign.c b/src/lib/libcrypto/dsa/dsa_sign.c index 0f55ea1868..b1fc1dbb49 100644 --- a/src/lib/libcrypto/dsa/dsa_sign.c +++ b/src/lib/libcrypto/dsa/dsa_sign.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dsa_sign.c,v 1.20 2018/06/14 17:01:49 jsing Exp $ */ | 1 | /* $OpenBSD: dsa_sign.c,v 1.21 2022/01/07 09:35:36 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -61,6 +61,8 @@ | |||
61 | #include <openssl/bn.h> | 61 | #include <openssl/bn.h> |
62 | #include <openssl/dsa.h> | 62 | #include <openssl/dsa.h> |
63 | 63 | ||
64 | #include "dsa_locl.h" | ||
65 | |||
64 | DSA_SIG * | 66 | DSA_SIG * |
65 | DSA_do_sign(const unsigned char *dgst, int dlen, DSA *dsa) | 67 | DSA_do_sign(const unsigned char *dgst, int dlen, DSA *dsa) |
66 | { | 68 | { |