Coverage Report

Created: 2023-09-25 06:45

/src/openssl111/crypto/evp/c_alld.c
Line
Count
Source
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 "crypto/evp.h"
14
#include <openssl/pkcs12.h>
15
#include <openssl/objects.h>
16
17
void openssl_add_all_digests_int(void)
18
31
{
19
31
#ifndef OPENSSL_NO_MD4
20
31
    EVP_add_digest(EVP_md4());
21
31
#endif
22
31
#ifndef OPENSSL_NO_MD5
23
31
    EVP_add_digest(EVP_md5());
24
31
    EVP_add_digest_alias(SN_md5, "ssl3-md5");
25
31
    EVP_add_digest(EVP_md5_sha1());
26
31
#endif
27
31
    EVP_add_digest(EVP_sha1());
28
31
    EVP_add_digest_alias(SN_sha1, "ssl3-sha1");
29
31
    EVP_add_digest_alias(SN_sha1WithRSAEncryption, SN_sha1WithRSA);
30
31
#if !defined(OPENSSL_NO_MDC2) && !defined(OPENSSL_NO_DES)
31
31
    EVP_add_digest(EVP_mdc2());
32
31
#endif
33
31
#ifndef OPENSSL_NO_RMD160
34
31
    EVP_add_digest(EVP_ripemd160());
35
31
    EVP_add_digest_alias(SN_ripemd160, "ripemd");
36
31
    EVP_add_digest_alias(SN_ripemd160, "rmd160");
37
31
#endif
38
31
    EVP_add_digest(EVP_sha224());
39
31
    EVP_add_digest(EVP_sha256());
40
31
    EVP_add_digest(EVP_sha384());
41
31
    EVP_add_digest(EVP_sha512());
42
31
    EVP_add_digest(EVP_sha512_224());
43
31
    EVP_add_digest(EVP_sha512_256());
44
31
#ifndef OPENSSL_NO_WHIRLPOOL
45
31
    EVP_add_digest(EVP_whirlpool());
46
31
#endif
47
31
#ifndef OPENSSL_NO_SM3
48
31
    EVP_add_digest(EVP_sm3());
49
31
#endif
50
31
#ifndef OPENSSL_NO_BLAKE2
51
31
    EVP_add_digest(EVP_blake2b512());
52
31
    EVP_add_digest(EVP_blake2s256());
53
31
#endif
54
31
    EVP_add_digest(EVP_sha3_224());
55
31
    EVP_add_digest(EVP_sha3_256());
56
31
    EVP_add_digest(EVP_sha3_384());
57
31
    EVP_add_digest(EVP_sha3_512());
58
31
    EVP_add_digest(EVP_shake128());
59
31
    EVP_add_digest(EVP_shake256());
60
31
}