diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-05 12:51:12 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-05 12:51:12 +0000 |
commit | e23077418f7f413adf1df7bfd33c5e25a1ebe49a (patch) | |
tree | 08f4531fdf5b130f2ace776ce58dba85eb0ccd52 /lib | |
parent | c88d39b046b3ee8780c2f06f19e75cad6f040c60 (diff) |
Remove local prototypes for public API (?!)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/ecdsa/ecdsa.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libcrypto/ecdsa/ecdsa.c b/lib/libcrypto/ecdsa/ecdsa.c index d0cc846af30..dc92ea9bdd3 100644 --- a/lib/libcrypto/ecdsa/ecdsa.c +++ b/lib/libcrypto/ecdsa/ecdsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecdsa.c,v 1.3 2023/07/05 12:49:42 tb Exp $ */ +/* $OpenBSD: ecdsa.c,v 1.4 2023/07/05 12:51:11 tb Exp $ */ /* ==================================================================== * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. * @@ -94,11 +94,6 @@ const ASN1_ITEM ECDSA_SIG_it = { .sname = "ECDSA_SIG", }; -ECDSA_SIG *ECDSA_SIG_new(void); -void ECDSA_SIG_free(ECDSA_SIG *a); -ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **a, const unsigned char **in, long len); -int i2d_ECDSA_SIG(const ECDSA_SIG *a, unsigned char **out); - ECDSA_SIG * d2i_ECDSA_SIG(ECDSA_SIG **a, const unsigned char **in, long len) { |