BN_is_negative is no longer a macro in OpenSSL master
[heimdal.git] / lib / hcrypto / evp-wincng.h
blobed7037a11450a4f50b65f6b0fd982da9b41e07ca
1 /*
2 * Copyright (c) 2015, Secure Endpoints Inc.
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
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.
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.
31 /* $Id$ */
33 #ifndef HEIM_EVP_WINCNG_H
34 #define HEIM_EVP_WINCNG_H 1
36 /* symbol renaming */
37 #define EVP_wincng_md2() EVP_wincng_md2()
38 #define EVP_wincng_md4() EVP_wincng_md4()
39 #define EVP_wincng_md5() EVP_wincng_md5()
40 #define EVP_wincng_sha1() EVP_wincng_sha1()
41 #define EVP_wincng_sha256() EVP_wincng_sha256()
42 #define EVP_wincng_sha384() EVP_wincng_sha384()
43 #define EVP_wincng_sha512() EVP_wincng_sha512()
44 #define EVP_wincng_des_cbc() EVP_wincng_des_cbc()
45 #define EVP_wincng_des_ede3_cbc() EVP_wincng_des_ede3_cbc()
46 #define EVP_wincng_aes_128_cbc() EVP_wincng_aes_128_cbc()
47 #define EVP_wincng_aes_192_cbc() EVP_wincng_aes_192_cbc()
48 #define EVP_wincng_aes_256_cbc() EVP_wincng_aes_256_cbc()
49 #define EVP_wincng_aes_128_cfb8() EVP_wincng_aes_128_cfb8()
50 #define EVP_wincng_aes_192_cfb8() EVP_wincng_aes_192_cfb8()
51 #define EVP_wincng_aes_256_cfb8() EVP_wincng_aes_256_cfb8()
52 #define EVP_wincng_rc4() EVP_wincng_rc4()
53 #define EVP_wincng_rc4_40() EVP_wincng_rc4_40()
54 #define EVP_wincng_rc2_40_cbc() EVP_wincng_rc2_40_cbc()
55 #define EVP_wincng_rc2_64_cbc() EVP_wincng_rc2_64_cbc()
56 #define EVP_wincng_rc2_cbc() EVP_wincng_rc2_cbc()
57 #define EVP_wincng_camellia_128_cbc() EVP_wincng_camellia_128_cbc()
58 #define EVP_wincng_camellia_192_cbc() EVP_wincng_camellia_192_cbc()
59 #define EVP_wincng_camellia_256_cbc() EVP_wincng_camellia_256_cbc()
65 HC_CPP_BEGIN
67 const EVP_MD * hc_EVP_wincng_md2(void);
68 const EVP_MD * hc_EVP_wincng_md4(void);
69 const EVP_MD * hc_EVP_wincng_md5(void);
70 const EVP_MD * hc_EVP_wincng_sha1(void);
71 const EVP_MD * hc_EVP_wincng_sha256(void);
72 const EVP_MD * hc_EVP_wincng_sha384(void);
73 const EVP_MD * hc_EVP_wincng_sha512(void);
75 const EVP_CIPHER * hc_EVP_wincng_rc2_cbc(void);
76 const EVP_CIPHER * hc_EVP_wincng_rc2_40_cbc(void);
77 const EVP_CIPHER * hc_EVP_wincng_rc2_64_cbc(void);
79 const EVP_CIPHER * hc_EVP_wincng_rc4(void);
80 const EVP_CIPHER * hc_EVP_wincng_rc4_40(void);
82 const EVP_CIPHER * hc_EVP_wincng_des_cbc(void);
83 const EVP_CIPHER * hc_EVP_wincng_des_ede3_cbc(void);
85 const EVP_CIPHER * hc_EVP_wincng_aes_128_cbc(void);
86 const EVP_CIPHER * hc_EVP_wincng_aes_192_cbc(void);
87 const EVP_CIPHER * hc_EVP_wincng_aes_256_cbc(void);
89 const EVP_CIPHER * hc_EVP_wincng_aes_128_cfb8(void);
90 const EVP_CIPHER * hc_EVP_wincng_aes_192_cfb8(void);
91 const EVP_CIPHER * hc_EVP_wincng_aes_256_cfb8(void);
93 void _hc_wincng_cleanup(void);
95 HC_CPP_END
97 #endif /* HEIM_EVP_WINCNG_H */