/src/openssl/crypto/evp/c_alld.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the OpenSSL license (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <stdio.h> |
11 | | #include "internal/cryptlib.h" |
12 | | #include <openssl/evp.h> |
13 | | #include "internal/evp_int.h" |
14 | | #include <openssl/pkcs12.h> |
15 | | #include <openssl/objects.h> |
16 | | |
17 | | void openssl_add_all_digests_int(void) |
18 | 0 | { |
19 | 0 | #ifndef OPENSSL_NO_MD4 |
20 | 0 | EVP_add_digest(EVP_md4()); |
21 | 0 | #endif |
22 | 0 | #ifndef OPENSSL_NO_MD5 |
23 | 0 | EVP_add_digest(EVP_md5()); |
24 | 0 | EVP_add_digest_alias(SN_md5, "ssl3-md5"); |
25 | 0 | EVP_add_digest(EVP_md5_sha1()); |
26 | 0 | #endif |
27 | 0 | EVP_add_digest(EVP_sha1()); |
28 | 0 | EVP_add_digest_alias(SN_sha1, "ssl3-sha1"); |
29 | 0 | EVP_add_digest_alias(SN_sha1WithRSAEncryption, SN_sha1WithRSA); |
30 | 0 | #if !defined(OPENSSL_NO_MDC2) && !defined(OPENSSL_NO_DES) |
31 | 0 | EVP_add_digest(EVP_mdc2()); |
32 | 0 | #endif |
33 | 0 | #ifndef OPENSSL_NO_RMD160 |
34 | 0 | EVP_add_digest(EVP_ripemd160()); |
35 | 0 | EVP_add_digest_alias(SN_ripemd160, "ripemd"); |
36 | 0 | EVP_add_digest_alias(SN_ripemd160, "rmd160"); |
37 | 0 | #endif |
38 | 0 | EVP_add_digest(EVP_sha224()); |
39 | 0 | EVP_add_digest(EVP_sha256()); |
40 | 0 | EVP_add_digest(EVP_sha384()); |
41 | 0 | EVP_add_digest(EVP_sha512()); |
42 | 0 | EVP_add_digest(EVP_sha512_224()); |
43 | 0 | EVP_add_digest(EVP_sha512_256()); |
44 | 0 | #ifndef OPENSSL_NO_WHIRLPOOL |
45 | 0 | EVP_add_digest(EVP_whirlpool()); |
46 | 0 | #endif |
47 | 0 | #ifndef OPENSSL_NO_SM3 |
48 | 0 | EVP_add_digest(EVP_sm3()); |
49 | 0 | #endif |
50 | 0 | #ifndef OPENSSL_NO_BLAKE2 |
51 | 0 | EVP_add_digest(EVP_blake2b512()); |
52 | 0 | EVP_add_digest(EVP_blake2s256()); |
53 | 0 | #endif |
54 | 0 | EVP_add_digest(EVP_sha3_224()); |
55 | 0 | EVP_add_digest(EVP_sha3_256()); |
56 | 0 | EVP_add_digest(EVP_sha3_384()); |
57 | 0 | EVP_add_digest(EVP_sha3_512()); |
58 | 0 | EVP_add_digest(EVP_shake128()); |
59 | 0 | EVP_add_digest(EVP_shake256()); |
60 | 0 | } |