blob: 12542c18b2563c83f0f37a0cbbab6847060ab180 [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.] */
56
57#ifndef OPENSSL_HEADER_DIGEST_H
58#define OPENSSL_HEADER_DIGEST_H
59
60#include <openssl/base.h>
61
62#if defined(__cplusplus)
63extern "C" {
64#endif
65
66
David Benjamin4512b792017-08-18 19:21:50 -040067// Digest functions.
68//
69// An EVP_MD abstracts the details of a specific hash function allowing code to
70// deal with the concept of a "hash function" without needing to know exactly
71// which hash function it is.
Adam Langley95c29f32014-06-20 12:00:00 -070072
73
David Benjamin4512b792017-08-18 19:21:50 -040074// Hash algorithms.
75//
76// The following functions return |EVP_MD| objects that implement the named hash
77// function.
Adam Langley95c29f32014-06-20 12:00:00 -070078
Adam Langleyc9eb7ea2014-08-22 11:06:14 -070079OPENSSL_EXPORT const EVP_MD *EVP_md4(void);
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070080OPENSSL_EXPORT const EVP_MD *EVP_md5(void);
81OPENSSL_EXPORT const EVP_MD *EVP_sha1(void);
82OPENSSL_EXPORT const EVP_MD *EVP_sha224(void);
83OPENSSL_EXPORT const EVP_MD *EVP_sha256(void);
84OPENSSL_EXPORT const EVP_MD *EVP_sha384(void);
85OPENSSL_EXPORT const EVP_MD *EVP_sha512(void);
Adam Langley3c11bf52020-04-15 09:10:04 -070086OPENSSL_EXPORT const EVP_MD *EVP_sha512_256(void);
Adam Langleye1333452021-01-21 11:56:52 -080087OPENSSL_EXPORT const EVP_MD *EVP_blake2b256(void);
Adam Langley95c29f32014-06-20 12:00:00 -070088
David Benjamin4512b792017-08-18 19:21:50 -040089// EVP_md5_sha1 is a TLS-specific |EVP_MD| which computes the concatenation of
90// MD5 and SHA-1, as used in TLS 1.1 and below.
David Benjamin00505ec2014-11-26 16:38:00 -050091OPENSSL_EXPORT const EVP_MD *EVP_md5_sha1(void);
92
David Benjamin4512b792017-08-18 19:21:50 -040093// EVP_get_digestbynid returns an |EVP_MD| for the given NID, or NULL if no
94// such digest is known.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070095OPENSSL_EXPORT const EVP_MD *EVP_get_digestbynid(int nid);
Adam Langley95c29f32014-06-20 12:00:00 -070096
David Benjamin4512b792017-08-18 19:21:50 -040097// EVP_get_digestbyobj returns an |EVP_MD| for the given |ASN1_OBJECT|, or NULL
98// if no such digest is known.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070099OPENSSL_EXPORT const EVP_MD *EVP_get_digestbyobj(const ASN1_OBJECT *obj);
Adam Langley95c29f32014-06-20 12:00:00 -0700100
101
David Benjamin4512b792017-08-18 19:21:50 -0400102// Digest contexts.
103//
104// An EVP_MD_CTX represents the state of a specific digest operation in
105// progress.
Adam Langley95c29f32014-06-20 12:00:00 -0700106
David Benjamin4512b792017-08-18 19:21:50 -0400107// EVP_MD_CTX_init initialises an, already allocated, |EVP_MD_CTX|. This is the
108// same as setting the structure to zero.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700109OPENSSL_EXPORT void EVP_MD_CTX_init(EVP_MD_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700110
David Benjamin81f030b2016-08-12 14:48:19 -0400111// EVP_MD_CTX_new allocates and initialises a fresh |EVP_MD_CTX| and returns
112// it, or NULL on allocation failure. The caller must use |EVP_MD_CTX_free| to
113// release the resulting object.
114OPENSSL_EXPORT EVP_MD_CTX *EVP_MD_CTX_new(void);
Adam Langley95c29f32014-06-20 12:00:00 -0700115
David Benjamin4512b792017-08-18 19:21:50 -0400116// EVP_MD_CTX_cleanup frees any resources owned by |ctx| and resets it to a
117// freshly initialised state. It does not free |ctx| itself. It returns one.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700118OPENSSL_EXPORT int EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700119
David Benjamin81f030b2016-08-12 14:48:19 -0400120// EVP_MD_CTX_free calls |EVP_MD_CTX_cleanup| and then frees |ctx| itself.
121OPENSSL_EXPORT void EVP_MD_CTX_free(EVP_MD_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700122
David Benjamin4512b792017-08-18 19:21:50 -0400123// EVP_MD_CTX_copy_ex sets |out|, which must already be initialised, to be a
Joshua Liebow-Feeserdea6d902018-08-13 15:01:04 -0700124// copy of |in|. It returns one on success and zero on allocation failure.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700125OPENSSL_EXPORT int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in);
Adam Langley95c29f32014-06-20 12:00:00 -0700126
David Benjamine9109cb2021-05-22 17:20:53 -0400127// EVP_MD_CTX_move sets |out|, which must already be initialised, to the hash
128// state in |in|. |in| is mutated and left in an empty state.
129OPENSSL_EXPORT void EVP_MD_CTX_move(EVP_MD_CTX *out, EVP_MD_CTX *in);
130
David Benjamina827d182018-05-29 10:43:20 -0400131// EVP_MD_CTX_reset calls |EVP_MD_CTX_cleanup| followed by |EVP_MD_CTX_init|. It
132// returns one.
133OPENSSL_EXPORT int EVP_MD_CTX_reset(EVP_MD_CTX *ctx);
David Benjamin81f030b2016-08-12 14:48:19 -0400134
Adam Langley95c29f32014-06-20 12:00:00 -0700135
David Benjamin4512b792017-08-18 19:21:50 -0400136// Digest operations.
Adam Langley95c29f32014-06-20 12:00:00 -0700137
David Benjamin4512b792017-08-18 19:21:50 -0400138// EVP_DigestInit_ex configures |ctx|, which must already have been
139// initialised, for a fresh hashing operation using |type|. It returns one on
Joshua Liebow-Feeserdea6d902018-08-13 15:01:04 -0700140// success and zero on allocation failure.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700141OPENSSL_EXPORT int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type,
142 ENGINE *engine);
Adam Langley95c29f32014-06-20 12:00:00 -0700143
David Benjamin4512b792017-08-18 19:21:50 -0400144// EVP_DigestInit acts like |EVP_DigestInit_ex| except that |ctx| is
145// initialised before use.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700146OPENSSL_EXPORT int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type);
Adam Langley95c29f32014-06-20 12:00:00 -0700147
David Benjamin4512b792017-08-18 19:21:50 -0400148// EVP_DigestUpdate hashes |len| bytes from |data| into the hashing operation
149// in |ctx|. It returns one.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700150OPENSSL_EXPORT int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data,
151 size_t len);
Adam Langley95c29f32014-06-20 12:00:00 -0700152
David Benjamin4512b792017-08-18 19:21:50 -0400153// EVP_MAX_MD_SIZE is the largest digest size supported, in bytes.
154// Functions that output a digest generally require the buffer have
155// at least this much space.
156#define EVP_MAX_MD_SIZE 64 // SHA-512 is the longest so far.
Adam Langley95c29f32014-06-20 12:00:00 -0700157
David Benjamin4512b792017-08-18 19:21:50 -0400158// EVP_MAX_MD_BLOCK_SIZE is the largest digest block size supported, in
159// bytes.
160#define EVP_MAX_MD_BLOCK_SIZE 128 // SHA-512 is the longest so far.
David Benjamin582d2842016-04-16 17:10:01 -0400161
David Benjamin4512b792017-08-18 19:21:50 -0400162// EVP_DigestFinal_ex finishes the digest in |ctx| and writes the output to
163// |md_out|. |EVP_MD_CTX_size| bytes are written, which is at most
164// |EVP_MAX_MD_SIZE|. If |out_size| is not NULL then |*out_size| is set to the
165// number of bytes written. It returns one. After this call, the hash cannot be
166// updated or finished again until |EVP_DigestInit_ex| is called to start
167// another hashing operation.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700168OPENSSL_EXPORT int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, uint8_t *md_out,
169 unsigned int *out_size);
Adam Langley95c29f32014-06-20 12:00:00 -0700170
David Benjamin4512b792017-08-18 19:21:50 -0400171// EVP_DigestFinal acts like |EVP_DigestFinal_ex| except that
172// |EVP_MD_CTX_cleanup| is called on |ctx| before returning.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700173OPENSSL_EXPORT int EVP_DigestFinal(EVP_MD_CTX *ctx, uint8_t *md_out,
174 unsigned int *out_size);
Adam Langley95c29f32014-06-20 12:00:00 -0700175
David Benjamin4512b792017-08-18 19:21:50 -0400176// EVP_Digest performs a complete hashing operation in one call. It hashes |len|
177// bytes from |data| and writes the digest to |md_out|. |EVP_MD_CTX_size| bytes
178// are written, which is at most |EVP_MAX_MD_SIZE|. If |out_size| is not NULL
179// then |*out_size| is set to the number of bytes written. It returns one on
180// success and zero otherwise.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700181OPENSSL_EXPORT int EVP_Digest(const void *data, size_t len, uint8_t *md_out,
182 unsigned int *md_out_size, const EVP_MD *type,
183 ENGINE *impl);
Adam Langley95c29f32014-06-20 12:00:00 -0700184
185
David Benjamin4512b792017-08-18 19:21:50 -0400186// Digest function accessors.
187//
188// These functions allow code to learn details about an abstract hash
189// function.
Adam Langley95c29f32014-06-20 12:00:00 -0700190
David Benjamin4512b792017-08-18 19:21:50 -0400191// EVP_MD_type returns a NID identifying |md|. (For example, |NID_sha256|.)
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700192OPENSSL_EXPORT int EVP_MD_type(const EVP_MD *md);
Adam Langley95c29f32014-06-20 12:00:00 -0700193
David Benjamin4512b792017-08-18 19:21:50 -0400194// EVP_MD_flags returns the flags for |md|, which is a set of |EVP_MD_FLAG_*|
195// values, ORed together.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700196OPENSSL_EXPORT uint32_t EVP_MD_flags(const EVP_MD *md);
Adam Langley95c29f32014-06-20 12:00:00 -0700197
David Benjamin4512b792017-08-18 19:21:50 -0400198// EVP_MD_size returns the digest size of |md|, in bytes.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700199OPENSSL_EXPORT size_t EVP_MD_size(const EVP_MD *md);
Adam Langley95c29f32014-06-20 12:00:00 -0700200
David Benjamin4512b792017-08-18 19:21:50 -0400201// EVP_MD_block_size returns the native block-size of |md|, in bytes.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700202OPENSSL_EXPORT size_t EVP_MD_block_size(const EVP_MD *md);
Adam Langley95c29f32014-06-20 12:00:00 -0700203
Shelley Vohr98e848a2019-09-18 13:23:30 -0700204// EVP_MD_FLAG_PKEY_DIGEST indicates that the digest function is used with a
David Benjamin4512b792017-08-18 19:21:50 -0400205// specific public key in order to verify signatures. (For example,
206// EVP_dss1.)
Adam Langley95c29f32014-06-20 12:00:00 -0700207#define EVP_MD_FLAG_PKEY_DIGEST 1
208
David Benjamin4512b792017-08-18 19:21:50 -0400209// EVP_MD_FLAG_DIGALGID_ABSENT indicates that the parameter type in an X.509
210// DigestAlgorithmIdentifier representing this digest function should be
211// undefined rather than NULL.
Adam Langley95c29f32014-06-20 12:00:00 -0700212#define EVP_MD_FLAG_DIGALGID_ABSENT 2
213
Shelley Vohr98e848a2019-09-18 13:23:30 -0700214// EVP_MD_FLAG_XOF indicates that the digest is an extensible-output function
215// (XOF). This flag is defined for compatibility and will never be set in any
216// |EVP_MD| in BoringSSL.
217#define EVP_MD_FLAG_XOF 4
218
Adam Langley95c29f32014-06-20 12:00:00 -0700219
David Benjamin81f030b2016-08-12 14:48:19 -0400220// Digest operation accessors.
221
222// EVP_MD_CTX_md returns the underlying digest function, or NULL if one has not
223// been set.
224OPENSSL_EXPORT const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx);
225
226// EVP_MD_CTX_size returns the digest size of |ctx|, in bytes. It
227// will crash if a digest hasn't been set on |ctx|.
228OPENSSL_EXPORT size_t EVP_MD_CTX_size(const EVP_MD_CTX *ctx);
229
230// EVP_MD_CTX_block_size returns the block size of the digest function used by
231// |ctx|, in bytes. It will crash if a digest hasn't been set on |ctx|.
232OPENSSL_EXPORT size_t EVP_MD_CTX_block_size(const EVP_MD_CTX *ctx);
233
234// EVP_MD_CTX_type returns a NID describing the digest function used by |ctx|.
235// (For example, |NID_sha256|.) It will crash if a digest hasn't been set on
236// |ctx|.
237OPENSSL_EXPORT int EVP_MD_CTX_type(const EVP_MD_CTX *ctx);
238
239
David Benjamin42e93b62017-09-25 16:30:28 -0400240// ASN.1 functions.
241//
242// These functions allow code to parse and serialize AlgorithmIdentifiers for
243// hash functions.
244
245// EVP_parse_digest_algorithm parses an AlgorithmIdentifier structure containing
246// a hash function OID (for example, 2.16.840.1.101.3.4.2.1 is SHA-256) and
247// advances |cbs|. The parameters field may either be omitted or a NULL. It
248// returns the digest function or NULL on error.
249OPENSSL_EXPORT const EVP_MD *EVP_parse_digest_algorithm(CBS *cbs);
250
251// EVP_marshal_digest_algorithm marshals |md| as an AlgorithmIdentifier
252// structure and appends the result to |cbb|. It returns one on success and zero
253// on error.
254OPENSSL_EXPORT int EVP_marshal_digest_algorithm(CBB *cbb, const EVP_MD *md);
255
256
David Benjamin4512b792017-08-18 19:21:50 -0400257// Deprecated functions.
Adam Langley95c29f32014-06-20 12:00:00 -0700258
David Benjamin4512b792017-08-18 19:21:50 -0400259// EVP_MD_CTX_copy sets |out|, which must /not/ be initialised, to be a copy of
260// |in|. It returns one on success and zero on error.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700261OPENSSL_EXPORT int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in);
Adam Langley95c29f32014-06-20 12:00:00 -0700262
David Benjamin4512b792017-08-18 19:21:50 -0400263// EVP_add_digest does nothing and returns one. It exists only for
264// compatibility with OpenSSL.
Adam Langleybed8ce72014-09-05 17:04:51 -0700265OPENSSL_EXPORT int EVP_add_digest(const EVP_MD *digest);
266
David Benjamin4512b792017-08-18 19:21:50 -0400267// EVP_get_digestbyname returns an |EVP_MD| given a human readable name in
268// |name|, or NULL if the name is unknown.
Matt Braithwaite9f8ef2d2015-04-28 19:38:03 -0700269OPENSSL_EXPORT const EVP_MD *EVP_get_digestbyname(const char *);
270
David Benjamin4512b792017-08-18 19:21:50 -0400271// EVP_dss1 returns the value of EVP_sha1(). This was provided by OpenSSL to
272// specifiy the original DSA signatures, which were fixed to use SHA-1. Note,
273// however, that attempting to sign or verify DSA signatures with the EVP
274// interface will always fail.
Adam Langley1aa03f02016-05-20 08:22:33 -0700275OPENSSL_EXPORT const EVP_MD *EVP_dss1(void);
276
David Benjamin81f030b2016-08-12 14:48:19 -0400277// EVP_MD_CTX_create calls |EVP_MD_CTX_new|.
278OPENSSL_EXPORT EVP_MD_CTX *EVP_MD_CTX_create(void);
Adam Langley95c29f32014-06-20 12:00:00 -0700279
David Benjamin81f030b2016-08-12 14:48:19 -0400280// EVP_MD_CTX_destroy calls |EVP_MD_CTX_free|.
281OPENSSL_EXPORT void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700282
David Benjaminb96d4702019-04-27 13:43:06 -0500283// EVP_DigestFinalXOF returns zero and adds an error to the error queue.
284// BoringSSL does not support any XOF digests.
285OPENSSL_EXPORT int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, uint8_t *out,
286 size_t len);
287
Shelley Vohr98e848a2019-09-18 13:23:30 -0700288// EVP_MD_meth_get_flags calls |EVP_MD_flags|.
289OPENSSL_EXPORT uint32_t EVP_MD_meth_get_flags(const EVP_MD *md);
290
Adam Langley5eeaf302020-09-18 10:28:46 -0700291// EVP_MD_CTX_set_flags does nothing.
292OPENSSL_EXPORT void EVP_MD_CTX_set_flags(EVP_MD_CTX *ctx, int flags);
293
294// EVP_MD_CTX_FLAG_NON_FIPS_ALLOW is meaningless. In OpenSSL it permits non-FIPS
295// algorithms in FIPS mode. But BoringSSL FIPS mode doesn't prohibit algorithms
296// (it's up the the caller to use the FIPS module in a fashion compliant with
297// their needs). Thus this exists only to allow code to compile.
298#define EVP_MD_CTX_FLAG_NON_FIPS_ALLOW 0
299
Adam Langley95c29f32014-06-20 12:00:00 -0700300
301struct evp_md_pctx_ops;
302
303struct env_md_ctx_st {
David Benjamin4512b792017-08-18 19:21:50 -0400304 // digest is the underlying digest function, or NULL if not set.
Adam Langley95c29f32014-06-20 12:00:00 -0700305 const EVP_MD *digest;
David Benjamin4512b792017-08-18 19:21:50 -0400306 // md_data points to a block of memory that contains the hash-specific
307 // context.
Adam Langley95c29f32014-06-20 12:00:00 -0700308 void *md_data;
Adam Langley95c29f32014-06-20 12:00:00 -0700309
David Benjamin4512b792017-08-18 19:21:50 -0400310 // pctx is an opaque (at this layer) pointer to additional context that
311 // EVP_PKEY functions may store in this object.
Adam Langley95c29f32014-06-20 12:00:00 -0700312 EVP_PKEY_CTX *pctx;
313
David Benjamin4512b792017-08-18 19:21:50 -0400314 // pctx_ops, if not NULL, points to a vtable that contains functions to
315 // manipulate |pctx|.
Adam Langley95c29f32014-06-20 12:00:00 -0700316 const struct evp_md_pctx_ops *pctx_ops;
317} /* EVP_MD_CTX */;
318
Adam Langley95c29f32014-06-20 12:00:00 -0700319
320#if defined(__cplusplus)
David Benjamin4512b792017-08-18 19:21:50 -0400321} // extern C
David Benjaminf0e935d2016-09-06 18:10:19 -0400322
323#if !defined(BORINGSSL_NO_CXX)
324extern "C++" {
325
Joshua Liebow-Feeser8c7c6352018-08-26 18:53:36 -0700326BSSL_NAMESPACE_BEGIN
David Benjaminf0e935d2016-09-06 18:10:19 -0400327
David Benjamin81f030b2016-08-12 14:48:19 -0400328BORINGSSL_MAKE_DELETER(EVP_MD_CTX, EVP_MD_CTX_free)
David Benjaminf0e935d2016-09-06 18:10:19 -0400329
330using ScopedEVP_MD_CTX =
David Benjamine9109cb2021-05-22 17:20:53 -0400331 internal::StackAllocatedMovable<EVP_MD_CTX, int, EVP_MD_CTX_init,
332 EVP_MD_CTX_cleanup, EVP_MD_CTX_move>;
David Benjaminf0e935d2016-09-06 18:10:19 -0400333
Joshua Liebow-Feeser8c7c6352018-08-26 18:53:36 -0700334BSSL_NAMESPACE_END
David Benjaminf0e935d2016-09-06 18:10:19 -0400335
336} // extern C++
337#endif
338
Adam Langley95c29f32014-06-20 12:00:00 -0700339#endif
340
Adam Langley95c29f32014-06-20 12:00:00 -0700341#define DIGEST_R_INPUT_NOT_INITIALIZED 100
David Benjamin3cb047e2017-03-14 00:48:11 -0400342#define DIGEST_R_DECODE_ERROR 101
343#define DIGEST_R_UNKNOWN_HASH 102
Adam Langley95c29f32014-06-20 12:00:00 -0700344
David Benjamin4512b792017-08-18 19:21:50 -0400345#endif // OPENSSL_HEADER_DIGEST_H