diff options
| author | beck <> | 2023-07-07 13:53:52 +0000 |
|---|---|---|
| committer | beck <> | 2023-07-07 13:53:52 +0000 |
| commit | 96c313e4aac4001ae9818efee3f34856cdf873b0 (patch) | |
| tree | 66cf06c2d948ccb66fb91025cb243cf3f037d2d7 /src/lib/libcrypto/hidden/openssl/ecdsa.h | |
| parent | 1355f5b75c135c6bbe53ddedd21c86e2952b9895 (diff) | |
| download | openbsd-96c313e4aac4001ae9818efee3f34856cdf873b0.tar.gz openbsd-96c313e4aac4001ae9818efee3f34856cdf873b0.tar.bz2 openbsd-96c313e4aac4001ae9818efee3f34856cdf873b0.zip | |
Hide symbols in hkdf, evp, err, ecdsa and ec
ok jsing@
Diffstat (limited to 'src/lib/libcrypto/hidden/openssl/ecdsa.h')
| -rw-r--r-- | src/lib/libcrypto/hidden/openssl/ecdsa.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/ecdsa.h b/src/lib/libcrypto/hidden/openssl/ecdsa.h new file mode 100644 index 0000000000..25eb2b3b57 --- /dev/null +++ b/src/lib/libcrypto/hidden/openssl/ecdsa.h | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | /* $OpenBSD: ecdsa.h,v 1.1 2023/07/07 13:53:52 beck Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2023 Bob Beck <beck@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef _LIBCRYPTO_ECDSA_H | ||
| 19 | #define _LIBCRYPTO_ECDSA_H | ||
| 20 | |||
| 21 | #ifndef _MSC_VER | ||
| 22 | #include_next <openssl/ecdsa.h> | ||
| 23 | #else | ||
| 24 | #include "../include/openssl/ecdsa.h" | ||
| 25 | #endif | ||
| 26 | #include "crypto_namespace.h" | ||
| 27 | |||
| 28 | LCRYPTO_USED(ECDSA_SIG_new); | ||
| 29 | LCRYPTO_USED(ECDSA_SIG_free); | ||
| 30 | LCRYPTO_USED(i2d_ECDSA_SIG); | ||
| 31 | LCRYPTO_USED(d2i_ECDSA_SIG); | ||
| 32 | LCRYPTO_USED(ECDSA_SIG_get0); | ||
| 33 | LCRYPTO_USED(ECDSA_SIG_get0_r); | ||
| 34 | LCRYPTO_USED(ECDSA_SIG_get0_s); | ||
| 35 | LCRYPTO_USED(ECDSA_SIG_set0); | ||
| 36 | LCRYPTO_USED(ECDSA_do_sign); | ||
| 37 | LCRYPTO_USED(ECDSA_do_sign_ex); | ||
| 38 | LCRYPTO_USED(ECDSA_do_verify); | ||
| 39 | LCRYPTO_USED(ECDSA_OpenSSL); | ||
| 40 | LCRYPTO_USED(ECDSA_set_default_method); | ||
| 41 | LCRYPTO_USED(ECDSA_get_default_method); | ||
| 42 | LCRYPTO_USED(ECDSA_set_method); | ||
| 43 | LCRYPTO_USED(ECDSA_size); | ||
| 44 | LCRYPTO_USED(ECDSA_sign_setup); | ||
| 45 | LCRYPTO_USED(ECDSA_sign); | ||
| 46 | LCRYPTO_USED(ECDSA_sign_ex); | ||
| 47 | LCRYPTO_USED(ECDSA_verify); | ||
| 48 | LCRYPTO_USED(ECDSA_get_ex_new_index); | ||
| 49 | LCRYPTO_USED(ECDSA_set_ex_data); | ||
| 50 | LCRYPTO_USED(ECDSA_get_ex_data); | ||
| 51 | LCRYPTO_USED(EC_KEY_METHOD_set_sign); | ||
| 52 | LCRYPTO_USED(EC_KEY_METHOD_set_verify); | ||
| 53 | LCRYPTO_USED(EC_KEY_METHOD_get_sign); | ||
| 54 | LCRYPTO_USED(EC_KEY_METHOD_get_verify); | ||
| 55 | LCRYPTO_USED(ERR_load_ECDSA_strings); | ||
| 56 | |||
| 57 | #endif /* _LIBCRYPTO_ECDSA_H */ | ||
