s4:torture: Adapt KDC canon test to Heimdal upstream changes
[samba.git] / third_party / heimdal / lib / hcrypto / evp-w32.h
1 /*
2  * Copyright (c) 2015, Secure Endpoints Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  *   notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  *   notice, this list of conditions and the following disclaimer in
14  *   the documentation and/or other materials provided with the
15  *   distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28  * OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 /* $Id$ */
32
33 #ifndef HEIM_EVP_W32_H
34 #define HEIM_EVP_W32_H 1
35
36 /* symbol renaming */
37 #define EVP_w32crypto_md2() hc_EVP_w32crypto_md2()
38 #define EVP_w32crypto_md4() hc_EVP_w32crypto_md4()
39 #define EVP_w32crypto_md5() hc_EVP_w32crypto_md5()
40 #define EVP_w32crypto_sha1() hc_EVP_w32crypto_sha1()
41 #define EVP_w32crypto_sha256() hc_EVP_w32crypto_sha256()
42 #define EVP_w32crypto_sha384() hc_EVP_w32crypto_sha384()
43 #define EVP_w32crypto_sha512() hc_EVP_w32crypto_sha512()
44 #define EVP_w32crypto_des_cbc() hc_EVP_w32crypto_des_cbc()
45 #define EVP_w32crypto_des_ede3_cbc() hc_EVP_w32crypto_des_ede3_cbc()
46 #define EVP_w32crypto_aes_128_cbc() hc_EVP_w32crypto_aes_128_cbc()
47 #define EVP_w32crypto_aes_192_cbc() hc_EVP_w32crypto_aes_192_cbc()
48 #define EVP_w32crypto_aes_256_cbc() hc_EVP_w32crypto_aes_256_cbc()
49 #define EVP_w32crypto_aes_128_cfb8() hc_EVP_w32crypto_aes_128_cfb8()
50 #define EVP_w32crypto_aes_192_cfb8() hc_EVP_w32crypto_aes_192_cfb8()
51 #define EVP_w32crypto_aes_256_cfb8() hc_EVP_w32crypto_aes_256_cfb8()
52 #define EVP_w32crypto_rc4() hc_EVP_w32crypto_rc4()
53 #define EVP_w32crypto_rc4_40() hc_EVP_w32crypto_rc4_40()
54 #define EVP_w32crypto_rc2_40_cbc() hc_EVP_w32crypto_rc2_40_cbc()
55 #define EVP_w32crypto_rc2_64_cbc() hc_EVP_w32crypto_rc2_64_cbc()
56 #define EVP_w32crypto_rc2_cbc() hc_EVP_w32crypto_rc2_cbc()
57 #define EVP_w32crypto_camellia_128_cbc() hc_EVP_w32crypto_camellia_128_cbc()
58 #define EVP_w32crypto_camellia_192_cbc() hc_EVP_w32crypto_camellia_192_cbc()
59 #define EVP_w32crypto_camellia_256_cbc() hc_EVP_w32crypto_camellia_256_cbc()
60
61 /*
62  * This provider dynamically selects between Windows CNG (if running
63  * on Vista or above) or the inbuilt provider (if running on XP).
64  */
65
66 HC_CPP_BEGIN
67
68 const EVP_MD * hc_EVP_w32crypto_md2(void);
69 const EVP_MD * hc_EVP_w32crypto_md4(void);
70 const EVP_MD * hc_EVP_w32crypto_md5(void);
71 const EVP_MD * hc_EVP_w32crypto_sha1(void);
72 const EVP_MD * hc_EVP_w32crypto_sha256(void);
73 const EVP_MD * hc_EVP_w32crypto_sha384(void);
74 const EVP_MD * hc_EVP_w32crypto_sha512(void);
75
76 const EVP_CIPHER * hc_EVP_w32crypto_des_cbc(void);
77 const EVP_CIPHER * hc_EVP_w32crypto_des_ede3_cbc(void);
78
79 const EVP_CIPHER * hc_EVP_w32crypto_aes_128_cbc(void);
80 const EVP_CIPHER * hc_EVP_w32crypto_aes_192_cbc(void);
81 const EVP_CIPHER * hc_EVP_w32crypto_aes_256_cbc(void);
82
83 const EVP_CIPHER * hc_EVP_w32crypto_aes_128_cfb8(void);
84 const EVP_CIPHER * hc_EVP_w32crypto_aes_192_cfb8(void);
85 const EVP_CIPHER * hc_EVP_w32crypto_aes_256_cfb8(void);
86
87 const EVP_CIPHER * hc_EVP_w32crypto_rc4(void);
88 const EVP_CIPHER * hc_EVP_w32crypto_rc4_40(void);
89
90 const EVP_CIPHER * hc_EVP_w32crypto_rc2_cbc(void);
91 const EVP_CIPHER * hc_EVP_w32crypto_rc2_40_cbc(void);
92 const EVP_CIPHER * hc_EVP_w32crypto_rc2_64_cbc(void);
93
94 const EVP_CIPHER * hc_EVP_w32crypto_camellia_128_cbc(void);
95 const EVP_CIPHER * hc_EVP_w32crypto_camellia_192_cbc(void);
96 const EVP_CIPHER * hc_EVP_w32crypto_camellia_256_cbc(void);
97
98 HC_CPP_END
99
100 #endif /* HEIM_EVP_W32_H */