EVP_DigestInit.pod 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. =pod
  2. =head1 NAME
  3. EVP_MD_CTX_new, EVP_MD_CTX_reset, EVP_MD_CTX_free, EVP_MD_CTX_copy_ex,
  4. EVP_MD_CTX_set_flags, EVP_MD_CTX_clear_flags, EVP_MD_CTX_test_flags,
  5. EVP_DigestInit_ex, EVP_DigestUpdate, EVP_DigestFinal_ex,
  6. EVP_DigestInit, EVP_DigestFinal, EVP_MD_CTX_copy, EVP_MD_type,
  7. EVP_MD_pkey_type, EVP_MD_size, EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size,
  8. EVP_MD_CTX_block_size, EVP_MD_CTX_type, EVP_MD_CTX_md_data, EVP_md_null, EVP_md2,
  9. EVP_md5, EVP_sha1, EVP_sha224, EVP_sha256, EVP_sha384, EVP_sha512, EVP_mdc2,
  10. EVP_ripemd160, EVP_blake2b512, EVP_blake2s256, EVP_get_digestbyname,
  11. EVP_get_digestbynid, EVP_get_digestbyobj - EVP digest routines
  12. =head1 SYNOPSIS
  13. #include <openssl/evp.h>
  14. EVP_MD_CTX *EVP_MD_CTX_new(void);
  15. int EVP_MD_CTX_reset(EVP_MD_CTX *ctx);
  16. void EVP_MD_CTX_free(EVP_MD_CTX *ctx);
  17. void EVP_MD_CTX_set_flags(EVP_MD_CTX *ctx, int flags);
  18. void EVP_MD_CTX_clear_flags(EVP_MD_CTX *ctx, int flags);
  19. int EVP_MD_CTX_test_flags(const EVP_MD_CTX *ctx, int flags);
  20. int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl);
  21. int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt);
  22. int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md,
  23. unsigned int *s);
  24. int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in);
  25. int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type);
  26. int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md,
  27. unsigned int *s);
  28. int EVP_MD_CTX_copy(EVP_MD_CTX *out, EVP_MD_CTX *in);
  29. int EVP_MD_type(const EVP_MD *md);
  30. int EVP_MD_pkey_type(const EVP_MD *md);
  31. int EVP_MD_size(const EVP_MD *md);
  32. int EVP_MD_block_size(const EVP_MD *md);
  33. const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx);
  34. int EVP_MD_CTX_size(const EVP_MD *ctx);
  35. int EVP_MD_CTX_block_size(const EVP_MD *ctx);
  36. int EVP_MD_CTX_type(const EVP_MD *ctx);
  37. void *EVP_MD_CTX_md_data(const EVP_MD_CTX *ctx);
  38. const EVP_MD *EVP_md_null(void);
  39. const EVP_MD *EVP_md2(void);
  40. const EVP_MD *EVP_md5(void);
  41. const EVP_MD *EVP_sha1(void);
  42. const EVP_MD *EVP_mdc2(void);
  43. const EVP_MD *EVP_ripemd160(void);
  44. const EVP_MD *EVP_blake2b512(void);
  45. const EVP_MD *EVP_blake2s256(void);
  46. const EVP_MD *EVP_sha224(void);
  47. const EVP_MD *EVP_sha256(void);
  48. const EVP_MD *EVP_sha384(void);
  49. const EVP_MD *EVP_sha512(void);
  50. const EVP_MD *EVP_get_digestbyname(const char *name);
  51. const EVP_MD *EVP_get_digestbynid(int type);
  52. const EVP_MD *EVP_get_digestbyobj(const ASN1_OBJECT *o);
  53. =head1 DESCRIPTION
  54. The EVP digest routines are a high level interface to message digests,
  55. and should be used instead of the cipher-specific functions.
  56. EVP_MD_CTX_new() allocates, initializes and returns a digest context.
  57. EVP_MD_CTX_reset() resets the digest context B<ctx>. This can be used
  58. to reuse an already existing context.
  59. EVP_MD_CTX_free() cleans up digest context B<ctx> and frees up the
  60. space allocated to it.
  61. EVP_MD_CTX_set_flags(), EVP_MD_CTX_clear_flags() and EVP_MD_CTX_test_flags()
  62. sets, clears and tests B<ctx> flags. See L</FLAGS> below for more information.
  63. EVP_DigestInit_ex() sets up digest context B<ctx> to use a digest
  64. B<type> from ENGINE B<impl>. B<ctx> must be initialized before calling this
  65. function. B<type> will typically be supplied by a function such as EVP_sha1().
  66. If B<impl> is NULL then the default implementation of digest B<type> is used.
  67. EVP_DigestUpdate() hashes B<cnt> bytes of data at B<d> into the
  68. digest context B<ctx>. This function can be called several times on the
  69. same B<ctx> to hash additional data.
  70. EVP_DigestFinal_ex() retrieves the digest value from B<ctx> and places
  71. it in B<md>. If the B<s> parameter is not NULL then the number of
  72. bytes of data written (i.e. the length of the digest) will be written
  73. to the integer at B<s>, at most B<EVP_MAX_MD_SIZE> bytes will be written.
  74. After calling EVP_DigestFinal_ex() no additional calls to EVP_DigestUpdate()
  75. can be made, but EVP_DigestInit_ex() can be called to initialize a new
  76. digest operation.
  77. EVP_MD_CTX_copy_ex() can be used to copy the message digest state from
  78. B<in> to B<out>. This is useful if large amounts of data are to be
  79. hashed which only differ in the last few bytes. B<out> must be initialized
  80. before calling this function.
  81. EVP_DigestInit() behaves in the same way as EVP_DigestInit_ex() except
  82. the passed context B<ctx> does not have to be initialized, and it always
  83. uses the default digest implementation.
  84. EVP_DigestFinal() is similar to EVP_DigestFinal_ex() except the digest
  85. context B<ctx> is automatically cleaned up.
  86. EVP_MD_CTX_copy() is similar to EVP_MD_CTX_copy_ex() except the destination
  87. B<out> does not have to be initialized.
  88. EVP_MD_size() and EVP_MD_CTX_size() return the size of the message digest
  89. when passed an B<EVP_MD> or an B<EVP_MD_CTX> structure, i.e. the size of the
  90. hash.
  91. EVP_MD_block_size() and EVP_MD_CTX_block_size() return the block size of the
  92. message digest when passed an B<EVP_MD> or an B<EVP_MD_CTX> structure.
  93. EVP_MD_type() and EVP_MD_CTX_type() return the NID of the OBJECT IDENTIFIER
  94. representing the given message digest when passed an B<EVP_MD> structure.
  95. For example EVP_MD_type(EVP_sha1()) returns B<NID_sha1>. This function is
  96. normally used when setting ASN1 OIDs.
  97. EVP_MD_CTX_md_data() return the digest method private data for the passed
  98. B<EVP_MD_CTX>.
  99. The space is allocated by OpenSSL and has the size originally set with
  100. EVP_MD_meth_set_app_datasize().
  101. EVP_MD_CTX_md() returns the B<EVP_MD> structure corresponding to the passed
  102. B<EVP_MD_CTX>.
  103. EVP_MD_pkey_type() returns the NID of the public key signing algorithm associated
  104. with this digest. For example EVP_sha1() is associated with RSA so this will
  105. return B<NID_sha1WithRSAEncryption>. Since digests and signature algorithms
  106. are no longer linked this function is only retained for compatibility
  107. reasons.
  108. EVP_md2(), EVP_md5(), EVP_sha1(), EVP_sha224(), EVP_sha256(),
  109. EVP_sha384(), EVP_sha512(), EVP_mdc2(), EVP_ripemd160(), EVP_blake2b512(), and
  110. EVP_blake2s256() return B<EVP_MD> structures for the MD2, MD5, SHA1, SHA224,
  111. SHA256, SHA384, SHA512, MDC2, RIPEMD160, BLAKE2b-512, and BLAKE2s-256 digest
  112. algorithms respectively.
  113. EVP_md_null() is a "null" message digest that does nothing: i.e. the hash it
  114. returns is of zero length.
  115. EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj()
  116. return an B<EVP_MD> structure when passed a digest name, a digest NID or
  117. an ASN1_OBJECT structure respectively.
  118. =head1 FLAGS
  119. EVP_MD_CTX_set_flags(), EVP_MD_CTX_clear_flags() and EVP_MD_CTX_test_flags()
  120. can be used the manipulate and test these B<EVP_MD_CTX> flags:
  121. =over 4
  122. =item EVP_MD_CTX_FLAG_ONESHOT
  123. This flag instructs the digest to optimize for one update only, if possible.
  124. =for comment EVP_MD_CTX_FLAG_CLEANED is internal, don't mention it
  125. =for comment EVP_MD_CTX_FLAG_REUSE is internal, don't mention it
  126. =for comment We currently avoid documenting flags that are only bit holder:
  127. EVP_MD_CTX_FLAG_NON_FIPS_ALLOW, EVP_MD_CTX_FLAGS_PAD_*
  128. =item EVP_MD_CTX_FLAG_NO_INIT
  129. This flag instructs EVP_DigestInit() and similar not to initialise the
  130. implementation specific data.
  131. =item EVP_MD_CTX_FLAG_FINALISE
  132. Some functions such as EVP_DigestSign only finalise copies of internal
  133. contexts so additional data can be included after the finalisation call.
  134. This is inefficient if this functionality is not required, and can be
  135. disabled with this flag.
  136. =back
  137. =head1 RETURN VALUES
  138. EVP_DigestInit_ex(), EVP_DigestUpdate() and EVP_DigestFinal_ex() return 1 for
  139. success and 0 for failure.
  140. EVP_MD_CTX_copy_ex() returns 1 if successful or 0 for failure.
  141. EVP_MD_type(), EVP_MD_pkey_type() and EVP_MD_type() return the NID of the
  142. corresponding OBJECT IDENTIFIER or NID_undef if none exists.
  143. EVP_MD_size(), EVP_MD_block_size(), EVP_MD_CTX_size() and
  144. EVP_MD_CTX_block_size() return the digest or block size in bytes.
  145. EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha1(),
  146. EVP_mdc2(), EVP_ripemd160(), EVP_blake2b512(), and EVP_blake2s256() return
  147. pointers to the corresponding EVP_MD structures.
  148. EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj()
  149. return either an B<EVP_MD> structure or NULL if an error occurs.
  150. =head1 NOTES
  151. The B<EVP> interface to message digests should almost always be used in
  152. preference to the low level interfaces. This is because the code then becomes
  153. transparent to the digest used and much more flexible.
  154. New applications should use the SHA2 digest algorithms such as SHA256.
  155. The other digest algorithms are still in common use.
  156. For most applications the B<impl> parameter to EVP_DigestInit_ex() will be
  157. set to NULL to use the default digest implementation.
  158. The functions EVP_DigestInit(), EVP_DigestFinal() and EVP_MD_CTX_copy() are
  159. obsolete but are retained to maintain compatibility with existing code. New
  160. applications should use EVP_DigestInit_ex(), EVP_DigestFinal_ex() and
  161. EVP_MD_CTX_copy_ex() because they can efficiently reuse a digest context
  162. instead of initializing and cleaning it up on each call and allow non default
  163. implementations of digests to be specified.
  164. If digest contexts are not cleaned up after use,
  165. memory leaks will occur.
  166. EVP_MD_CTX_size(), EVP_MD_CTX_block_size(), EVP_MD_CTX_type(),
  167. EVP_get_digestbynid() and EVP_get_digestbyobj() are defined as
  168. macros.
  169. =head1 EXAMPLE
  170. This example digests the data "Test Message\n" and "Hello World\n", using the
  171. digest name passed on the command line.
  172. #include <stdio.h>
  173. #include <openssl/evp.h>
  174. main(int argc, char *argv[])
  175. {
  176. EVP_MD_CTX *mdctx;
  177. const EVP_MD *md;
  178. char mess1[] = "Test Message\n";
  179. char mess2[] = "Hello World\n";
  180. unsigned char md_value[EVP_MAX_MD_SIZE];
  181. int md_len, i;
  182. if(!argv[1]) {
  183. printf("Usage: mdtest digestname\n");
  184. exit(1);
  185. }
  186. md = EVP_get_digestbyname(argv[1]);
  187. if(!md) {
  188. printf("Unknown message digest %s\n", argv[1]);
  189. exit(1);
  190. }
  191. mdctx = EVP_MD_CTX_new();
  192. EVP_DigestInit_ex(mdctx, md, NULL);
  193. EVP_DigestUpdate(mdctx, mess1, strlen(mess1));
  194. EVP_DigestUpdate(mdctx, mess2, strlen(mess2));
  195. EVP_DigestFinal_ex(mdctx, md_value, &md_len);
  196. EVP_MD_CTX_free(mdctx);
  197. printf("Digest is: ");
  198. for (i = 0; i < md_len; i++)
  199. printf("%02x", md_value[i]);
  200. printf("\n");
  201. exit(0);
  202. }
  203. =head1 SEE ALSO
  204. L<dgst(1)>,
  205. L<evp(7)>
  206. =head1 HISTORY
  207. B<EVP_MD_CTX> became opaque in OpenSSL 1.1. Consequently, stack
  208. allocated B<EVP_MD_CTX>s are no longer supported.
  209. EVP_MD_CTX_create() and EVP_MD_CTX_destroy() were renamed to
  210. EVP_MD_CTX_new() and EVP_MD_CTX_free() in OpenSSL 1.1.
  211. The link between digests and signing algorithms was fixed in OpenSSL 1.0 and
  212. later, so now EVP_sha1() can be used with RSA and DSA. The legacy EVP_dss1()
  213. was removed in OpenSSL 1.1.0
  214. =head1 COPYRIGHT
  215. Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
  216. Licensed under the OpenSSL license (the "License"). You may not use
  217. this file except in compliance with the License. You can obtain a copy
  218. in the file LICENSE in the source distribution or at
  219. L<https://www.openssl.org/source/license.html>.
  220. =cut