diff options
author | cvs2svn <admin@example.com> | 2025-04-14 17:32:06 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2025-04-14 17:32:06 +0000 |
commit | eb8dd9dca1228af0cd132f515509051ecfabf6f6 (patch) | |
tree | edb6da6af7e865d488dc1a29309f1e1ec226e603 /src/lib/libcrypto/hidden/openssl/sha.h | |
parent | 247f0352e0ed72a4f476db9dc91f4d982bc83eb2 (diff) | |
download | openbsd-tb_20250414.tar.gz openbsd-tb_20250414.tar.bz2 openbsd-tb_20250414.zip |
This commit was manufactured by cvs2git to create tag 'tb_20250414'.tb_20250414
Diffstat (limited to 'src/lib/libcrypto/hidden/openssl/sha.h')
-rw-r--r-- | src/lib/libcrypto/hidden/openssl/sha.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/sha.h b/src/lib/libcrypto/hidden/openssl/sha.h deleted file mode 100644 index ee58793205..0000000000 --- a/src/lib/libcrypto/hidden/openssl/sha.h +++ /dev/null | |||
@@ -1,52 +0,0 @@ | |||
1 | /* $OpenBSD: sha.h,v 1.1 2023/07/08 12:24:10 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_SHA_H | ||
19 | #define _LIBCRYPTO_SHA_H | ||
20 | |||
21 | #ifndef _MSC_VER | ||
22 | #include_next <openssl/sha.h> | ||
23 | #else | ||
24 | #include "../include/openssl/sha.h" | ||
25 | #endif | ||
26 | #include "crypto_namespace.h" | ||
27 | |||
28 | LCRYPTO_USED(SHA1_Init); | ||
29 | LCRYPTO_USED(SHA1_Update); | ||
30 | LCRYPTO_USED(SHA1_Final); | ||
31 | LCRYPTO_USED(SHA1); | ||
32 | LCRYPTO_USED(SHA1_Transform); | ||
33 | LCRYPTO_USED(SHA224_Init); | ||
34 | LCRYPTO_USED(SHA224_Update); | ||
35 | LCRYPTO_USED(SHA224_Final); | ||
36 | LCRYPTO_USED(SHA224); | ||
37 | LCRYPTO_USED(SHA256_Init); | ||
38 | LCRYPTO_USED(SHA256_Update); | ||
39 | LCRYPTO_USED(SHA256_Final); | ||
40 | LCRYPTO_USED(SHA256); | ||
41 | LCRYPTO_USED(SHA256_Transform); | ||
42 | LCRYPTO_USED(SHA384_Init); | ||
43 | LCRYPTO_USED(SHA384_Update); | ||
44 | LCRYPTO_USED(SHA384_Final); | ||
45 | LCRYPTO_USED(SHA384); | ||
46 | LCRYPTO_USED(SHA512_Init); | ||
47 | LCRYPTO_USED(SHA512_Update); | ||
48 | LCRYPTO_USED(SHA512_Final); | ||
49 | LCRYPTO_USED(SHA512); | ||
50 | LCRYPTO_USED(SHA512_Transform); | ||
51 | |||
52 | #endif /* _LIBCRYPTO_SHA_H */ | ||