/src/openssl/crypto/evp/legacy_md5_sha1.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2015-2021 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 | | /* |
11 | | * MD5 and SHA-1 low level APIs are deprecated for public use, but still ok for |
12 | | * internal use. The prov/md5_sha1.h include requires this, but this must |
13 | | * be the first include loaded. |
14 | | */ |
15 | | #include "internal/deprecated.h" |
16 | | |
17 | | #include "crypto/evp.h" |
18 | | #include "prov/md5_sha1.h" /* diverse MD5_SHA1 macros */ |
19 | | |
20 | | static const EVP_MD md5_sha1_md = { |
21 | | NID_md5_sha1, |
22 | | NID_md5_sha1, |
23 | | MD5_SHA1_DIGEST_LENGTH, |
24 | | 0, |
25 | | EVP_ORIG_GLOBAL, |
26 | | MD5_SHA1_CBLOCK |
27 | | }; |
28 | | |
29 | | const EVP_MD *EVP_md5_sha1(void) |
30 | 3 | { |
31 | 3 | return &md5_sha1_md; |
32 | 3 | } |