EVP_DigestInit.pod 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. =pod
  2. =head1 NAME
  3. EVP_MD_CTX_init, EVP_MD_CTX_create, EVP_DigestInit_ex, EVP_DigestUpdate,
  4. EVP_DigestFinal_ex, EVP_MD_CTX_cleanup, EVP_MD_CTX_destroy, EVP_MAX_MD_SIZE,
  5. EVP_MD_CTX_copy_ex, EVP_DigestInit, EVP_DigestFinal, EVP_MD_CTX_copy, EVP_MD_type,
  6. EVP_MD_pkey_type, EVP_MD_size, EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size,
  7. EVP_MD_CTX_block_size, EVP_MD_CTX_type, EVP_md_null, EVP_md2, EVP_md5, EVP_sha, EVP_sha1,
  8. EVP_sha224, EVP_sha256, EVP_sha384, EVP_sha512, EVP_dss, EVP_dss1, EVP_mdc2,
  9. EVP_ripemd160, EVP_get_digestbyname, EVP_get_digestbynid, EVP_get_digestbyobj -
  10. EVP digest routines
  11. =head1 SYNOPSIS
  12. #include <openssl/evp.h>
  13. void EVP_MD_CTX_init(EVP_MD_CTX *ctx);
  14. EVP_MD_CTX *EVP_MD_CTX_create(void);
  15. int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl);
  16. int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *d, size_t cnt);
  17. int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md,
  18. unsigned int *s);
  19. int EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx);
  20. void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx);
  21. int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out,const EVP_MD_CTX *in);
  22. int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type);
  23. int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md,
  24. unsigned int *s);
  25. int EVP_MD_CTX_copy(EVP_MD_CTX *out,EVP_MD_CTX *in);
  26. #define EVP_MAX_MD_SIZE 64 /* SHA512 */
  27. int EVP_MD_type(const EVP_MD *md);
  28. int EVP_MD_pkey_type(const EVP_MD *md);
  29. int EVP_MD_size(const EVP_MD *md);
  30. int EVP_MD_block_size(const EVP_MD *md);
  31. const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx);
  32. #define EVP_MD_CTX_size(e) EVP_MD_size(EVP_MD_CTX_md(e))
  33. #define EVP_MD_CTX_block_size(e) EVP_MD_block_size((e)->digest)
  34. #define EVP_MD_CTX_type(e) EVP_MD_type((e)->digest)
  35. const EVP_MD *EVP_md_null(void);
  36. const EVP_MD *EVP_md2(void);
  37. const EVP_MD *EVP_md5(void);
  38. const EVP_MD *EVP_sha(void);
  39. const EVP_MD *EVP_sha1(void);
  40. const EVP_MD *EVP_dss(void);
  41. const EVP_MD *EVP_dss1(void);
  42. const EVP_MD *EVP_mdc2(void);
  43. const EVP_MD *EVP_ripemd160(void);
  44. const EVP_MD *EVP_sha224(void);
  45. const EVP_MD *EVP_sha256(void);
  46. const EVP_MD *EVP_sha384(void);
  47. const EVP_MD *EVP_sha512(void);
  48. const EVP_MD *EVP_get_digestbyname(const char *name);
  49. #define EVP_get_digestbynid(a) EVP_get_digestbyname(OBJ_nid2sn(a))
  50. #define EVP_get_digestbyobj(a) EVP_get_digestbynid(OBJ_obj2nid(a))
  51. =head1 DESCRIPTION
  52. The EVP digest routines are a high level interface to message digests.
  53. EVP_MD_CTX_init() initializes digest context B<ctx>.
  54. EVP_MD_CTX_create() allocates, initializes and returns a digest context.
  55. EVP_DigestInit_ex() sets up digest context B<ctx> to use a digest
  56. B<type> from ENGINE B<impl>. B<ctx> must be initialized before calling this
  57. function. B<type> will typically be supplied by a functionsuch as EVP_sha1().
  58. If B<impl> is NULL then the default implementation of digest B<type> is used.
  59. EVP_DigestUpdate() hashes B<cnt> bytes of data at B<d> into the
  60. digest context B<ctx>. This function can be called several times on the
  61. same B<ctx> to hash additional data.
  62. EVP_DigestFinal_ex() retrieves the digest value from B<ctx> and places
  63. it in B<md>. If the B<s> parameter is not NULL then the number of
  64. bytes of data written (i.e. the length of the digest) will be written
  65. to the integer at B<s>, at most B<EVP_MAX_MD_SIZE> bytes will be written.
  66. After calling EVP_DigestFinal_ex() no additional calls to EVP_DigestUpdate()
  67. can be made, but EVP_DigestInit_ex() can be called to initialize a new
  68. digest operation.
  69. EVP_MD_CTX_cleanup() cleans up digest context B<ctx>, it should be called
  70. after a digest context is no longer needed.
  71. EVP_MD_CTX_destroy() cleans up digest context B<ctx> and frees up the
  72. space allocated to it, it should be called only on a context created
  73. using EVP_MD_CTX_create().
  74. EVP_MD_CTX_copy_ex() can be used to copy the message digest state from
  75. B<in> to B<out>. This is useful if large amounts of data are to be
  76. hashed which only differ in the last few bytes. B<out> must be initialized
  77. before calling this function.
  78. EVP_DigestInit() behaves in the same way as EVP_DigestInit_ex() except
  79. the passed context B<ctx> does not have to be initialized, and it always
  80. uses the default digest implementation.
  81. EVP_DigestFinal() is similar to EVP_DigestFinal_ex() except the digest
  82. context B<ctx> is automatically cleaned up.
  83. EVP_MD_CTX_copy() is similar to EVP_MD_CTX_copy_ex() except the destination
  84. B<out> does not have to be initialized.
  85. EVP_MD_size() and EVP_MD_CTX_size() return the size of the message digest
  86. when passed an B<EVP_MD> or an B<EVP_MD_CTX> structure, i.e. the size of the
  87. hash.
  88. EVP_MD_block_size() and EVP_MD_CTX_block_size() return the block size of the
  89. message digest when passed an B<EVP_MD> or an B<EVP_MD_CTX> structure.
  90. EVP_MD_type() and EVP_MD_CTX_type() return the NID of the OBJECT IDENTIFIER
  91. representing the given message digest when passed an B<EVP_MD> structure.
  92. For example EVP_MD_type(EVP_sha1()) returns B<NID_sha1>. This function is
  93. normally used when setting ASN1 OIDs.
  94. EVP_MD_CTX_md() returns the B<EVP_MD> structure corresponding to the passed
  95. B<EVP_MD_CTX>.
  96. EVP_MD_pkey_type() returns the NID of the public key signing algorithm associated
  97. with this digest. For example EVP_sha1() is associated with RSA so this will
  98. return B<NID_sha1WithRSAEncryption>. Since digests and signature algorithms
  99. are no longer linked this function is only retained for compatibility
  100. reasons.
  101. EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_sha224(), EVP_sha256(),
  102. EVP_sha384(), EVP_sha512(), EVP_mdc2() and EVP_ripemd160() return B<EVP_MD>
  103. structures for the MD2, MD5, SHA, SHA1, SHA224, SHA256, SHA384, SHA512, MDC2
  104. and RIPEMD160 digest algorithms respectively.
  105. EVP_dss() and EVP_dss1() return B<EVP_MD> structures for SHA and SHA1 digest
  106. algorithms but using DSS (DSA) for the signature algorithm. Note: there is
  107. no need to use these pseudo-digests in OpenSSL 1.0.0 and later, they are
  108. however retained for compatibility.
  109. EVP_md_null() is a "null" message digest that does nothing: i.e. the hash it
  110. returns is of zero length.
  111. EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj()
  112. return an B<EVP_MD> structure when passed a digest name, a digest NID or
  113. an ASN1_OBJECT structure respectively. The digest table must be initialized
  114. using, for example, OpenSSL_add_all_digests() for these functions to work.
  115. =head1 RETURN VALUES
  116. EVP_DigestInit_ex(), EVP_DigestUpdate() and EVP_DigestFinal_ex() return 1 for
  117. success and 0 for failure.
  118. EVP_MD_CTX_copy_ex() returns 1 if successful or 0 for failure.
  119. EVP_MD_type(), EVP_MD_pkey_type() and EVP_MD_type() return the NID of the
  120. corresponding OBJECT IDENTIFIER or NID_undef if none exists.
  121. EVP_MD_size(), EVP_MD_block_size(), EVP_MD_CTX_size() and
  122. EVP_MD_CTX_block_size() return the digest or block size in bytes.
  123. EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_dss(),
  124. EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return pointers to the
  125. corresponding EVP_MD structures.
  126. EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj()
  127. return either an B<EVP_MD> structure or NULL if an error occurs.
  128. =head1 NOTES
  129. The B<EVP> interface to message digests should almost always be used in
  130. preference to the low level interfaces. This is because the code then becomes
  131. transparent to the digest used and much more flexible.
  132. New applications should use the SHA2 digest algorithms such as SHA256.
  133. The other digest algorithms are still in common use.
  134. For most applications the B<impl> parameter to EVP_DigestInit_ex() will be
  135. set to NULL to use the default digest implementation.
  136. The functions EVP_DigestInit(), EVP_DigestFinal() and EVP_MD_CTX_copy() are
  137. obsolete but are retained to maintain compatibility with existing code. New
  138. applications should use EVP_DigestInit_ex(), EVP_DigestFinal_ex() and
  139. EVP_MD_CTX_copy_ex() because they can efficiently reuse a digest context
  140. instead of initializing and cleaning it up on each call and allow non default
  141. implementations of digests to be specified.
  142. In OpenSSL 0.9.7 and later if digest contexts are not cleaned up after use
  143. memory leaks will occur.
  144. Stack allocation of EVP_MD_CTX structures is common, for example:
  145. EVP_MD_CTX mctx;
  146. EVP_MD_CTX_init(&mctx);
  147. This will cause binary compatibility issues if the size of EVP_MD_CTX
  148. structure changes (this will only happen with a major release of OpenSSL).
  149. Applications wishing to avoid this should use EVP_MD_CTX_create() instead:
  150. EVP_MD_CTX *mctx;
  151. mctx = EVP_MD_CTX_create();
  152. =head1 EXAMPLE
  153. This example digests the data "Test Message\n" and "Hello World\n", using the
  154. digest name passed on the command line.
  155. #include <stdio.h>
  156. #include <openssl/evp.h>
  157. main(int argc, char *argv[])
  158. {
  159. EVP_MD_CTX *mdctx;
  160. const EVP_MD *md;
  161. char mess1[] = "Test Message\n";
  162. char mess2[] = "Hello World\n";
  163. unsigned char md_value[EVP_MAX_MD_SIZE];
  164. int md_len, i;
  165. OpenSSL_add_all_digests();
  166. if(!argv[1]) {
  167. printf("Usage: mdtest digestname\n");
  168. exit(1);
  169. }
  170. md = EVP_get_digestbyname(argv[1]);
  171. if(!md) {
  172. printf("Unknown message digest %s\n", argv[1]);
  173. exit(1);
  174. }
  175. mdctx = EVP_MD_CTX_create();
  176. EVP_DigestInit_ex(mdctx, md, NULL);
  177. EVP_DigestUpdate(mdctx, mess1, strlen(mess1));
  178. EVP_DigestUpdate(mdctx, mess2, strlen(mess2));
  179. EVP_DigestFinal_ex(mdctx, md_value, &md_len);
  180. EVP_MD_CTX_destroy(mdctx);
  181. printf("Digest is: ");
  182. for(i = 0; i < md_len; i++)
  183. printf("%02x", md_value[i]);
  184. printf("\n");
  185. /* Call this once before exit. */
  186. EVP_cleanup();
  187. exit(0);
  188. }
  189. =head1 SEE ALSO
  190. L<dgst(1)|dgst(1)>,
  191. L<evp(3)|evp(3)>
  192. =head1 HISTORY
  193. EVP_DigestInit(), EVP_DigestUpdate() and EVP_DigestFinal() are
  194. available in all versions of SSLeay and OpenSSL.
  195. EVP_MD_CTX_init(), EVP_MD_CTX_create(), EVP_MD_CTX_copy_ex(),
  196. EVP_MD_CTX_cleanup(), EVP_MD_CTX_destroy(), EVP_DigestInit_ex()
  197. and EVP_DigestFinal_ex() were added in OpenSSL 0.9.7.
  198. EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(),
  199. EVP_dss(), EVP_dss1(), EVP_mdc2() and EVP_ripemd160() were
  200. changed to return truly const EVP_MD * in OpenSSL 0.9.7.
  201. The link between digests and signing algorithms was fixed in OpenSSL 1.0 and
  202. later, so now EVP_sha1() can be used with RSA and DSA; there is no need to
  203. use EVP_dss1() any more.
  204. OpenSSL 1.0 and later does not include the MD2 digest algorithm in the
  205. default configuration due to its security weaknesses.
  206. =cut