diff options
Diffstat (limited to 'src/lib/libcrypto/hidden/openssl')
| -rw-r--r-- | src/lib/libcrypto/hidden/openssl/gost.h | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/gost.h b/src/lib/libcrypto/hidden/openssl/gost.h deleted file mode 100644 index e30e6611af..0000000000 --- a/src/lib/libcrypto/hidden/openssl/gost.h +++ /dev/null | |||
| @@ -1,71 +0,0 @@ | |||
| 1 | /* $OpenBSD: gost.h,v 1.1 2023/07/08 14:30:44 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_GOST_H | ||
| 19 | #define _LIBCRYPTO_GOST_H | ||
| 20 | |||
| 21 | #ifndef _MSC_VER | ||
| 22 | #include_next <openssl/gost.h> | ||
| 23 | #else | ||
| 24 | #include "../include/openssl/gost.h" | ||
| 25 | #endif | ||
| 26 | #include "crypto_namespace.h" | ||
| 27 | |||
| 28 | LCRYPTO_USED(Gost2814789_set_sbox); | ||
| 29 | LCRYPTO_USED(Gost2814789_set_key); | ||
| 30 | LCRYPTO_USED(Gost2814789_ecb_encrypt); | ||
| 31 | LCRYPTO_USED(Gost2814789_cfb64_encrypt); | ||
| 32 | LCRYPTO_USED(Gost2814789_cnt_encrypt); | ||
| 33 | LCRYPTO_USED(GOST_CIPHER_PARAMS_new); | ||
| 34 | LCRYPTO_USED(GOST_CIPHER_PARAMS_free); | ||
| 35 | LCRYPTO_USED(d2i_GOST_CIPHER_PARAMS); | ||
| 36 | LCRYPTO_USED(i2d_GOST_CIPHER_PARAMS); | ||
| 37 | LCRYPTO_USED(GOST2814789IMIT_Init); | ||
| 38 | LCRYPTO_USED(GOST2814789IMIT_Update); | ||
| 39 | LCRYPTO_USED(GOST2814789IMIT_Final); | ||
| 40 | LCRYPTO_USED(GOST2814789IMIT_Transform); | ||
| 41 | LCRYPTO_USED(GOST2814789IMIT); | ||
| 42 | LCRYPTO_USED(GOSTR341194_Init); | ||
| 43 | LCRYPTO_USED(GOSTR341194_Update); | ||
| 44 | LCRYPTO_USED(GOSTR341194_Final); | ||
| 45 | LCRYPTO_USED(GOSTR341194_Transform); | ||
| 46 | LCRYPTO_USED(GOSTR341194); | ||
| 47 | LCRYPTO_USED(STREEBOG256_Init); | ||
| 48 | LCRYPTO_USED(STREEBOG256_Update); | ||
| 49 | LCRYPTO_USED(STREEBOG256_Final); | ||
| 50 | LCRYPTO_USED(STREEBOG256); | ||
| 51 | LCRYPTO_USED(STREEBOG512_Init); | ||
| 52 | LCRYPTO_USED(STREEBOG512_Update); | ||
| 53 | LCRYPTO_USED(STREEBOG512_Final); | ||
| 54 | LCRYPTO_USED(STREEBOG512_Transform); | ||
| 55 | LCRYPTO_USED(STREEBOG512); | ||
| 56 | LCRYPTO_USED(GOST_KEY_new); | ||
| 57 | LCRYPTO_USED(GOST_KEY_free); | ||
| 58 | LCRYPTO_USED(GOST_KEY_check_key); | ||
| 59 | LCRYPTO_USED(GOST_KEY_set_public_key_affine_coordinates); | ||
| 60 | LCRYPTO_USED(GOST_KEY_get0_group); | ||
| 61 | LCRYPTO_USED(GOST_KEY_set_group); | ||
| 62 | LCRYPTO_USED(GOST_KEY_get_digest); | ||
| 63 | LCRYPTO_USED(GOST_KEY_set_digest); | ||
| 64 | LCRYPTO_USED(GOST_KEY_get0_private_key); | ||
| 65 | LCRYPTO_USED(GOST_KEY_set_private_key); | ||
| 66 | LCRYPTO_USED(GOST_KEY_get0_public_key); | ||
| 67 | LCRYPTO_USED(GOST_KEY_set_public_key); | ||
| 68 | LCRYPTO_USED(GOST_KEY_get_size); | ||
| 69 | LCRYPTO_USED(ERR_load_GOST_strings); | ||
| 70 | |||
| 71 | #endif /* _LIBCRYPTO_GOST_H */ | ||
