summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ecdsa
diff options
context:
space:
mode:
authortb <>2022-06-30 11:14:47 +0000
committertb <>2022-06-30 11:14:47 +0000
commit727d040aad78fde5a0f1d575255736d37d0c721c (patch)
tree9d33f37718333e8e9e8f5ec14186695caf8ef529 /src/lib/libcrypto/ecdsa
parenta707633f86eb12772b7456b15ec5b8a8bca018c9 (diff)
downloadopenbsd-727d040aad78fde5a0f1d575255736d37d0c721c.tar.gz
openbsd-727d040aad78fde5a0f1d575255736d37d0c721c.tar.bz2
openbsd-727d040aad78fde5a0f1d575255736d37d0c721c.zip
Replace obj_mac.h with object.h
Pointed out by and ok jsing
Diffstat (limited to 'src/lib/libcrypto/ecdsa')
-rw-r--r--src/lib/libcrypto/ecdsa/ecs_ossl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ecdsa/ecs_ossl.c b/src/lib/libcrypto/ecdsa/ecs_ossl.c
index 0203b01bb5..48ef131217 100644
--- a/src/lib/libcrypto/ecdsa/ecs_ossl.c
+++ b/src/lib/libcrypto/ecdsa/ecs_ossl.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecs_ossl.c,v 1.24 2022/04/07 17:37:25 tb Exp $ */ 1/* $OpenBSD: ecs_ossl.c,v 1.25 2022/06/30 11:14:47 tb Exp $ */
2/* 2/*
3 * Written by Nils Larsch for the OpenSSL project 3 * Written by Nils Larsch for the OpenSSL project
4 */ 4 */
@@ -60,9 +60,9 @@
60 60
61#include <openssl/opensslconf.h> 61#include <openssl/opensslconf.h>
62 62
63#include <openssl/err.h>
64#include <openssl/obj_mac.h>
65#include <openssl/bn.h> 63#include <openssl/bn.h>
64#include <openssl/err.h>
65#include <openssl/objects.h>
66 66
67#include "bn_lcl.h" 67#include "bn_lcl.h"
68#include "ecs_locl.h" 68#include "ecs_locl.h"