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