xref: /netbsd-src/crypto/external/bsd/openssl/dist/crypto/evp/legacy_ripemd.c (revision b0d1725196a7921d003d2c66a14f186abda4176b)
1*b0d17251Schristos /*
2*b0d17251Schristos  * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3*b0d17251Schristos  *
4*b0d17251Schristos  * Licensed under the Apache License 2.0 (the "License").  You may not use
5*b0d17251Schristos  * this file except in compliance with the License.  You can obtain a copy
6*b0d17251Schristos  * in the file LICENSE in the source distribution or at
7*b0d17251Schristos  * https://www.openssl.org/source/license.html
8*b0d17251Schristos  */
9*b0d17251Schristos 
10*b0d17251Schristos /*
11*b0d17251Schristos  * RIPEMD160 low level APIs are deprecated for public use, but still ok for
12*b0d17251Schristos  * internal use.
13*b0d17251Schristos  */
14*b0d17251Schristos #include "internal/deprecated.h"
15*b0d17251Schristos 
16*b0d17251Schristos #include <openssl/ripemd.h>
17*b0d17251Schristos #include "crypto/evp.h"
18*b0d17251Schristos #include "legacy_meth.h"
19*b0d17251Schristos 
20*b0d17251Schristos IMPLEMENT_LEGACY_EVP_MD_METH(ripe, RIPEMD160)
21*b0d17251Schristos 
22*b0d17251Schristos static const EVP_MD ripemd160_md = {
23*b0d17251Schristos     NID_ripemd160,
24*b0d17251Schristos     NID_ripemd160WithRSA,
25*b0d17251Schristos     RIPEMD160_DIGEST_LENGTH,
26*b0d17251Schristos     0,
27*b0d17251Schristos     EVP_ORIG_GLOBAL,
28*b0d17251Schristos     LEGACY_EVP_MD_METH_TABLE(ripe_init, ripe_update, ripe_final, NULL,
29*b0d17251Schristos                              RIPEMD160_CBLOCK),
30*b0d17251Schristos };
31*b0d17251Schristos 
EVP_ripemd160(void)32*b0d17251Schristos const EVP_MD *EVP_ripemd160(void)
33*b0d17251Schristos {
34*b0d17251Schristos     return &ripemd160_md;
35*b0d17251Schristos }
36