diff options
Diffstat (limited to 'src/lib/libcrypto/objects')
-rw-r--r-- | src/lib/libcrypto/objects/obj_xref.c | 15 | ||||
-rw-r--r-- | src/lib/libcrypto/objects/objects.h | 4 |
2 files changed, 2 insertions, 17 deletions
diff --git a/src/lib/libcrypto/objects/obj_xref.c b/src/lib/libcrypto/objects/obj_xref.c index ae18d69af3..0fca228ed8 100644 --- a/src/lib/libcrypto/objects/obj_xref.c +++ b/src/lib/libcrypto/objects/obj_xref.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: obj_xref.c,v 1.12 2023/07/22 19:08:03 tb Exp $ */ | 1 | /* $OpenBSD: obj_xref.c,v 1.13 2023/07/28 10:25:05 tb Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> |
@@ -310,16 +310,3 @@ OBJ_find_sigid_by_algs(int *sign_nid, int hash_nid, int pkey_nid) | |||
310 | return 0; | 310 | return 0; |
311 | } | 311 | } |
312 | LCRYPTO_ALIAS(OBJ_find_sigid_by_algs); | 312 | LCRYPTO_ALIAS(OBJ_find_sigid_by_algs); |
313 | |||
314 | int | ||
315 | OBJ_add_sigid(int sign_nid, int hash_nid, int pkey_nid) | ||
316 | { | ||
317 | return 0; | ||
318 | } | ||
319 | LCRYPTO_ALIAS(OBJ_add_sigid); | ||
320 | |||
321 | void | ||
322 | OBJ_sigid_free(void) | ||
323 | { | ||
324 | } | ||
325 | LCRYPTO_ALIAS(OBJ_sigid_free); | ||
diff --git a/src/lib/libcrypto/objects/objects.h b/src/lib/libcrypto/objects/objects.h index 91e4eb0d1d..451545e056 100644 --- a/src/lib/libcrypto/objects/objects.h +++ b/src/lib/libcrypto/objects/objects.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: objects.h,v 1.22 2023/06/29 06:11:33 tb Exp $ */ | 1 | /* $OpenBSD: objects.h,v 1.23 2023/07/28 10:25:05 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 | * |
@@ -139,8 +139,6 @@ const unsigned char *OBJ_get0_data(const ASN1_OBJECT *obj); | |||
139 | 139 | ||
140 | int OBJ_find_sigid_algs(int signid, int *pdig_nid, int *ppkey_nid); | 140 | int OBJ_find_sigid_algs(int signid, int *pdig_nid, int *ppkey_nid); |
141 | int OBJ_find_sigid_by_algs(int *psignid, int dig_nid, int pkey_nid); | 141 | int OBJ_find_sigid_by_algs(int *psignid, int dig_nid, int pkey_nid); |
142 | int OBJ_add_sigid(int signid, int dig_id, int pkey_id); | ||
143 | void OBJ_sigid_free(void); | ||
144 | 142 | ||
145 | void ERR_load_OBJ_strings(void); | 143 | void ERR_load_OBJ_strings(void); |
146 | 144 | ||