summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/hidden/openssl/gost.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/hidden/openssl/gost.h')
-rw-r--r--src/lib/libcrypto/hidden/openssl/gost.h71
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
28LCRYPTO_USED(Gost2814789_set_sbox);
29LCRYPTO_USED(Gost2814789_set_key);
30LCRYPTO_USED(Gost2814789_ecb_encrypt);
31LCRYPTO_USED(Gost2814789_cfb64_encrypt);
32LCRYPTO_USED(Gost2814789_cnt_encrypt);
33LCRYPTO_USED(GOST_CIPHER_PARAMS_new);
34LCRYPTO_USED(GOST_CIPHER_PARAMS_free);
35LCRYPTO_USED(d2i_GOST_CIPHER_PARAMS);
36LCRYPTO_USED(i2d_GOST_CIPHER_PARAMS);
37LCRYPTO_USED(GOST2814789IMIT_Init);
38LCRYPTO_USED(GOST2814789IMIT_Update);
39LCRYPTO_USED(GOST2814789IMIT_Final);
40LCRYPTO_USED(GOST2814789IMIT_Transform);
41LCRYPTO_USED(GOST2814789IMIT);
42LCRYPTO_USED(GOSTR341194_Init);
43LCRYPTO_USED(GOSTR341194_Update);
44LCRYPTO_USED(GOSTR341194_Final);
45LCRYPTO_USED(GOSTR341194_Transform);
46LCRYPTO_USED(GOSTR341194);
47LCRYPTO_USED(STREEBOG256_Init);
48LCRYPTO_USED(STREEBOG256_Update);
49LCRYPTO_USED(STREEBOG256_Final);
50LCRYPTO_USED(STREEBOG256);
51LCRYPTO_USED(STREEBOG512_Init);
52LCRYPTO_USED(STREEBOG512_Update);
53LCRYPTO_USED(STREEBOG512_Final);
54LCRYPTO_USED(STREEBOG512_Transform);
55LCRYPTO_USED(STREEBOG512);
56LCRYPTO_USED(GOST_KEY_new);
57LCRYPTO_USED(GOST_KEY_free);
58LCRYPTO_USED(GOST_KEY_check_key);
59LCRYPTO_USED(GOST_KEY_set_public_key_affine_coordinates);
60LCRYPTO_USED(GOST_KEY_get0_group);
61LCRYPTO_USED(GOST_KEY_set_group);
62LCRYPTO_USED(GOST_KEY_get_digest);
63LCRYPTO_USED(GOST_KEY_set_digest);
64LCRYPTO_USED(GOST_KEY_get0_private_key);
65LCRYPTO_USED(GOST_KEY_set_private_key);
66LCRYPTO_USED(GOST_KEY_get0_public_key);
67LCRYPTO_USED(GOST_KEY_set_public_key);
68LCRYPTO_USED(GOST_KEY_get_size);
69LCRYPTO_USED(ERR_load_GOST_strings);
70
71#endif /* _LIBCRYPTO_GOST_H */