blob: 1a1ca29732afae317c8e8740c629e8922fc83093 [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* 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
Robert Sloan8f860b12017-08-28 07:37:06 -070067// 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 Langleyd9e397b2015-01-22 14:27:53 -080072
73
Robert Sloan8f860b12017-08-28 07:37:06 -070074// Hash algorithms.
75//
76// The following functions return |EVP_MD| objects that implement the named hash
77// function.
Adam Langleyd9e397b2015-01-22 14:27:53 -080078
79OPENSSL_EXPORT const EVP_MD *EVP_md4(void);
80OPENSSL_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);
86
Robert Sloan8f860b12017-08-28 07:37:06 -070087// EVP_md5_sha1 is a TLS-specific |EVP_MD| which computes the concatenation of
88// MD5 and SHA-1, as used in TLS 1.1 and below.
Adam Langleyd9e397b2015-01-22 14:27:53 -080089OPENSSL_EXPORT const EVP_MD *EVP_md5_sha1(void);
90
Robert Sloan8f860b12017-08-28 07:37:06 -070091// EVP_get_digestbynid returns an |EVP_MD| for the given NID, or NULL if no
92// such digest is known.
Adam Langleyd9e397b2015-01-22 14:27:53 -080093OPENSSL_EXPORT const EVP_MD *EVP_get_digestbynid(int nid);
94
Robert Sloan8f860b12017-08-28 07:37:06 -070095// EVP_get_digestbyobj returns an |EVP_MD| for the given |ASN1_OBJECT|, or NULL
96// if no such digest is known.
Adam Langleyd9e397b2015-01-22 14:27:53 -080097OPENSSL_EXPORT const EVP_MD *EVP_get_digestbyobj(const ASN1_OBJECT *obj);
98
99
Robert Sloan8f860b12017-08-28 07:37:06 -0700100// Digest contexts.
101//
102// An EVP_MD_CTX represents the state of a specific digest operation in
103// progress.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800104
Robert Sloan8f860b12017-08-28 07:37:06 -0700105// EVP_MD_CTX_init initialises an, already allocated, |EVP_MD_CTX|. This is the
106// same as setting the structure to zero.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800107OPENSSL_EXPORT void EVP_MD_CTX_init(EVP_MD_CTX *ctx);
108
Robert Sloan4562e9d2017-10-02 10:26:51 -0700109// EVP_MD_CTX_new allocates and initialises a fresh |EVP_MD_CTX| and returns
110// it, or NULL on allocation failure. The caller must use |EVP_MD_CTX_free| to
111// release the resulting object.
112OPENSSL_EXPORT EVP_MD_CTX *EVP_MD_CTX_new(void);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800113
Robert Sloan8f860b12017-08-28 07:37:06 -0700114// EVP_MD_CTX_cleanup frees any resources owned by |ctx| and resets it to a
115// freshly initialised state. It does not free |ctx| itself. It returns one.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800116OPENSSL_EXPORT int EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx);
117
Robert Sloan4562e9d2017-10-02 10:26:51 -0700118// EVP_MD_CTX_free calls |EVP_MD_CTX_cleanup| and then frees |ctx| itself.
119OPENSSL_EXPORT void EVP_MD_CTX_free(EVP_MD_CTX *ctx);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800120
Robert Sloan8f860b12017-08-28 07:37:06 -0700121// EVP_MD_CTX_copy_ex sets |out|, which must already be initialised, to be a
Robert Sloand9e572d2018-08-27 12:27:00 -0700122// copy of |in|. It returns one on success and zero on allocation failure.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800123OPENSSL_EXPORT int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in);
124
Adam Vartanianbfcf3a72018-08-10 14:55:24 +0100125// EVP_MD_CTX_reset calls |EVP_MD_CTX_cleanup| followed by |EVP_MD_CTX_init|. It
126// returns one.
127OPENSSL_EXPORT int EVP_MD_CTX_reset(EVP_MD_CTX *ctx);
Robert Sloan4562e9d2017-10-02 10:26:51 -0700128
Adam Langleyd9e397b2015-01-22 14:27:53 -0800129
Robert Sloan8f860b12017-08-28 07:37:06 -0700130// Digest operations.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800131
Robert Sloan8f860b12017-08-28 07:37:06 -0700132// EVP_DigestInit_ex configures |ctx|, which must already have been
133// initialised, for a fresh hashing operation using |type|. It returns one on
Robert Sloand9e572d2018-08-27 12:27:00 -0700134// success and zero on allocation failure.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800135OPENSSL_EXPORT int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type,
136 ENGINE *engine);
137
Robert Sloan8f860b12017-08-28 07:37:06 -0700138// EVP_DigestInit acts like |EVP_DigestInit_ex| except that |ctx| is
139// initialised before use.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800140OPENSSL_EXPORT int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type);
141
Robert Sloan8f860b12017-08-28 07:37:06 -0700142// EVP_DigestUpdate hashes |len| bytes from |data| into the hashing operation
143// in |ctx|. It returns one.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800144OPENSSL_EXPORT int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data,
145 size_t len);
146
Robert Sloan8f860b12017-08-28 07:37:06 -0700147// EVP_MAX_MD_SIZE is the largest digest size supported, in bytes.
148// Functions that output a digest generally require the buffer have
149// at least this much space.
150#define EVP_MAX_MD_SIZE 64 // SHA-512 is the longest so far.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800151
Robert Sloan8f860b12017-08-28 07:37:06 -0700152// EVP_MAX_MD_BLOCK_SIZE is the largest digest block size supported, in
153// bytes.
154#define EVP_MAX_MD_BLOCK_SIZE 128 // SHA-512 is the longest so far.
David Benjamin4969cc92016-04-22 15:02:23 -0400155
Robert Sloan8f860b12017-08-28 07:37:06 -0700156// EVP_DigestFinal_ex finishes the digest in |ctx| and writes the output to
157// |md_out|. |EVP_MD_CTX_size| bytes are written, which is at most
158// |EVP_MAX_MD_SIZE|. If |out_size| is not NULL then |*out_size| is set to the
159// number of bytes written. It returns one. After this call, the hash cannot be
160// updated or finished again until |EVP_DigestInit_ex| is called to start
161// another hashing operation.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800162OPENSSL_EXPORT int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, uint8_t *md_out,
163 unsigned int *out_size);
164
Robert Sloan8f860b12017-08-28 07:37:06 -0700165// EVP_DigestFinal acts like |EVP_DigestFinal_ex| except that
166// |EVP_MD_CTX_cleanup| is called on |ctx| before returning.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800167OPENSSL_EXPORT int EVP_DigestFinal(EVP_MD_CTX *ctx, uint8_t *md_out,
168 unsigned int *out_size);
169
Robert Sloan8f860b12017-08-28 07:37:06 -0700170// EVP_Digest performs a complete hashing operation in one call. It hashes |len|
171// bytes from |data| and writes the digest to |md_out|. |EVP_MD_CTX_size| bytes
172// are written, which is at most |EVP_MAX_MD_SIZE|. If |out_size| is not NULL
173// then |*out_size| is set to the number of bytes written. It returns one on
174// success and zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800175OPENSSL_EXPORT int EVP_Digest(const void *data, size_t len, uint8_t *md_out,
176 unsigned int *md_out_size, const EVP_MD *type,
177 ENGINE *impl);
178
179
Robert Sloan8f860b12017-08-28 07:37:06 -0700180// Digest function accessors.
181//
182// These functions allow code to learn details about an abstract hash
183// function.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800184
Robert Sloan8f860b12017-08-28 07:37:06 -0700185// EVP_MD_type returns a NID identifying |md|. (For example, |NID_sha256|.)
Adam Langleyd9e397b2015-01-22 14:27:53 -0800186OPENSSL_EXPORT int EVP_MD_type(const EVP_MD *md);
187
Robert Sloan8f860b12017-08-28 07:37:06 -0700188// EVP_MD_flags returns the flags for |md|, which is a set of |EVP_MD_FLAG_*|
189// values, ORed together.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800190OPENSSL_EXPORT uint32_t EVP_MD_flags(const EVP_MD *md);
191
Robert Sloan8f860b12017-08-28 07:37:06 -0700192// EVP_MD_size returns the digest size of |md|, in bytes.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800193OPENSSL_EXPORT size_t EVP_MD_size(const EVP_MD *md);
194
Robert Sloan8f860b12017-08-28 07:37:06 -0700195// EVP_MD_block_size returns the native block-size of |md|, in bytes.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800196OPENSSL_EXPORT size_t EVP_MD_block_size(const EVP_MD *md);
197
Robert Sloan8f860b12017-08-28 07:37:06 -0700198// EVP_MD_FLAG_PKEY_DIGEST indicates the the digest function is used with a
199// specific public key in order to verify signatures. (For example,
200// EVP_dss1.)
Adam Langleyd9e397b2015-01-22 14:27:53 -0800201#define EVP_MD_FLAG_PKEY_DIGEST 1
202
Robert Sloan8f860b12017-08-28 07:37:06 -0700203// EVP_MD_FLAG_DIGALGID_ABSENT indicates that the parameter type in an X.509
204// DigestAlgorithmIdentifier representing this digest function should be
205// undefined rather than NULL.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800206#define EVP_MD_FLAG_DIGALGID_ABSENT 2
207
208
Robert Sloan4562e9d2017-10-02 10:26:51 -0700209// Digest operation accessors.
210
211// EVP_MD_CTX_md returns the underlying digest function, or NULL if one has not
212// been set.
213OPENSSL_EXPORT const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx);
214
215// EVP_MD_CTX_size returns the digest size of |ctx|, in bytes. It
216// will crash if a digest hasn't been set on |ctx|.
217OPENSSL_EXPORT size_t EVP_MD_CTX_size(const EVP_MD_CTX *ctx);
218
219// EVP_MD_CTX_block_size returns the block size of the digest function used by
220// |ctx|, in bytes. It will crash if a digest hasn't been set on |ctx|.
221OPENSSL_EXPORT size_t EVP_MD_CTX_block_size(const EVP_MD_CTX *ctx);
222
223// EVP_MD_CTX_type returns a NID describing the digest function used by |ctx|.
224// (For example, |NID_sha256|.) It will crash if a digest hasn't been set on
225// |ctx|.
226OPENSSL_EXPORT int EVP_MD_CTX_type(const EVP_MD_CTX *ctx);
227
228
229// ASN.1 functions.
230//
231// These functions allow code to parse and serialize AlgorithmIdentifiers for
232// hash functions.
233
234// EVP_parse_digest_algorithm parses an AlgorithmIdentifier structure containing
235// a hash function OID (for example, 2.16.840.1.101.3.4.2.1 is SHA-256) and
236// advances |cbs|. The parameters field may either be omitted or a NULL. It
237// returns the digest function or NULL on error.
238OPENSSL_EXPORT const EVP_MD *EVP_parse_digest_algorithm(CBS *cbs);
239
240// EVP_marshal_digest_algorithm marshals |md| as an AlgorithmIdentifier
241// structure and appends the result to |cbb|. It returns one on success and zero
242// on error.
243OPENSSL_EXPORT int EVP_marshal_digest_algorithm(CBB *cbb, const EVP_MD *md);
244
245
Robert Sloan8f860b12017-08-28 07:37:06 -0700246// Deprecated functions.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800247
Robert Sloan8f860b12017-08-28 07:37:06 -0700248// EVP_MD_CTX_copy sets |out|, which must /not/ be initialised, to be a copy of
249// |in|. It returns one on success and zero on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800250OPENSSL_EXPORT int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in);
251
Robert Sloan8f860b12017-08-28 07:37:06 -0700252// EVP_add_digest does nothing and returns one. It exists only for
253// compatibility with OpenSSL.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800254OPENSSL_EXPORT int EVP_add_digest(const EVP_MD *digest);
255
Robert Sloan8f860b12017-08-28 07:37:06 -0700256// EVP_get_digestbyname returns an |EVP_MD| given a human readable name in
257// |name|, or NULL if the name is unknown.
Adam Langleyf4e42722015-06-04 17:45:09 -0700258OPENSSL_EXPORT const EVP_MD *EVP_get_digestbyname(const char *);
259
Robert Sloan8f860b12017-08-28 07:37:06 -0700260// EVP_dss1 returns the value of EVP_sha1(). This was provided by OpenSSL to
261// specifiy the original DSA signatures, which were fixed to use SHA-1. Note,
262// however, that attempting to sign or verify DSA signatures with the EVP
263// interface will always fail.
David Benjamind316cba2016-06-02 16:17:39 -0400264OPENSSL_EXPORT const EVP_MD *EVP_dss1(void);
265
Robert Sloan4562e9d2017-10-02 10:26:51 -0700266// EVP_MD_CTX_create calls |EVP_MD_CTX_new|.
267OPENSSL_EXPORT EVP_MD_CTX *EVP_MD_CTX_create(void);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800268
Robert Sloan4562e9d2017-10-02 10:26:51 -0700269// EVP_MD_CTX_destroy calls |EVP_MD_CTX_free|.
270OPENSSL_EXPORT void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800271
Adam Langleyd9e397b2015-01-22 14:27:53 -0800272
273struct evp_md_pctx_ops;
274
275struct env_md_ctx_st {
Robert Sloan8f860b12017-08-28 07:37:06 -0700276 // digest is the underlying digest function, or NULL if not set.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800277 const EVP_MD *digest;
Robert Sloan8f860b12017-08-28 07:37:06 -0700278 // md_data points to a block of memory that contains the hash-specific
279 // context.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800280 void *md_data;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800281
Robert Sloan8f860b12017-08-28 07:37:06 -0700282 // pctx is an opaque (at this layer) pointer to additional context that
283 // EVP_PKEY functions may store in this object.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800284 EVP_PKEY_CTX *pctx;
285
Robert Sloan8f860b12017-08-28 07:37:06 -0700286 // pctx_ops, if not NULL, points to a vtable that contains functions to
287 // manipulate |pctx|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800288 const struct evp_md_pctx_ops *pctx_ops;
289} /* EVP_MD_CTX */;
290
Adam Langleyd9e397b2015-01-22 14:27:53 -0800291
292#if defined(__cplusplus)
Robert Sloan8f860b12017-08-28 07:37:06 -0700293} // extern C
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400294
295#if !defined(BORINGSSL_NO_CXX)
296extern "C++" {
297
Robert Sloan726e9d12018-09-11 11:45:04 -0700298BSSL_NAMESPACE_BEGIN
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400299
Robert Sloan4562e9d2017-10-02 10:26:51 -0700300BORINGSSL_MAKE_DELETER(EVP_MD_CTX, EVP_MD_CTX_free)
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400301
302using ScopedEVP_MD_CTX =
303 internal::StackAllocated<EVP_MD_CTX, int, EVP_MD_CTX_init,
304 EVP_MD_CTX_cleanup>;
305
Robert Sloan726e9d12018-09-11 11:45:04 -0700306BSSL_NAMESPACE_END
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400307
308} // extern C++
309#endif
310
Adam Langleyd9e397b2015-01-22 14:27:53 -0800311#endif
312
Adam Langleyd9e397b2015-01-22 14:27:53 -0800313#define DIGEST_R_INPUT_NOT_INITIALIZED 100
Robert Sloan6d0d00e2017-03-27 07:13:07 -0700314#define DIGEST_R_DECODE_ERROR 101
315#define DIGEST_R_UNKNOWN_HASH 102
Adam Langleyd9e397b2015-01-22 14:27:53 -0800316
Robert Sloan8f860b12017-08-28 07:37:06 -0700317#endif // OPENSSL_HEADER_DIGEST_H