Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* 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) |
| 63 | extern "C" { |
| 64 | #endif |
| 65 | |
| 66 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 67 | // 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 Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 72 | |
| 73 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 74 | // Hash algorithms. |
| 75 | // |
| 76 | // The following functions return |EVP_MD| objects that implement the named hash |
| 77 | // function. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 78 | |
Adam Langley | c9eb7ea | 2014-08-22 11:06:14 -0700 | [diff] [blame] | 79 | OPENSSL_EXPORT const EVP_MD *EVP_md4(void); |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 80 | OPENSSL_EXPORT const EVP_MD *EVP_md5(void); |
| 81 | OPENSSL_EXPORT const EVP_MD *EVP_sha1(void); |
| 82 | OPENSSL_EXPORT const EVP_MD *EVP_sha224(void); |
| 83 | OPENSSL_EXPORT const EVP_MD *EVP_sha256(void); |
| 84 | OPENSSL_EXPORT const EVP_MD *EVP_sha384(void); |
| 85 | OPENSSL_EXPORT const EVP_MD *EVP_sha512(void); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 86 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 87 | // 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. |
David Benjamin | 00505ec | 2014-11-26 16:38:00 -0500 | [diff] [blame] | 89 | OPENSSL_EXPORT const EVP_MD *EVP_md5_sha1(void); |
| 90 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 91 | // EVP_get_digestbynid returns an |EVP_MD| for the given NID, or NULL if no |
| 92 | // such digest is known. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 93 | OPENSSL_EXPORT const EVP_MD *EVP_get_digestbynid(int nid); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 94 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 95 | // EVP_get_digestbyobj returns an |EVP_MD| for the given |ASN1_OBJECT|, or NULL |
| 96 | // if no such digest is known. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 97 | OPENSSL_EXPORT const EVP_MD *EVP_get_digestbyobj(const ASN1_OBJECT *obj); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 98 | |
| 99 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 100 | // Digest contexts. |
| 101 | // |
| 102 | // An EVP_MD_CTX represents the state of a specific digest operation in |
| 103 | // progress. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 104 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 105 | // EVP_MD_CTX_init initialises an, already allocated, |EVP_MD_CTX|. This is the |
| 106 | // same as setting the structure to zero. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 107 | OPENSSL_EXPORT void EVP_MD_CTX_init(EVP_MD_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 108 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 109 | // EVP_MD_CTX_create allocates and initialises a fresh |EVP_MD_CTX| and returns |
| 110 | // it, or NULL on allocation failure. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 111 | OPENSSL_EXPORT EVP_MD_CTX *EVP_MD_CTX_create(void); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 112 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 113 | // EVP_MD_CTX_cleanup frees any resources owned by |ctx| and resets it to a |
| 114 | // freshly initialised state. It does not free |ctx| itself. It returns one. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 115 | OPENSSL_EXPORT int EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 116 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 117 | // EVP_MD_CTX_destroy calls |EVP_MD_CTX_cleanup| and then frees |ctx| itself. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 118 | OPENSSL_EXPORT void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 119 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 120 | // EVP_MD_CTX_copy_ex sets |out|, which must already be initialised, to be a |
| 121 | // copy of |in|. It returns one on success and zero on error. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 122 | OPENSSL_EXPORT int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 123 | |
| 124 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 125 | // Digest operations. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 126 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 127 | // EVP_DigestInit_ex configures |ctx|, which must already have been |
| 128 | // initialised, for a fresh hashing operation using |type|. It returns one on |
| 129 | // success and zero otherwise. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 130 | OPENSSL_EXPORT int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, |
| 131 | ENGINE *engine); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 132 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 133 | // EVP_DigestInit acts like |EVP_DigestInit_ex| except that |ctx| is |
| 134 | // initialised before use. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 135 | OPENSSL_EXPORT int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 136 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 137 | // EVP_DigestUpdate hashes |len| bytes from |data| into the hashing operation |
| 138 | // in |ctx|. It returns one. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 139 | OPENSSL_EXPORT int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, |
| 140 | size_t len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 141 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 142 | // EVP_MAX_MD_SIZE is the largest digest size supported, in bytes. |
| 143 | // Functions that output a digest generally require the buffer have |
| 144 | // at least this much space. |
| 145 | #define EVP_MAX_MD_SIZE 64 // SHA-512 is the longest so far. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 146 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 147 | // EVP_MAX_MD_BLOCK_SIZE is the largest digest block size supported, in |
| 148 | // bytes. |
| 149 | #define EVP_MAX_MD_BLOCK_SIZE 128 // SHA-512 is the longest so far. |
David Benjamin | 582d284 | 2016-04-16 17:10:01 -0400 | [diff] [blame] | 150 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 151 | // EVP_DigestFinal_ex finishes the digest in |ctx| and writes the output to |
| 152 | // |md_out|. |EVP_MD_CTX_size| bytes are written, which is at most |
| 153 | // |EVP_MAX_MD_SIZE|. If |out_size| is not NULL then |*out_size| is set to the |
| 154 | // number of bytes written. It returns one. After this call, the hash cannot be |
| 155 | // updated or finished again until |EVP_DigestInit_ex| is called to start |
| 156 | // another hashing operation. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 157 | OPENSSL_EXPORT int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, uint8_t *md_out, |
| 158 | unsigned int *out_size); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 159 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 160 | // EVP_DigestFinal acts like |EVP_DigestFinal_ex| except that |
| 161 | // |EVP_MD_CTX_cleanup| is called on |ctx| before returning. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 162 | OPENSSL_EXPORT int EVP_DigestFinal(EVP_MD_CTX *ctx, uint8_t *md_out, |
| 163 | unsigned int *out_size); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 164 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 165 | // EVP_Digest performs a complete hashing operation in one call. It hashes |len| |
| 166 | // bytes from |data| and writes the digest to |md_out|. |EVP_MD_CTX_size| bytes |
| 167 | // are written, which is at most |EVP_MAX_MD_SIZE|. If |out_size| is not NULL |
| 168 | // then |*out_size| is set to the number of bytes written. It returns one on |
| 169 | // success and zero otherwise. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 170 | OPENSSL_EXPORT int EVP_Digest(const void *data, size_t len, uint8_t *md_out, |
| 171 | unsigned int *md_out_size, const EVP_MD *type, |
| 172 | ENGINE *impl); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 173 | |
| 174 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 175 | // Digest function accessors. |
| 176 | // |
| 177 | // These functions allow code to learn details about an abstract hash |
| 178 | // function. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 179 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 180 | // EVP_MD_type returns a NID identifying |md|. (For example, |NID_sha256|.) |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 181 | OPENSSL_EXPORT int EVP_MD_type(const EVP_MD *md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 182 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 183 | // EVP_MD_flags returns the flags for |md|, which is a set of |EVP_MD_FLAG_*| |
| 184 | // values, ORed together. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 185 | OPENSSL_EXPORT uint32_t EVP_MD_flags(const EVP_MD *md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 186 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 187 | // EVP_MD_size returns the digest size of |md|, in bytes. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 188 | OPENSSL_EXPORT size_t EVP_MD_size(const EVP_MD *md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 189 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 190 | // EVP_MD_block_size returns the native block-size of |md|, in bytes. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 191 | OPENSSL_EXPORT size_t EVP_MD_block_size(const EVP_MD *md); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 192 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 193 | // EVP_MD_FLAG_PKEY_DIGEST indicates the the digest function is used with a |
| 194 | // specific public key in order to verify signatures. (For example, |
| 195 | // EVP_dss1.) |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 196 | #define EVP_MD_FLAG_PKEY_DIGEST 1 |
| 197 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 198 | // EVP_MD_FLAG_DIGALGID_ABSENT indicates that the parameter type in an X.509 |
| 199 | // DigestAlgorithmIdentifier representing this digest function should be |
| 200 | // undefined rather than NULL. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 201 | #define EVP_MD_FLAG_DIGALGID_ABSENT 2 |
| 202 | |
| 203 | |
David Benjamin | 42e93b6 | 2017-09-25 16:30:28 -0400 | [diff] [blame] | 204 | // ASN.1 functions. |
| 205 | // |
| 206 | // These functions allow code to parse and serialize AlgorithmIdentifiers for |
| 207 | // hash functions. |
| 208 | |
| 209 | // EVP_parse_digest_algorithm parses an AlgorithmIdentifier structure containing |
| 210 | // a hash function OID (for example, 2.16.840.1.101.3.4.2.1 is SHA-256) and |
| 211 | // advances |cbs|. The parameters field may either be omitted or a NULL. It |
| 212 | // returns the digest function or NULL on error. |
| 213 | OPENSSL_EXPORT const EVP_MD *EVP_parse_digest_algorithm(CBS *cbs); |
| 214 | |
| 215 | // EVP_marshal_digest_algorithm marshals |md| as an AlgorithmIdentifier |
| 216 | // structure and appends the result to |cbb|. It returns one on success and zero |
| 217 | // on error. |
| 218 | OPENSSL_EXPORT int EVP_marshal_digest_algorithm(CBB *cbb, const EVP_MD *md); |
| 219 | |
| 220 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 221 | // Deprecated functions. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 222 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 223 | // EVP_MD_CTX_copy sets |out|, which must /not/ be initialised, to be a copy of |
| 224 | // |in|. It returns one on success and zero on error. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 225 | OPENSSL_EXPORT int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 226 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 227 | // EVP_add_digest does nothing and returns one. It exists only for |
| 228 | // compatibility with OpenSSL. |
Adam Langley | bed8ce7 | 2014-09-05 17:04:51 -0700 | [diff] [blame] | 229 | OPENSSL_EXPORT int EVP_add_digest(const EVP_MD *digest); |
| 230 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 231 | // EVP_get_digestbyname returns an |EVP_MD| given a human readable name in |
| 232 | // |name|, or NULL if the name is unknown. |
Matt Braithwaite | 9f8ef2d | 2015-04-28 19:38:03 -0700 | [diff] [blame] | 233 | OPENSSL_EXPORT const EVP_MD *EVP_get_digestbyname(const char *); |
| 234 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 235 | // EVP_dss1 returns the value of EVP_sha1(). This was provided by OpenSSL to |
| 236 | // specifiy the original DSA signatures, which were fixed to use SHA-1. Note, |
| 237 | // however, that attempting to sign or verify DSA signatures with the EVP |
| 238 | // interface will always fail. |
Adam Langley | 1aa03f0 | 2016-05-20 08:22:33 -0700 | [diff] [blame] | 239 | OPENSSL_EXPORT const EVP_MD *EVP_dss1(void); |
| 240 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 241 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 242 | // Digest operation accessors. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 243 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 244 | // EVP_MD_CTX_md returns the underlying digest function, or NULL if one has not |
| 245 | // been set. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 246 | OPENSSL_EXPORT const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 247 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 248 | // EVP_MD_CTX_size returns the digest size of |ctx|, in bytes. It |
| 249 | // will crash if a digest hasn't been set on |ctx|. |
David Benjamin | 1a0a8b6 | 2016-04-16 15:23:54 -0400 | [diff] [blame] | 250 | OPENSSL_EXPORT size_t EVP_MD_CTX_size(const EVP_MD_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 251 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 252 | // EVP_MD_CTX_block_size returns the block size of the digest function used by |
| 253 | // |ctx|, in bytes. It will crash if a digest hasn't been set on |ctx|. |
David Benjamin | 1a0a8b6 | 2016-04-16 15:23:54 -0400 | [diff] [blame] | 254 | OPENSSL_EXPORT size_t EVP_MD_CTX_block_size(const EVP_MD_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 255 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 256 | // EVP_MD_CTX_type returns a NID describing the digest function used by |ctx|. |
| 257 | // (For example, |NID_sha256|.) It will crash if a digest hasn't been set on |
| 258 | // |ctx|. |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 259 | OPENSSL_EXPORT int EVP_MD_CTX_type(const EVP_MD_CTX *ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 260 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 261 | |
| 262 | struct evp_md_pctx_ops; |
| 263 | |
| 264 | struct env_md_ctx_st { |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 265 | // digest is the underlying digest function, or NULL if not set. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 266 | const EVP_MD *digest; |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 267 | // md_data points to a block of memory that contains the hash-specific |
| 268 | // context. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 269 | void *md_data; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 270 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 271 | // pctx is an opaque (at this layer) pointer to additional context that |
| 272 | // EVP_PKEY functions may store in this object. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 273 | EVP_PKEY_CTX *pctx; |
| 274 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 275 | // pctx_ops, if not NULL, points to a vtable that contains functions to |
| 276 | // manipulate |pctx|. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 277 | const struct evp_md_pctx_ops *pctx_ops; |
| 278 | } /* EVP_MD_CTX */; |
| 279 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 280 | |
| 281 | #if defined(__cplusplus) |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 282 | } // extern C |
David Benjamin | f0e935d | 2016-09-06 18:10:19 -0400 | [diff] [blame] | 283 | |
| 284 | #if !defined(BORINGSSL_NO_CXX) |
| 285 | extern "C++" { |
| 286 | |
| 287 | namespace bssl { |
| 288 | |
| 289 | BORINGSSL_MAKE_DELETER(EVP_MD_CTX, EVP_MD_CTX_destroy) |
| 290 | |
| 291 | using ScopedEVP_MD_CTX = |
| 292 | internal::StackAllocated<EVP_MD_CTX, int, EVP_MD_CTX_init, |
| 293 | EVP_MD_CTX_cleanup>; |
| 294 | |
| 295 | } // namespace bssl |
| 296 | |
| 297 | } // extern C++ |
| 298 | #endif |
| 299 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 300 | #endif |
| 301 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 302 | #define DIGEST_R_INPUT_NOT_INITIALIZED 100 |
David Benjamin | 3cb047e | 2017-03-14 00:48:11 -0400 | [diff] [blame] | 303 | #define DIGEST_R_DECODE_ERROR 101 |
| 304 | #define DIGEST_R_UNKNOWN_HASH 102 |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 305 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 306 | #endif // OPENSSL_HEADER_DIGEST_H |