Coverage Report

Created: 2025-06-13 06:55

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