EVP_MD_meth_new.pod 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. =pod
  2. =head1 NAME
  3. EVP_MD_meth_dup,
  4. EVP_MD_meth_new, EVP_MD_meth_free, EVP_MD_meth_set_input_blocksize,
  5. EVP_MD_meth_set_result_size, EVP_MD_meth_set_app_datasize,
  6. EVP_MD_meth_set_flags, EVP_MD_meth_set_init, EVP_MD_meth_set_update,
  7. EVP_MD_meth_set_final, EVP_MD_meth_set_copy, EVP_MD_meth_set_cleanup,
  8. EVP_MD_meth_set_ctrl, EVP_MD_meth_get_input_blocksize,
  9. EVP_MD_meth_get_result_size, EVP_MD_meth_get_app_datasize,
  10. EVP_MD_meth_get_flags, EVP_MD_meth_get_init, EVP_MD_meth_get_update,
  11. EVP_MD_meth_get_final, EVP_MD_meth_get_copy, EVP_MD_meth_get_cleanup,
  12. EVP_MD_meth_get_ctrl
  13. - Routines to build up EVP_MD methods
  14. =head1 SYNOPSIS
  15. #include <openssl/evp.h>
  16. EVP_MD *EVP_MD_meth_new(int md_type, int pkey_type);
  17. void EVP_MD_meth_free(EVP_MD *md);
  18. EVP_MD *EVP_MD_meth_dup(const EVP_MD *md);
  19. int EVP_MD_meth_set_input_blocksize(EVP_MD *md, int blocksize);
  20. int EVP_MD_meth_set_result_size(EVP_MD *md, int resultsize);
  21. int EVP_MD_meth_set_app_datasize(EVP_MD *md, int datasize);
  22. int EVP_MD_meth_set_flags(EVP_MD *md, unsigned long flags);
  23. int EVP_MD_meth_set_init(EVP_MD *md, int (*init)(EVP_MD_CTX *ctx));
  24. int EVP_MD_meth_set_update(EVP_MD *md, int (*update)(EVP_MD_CTX *ctx,
  25. const void *data,
  26. size_t count));
  27. int EVP_MD_meth_set_final(EVP_MD *md, int (*final)(EVP_MD_CTX *ctx,
  28. unsigned char *md));
  29. int EVP_MD_meth_set_copy(EVP_MD *md, int (*copy)(EVP_MD_CTX *to,
  30. const EVP_MD_CTX *from));
  31. int EVP_MD_meth_set_cleanup(EVP_MD *md, int (*cleanup)(EVP_MD_CTX *ctx));
  32. int EVP_MD_meth_set_ctrl(EVP_MD *md, int (*ctrl)(EVP_MD_CTX *ctx, int cmd,
  33. int p1, void *p2));
  34. int EVP_MD_meth_get_input_blocksize(const EVP_MD *md);
  35. int EVP_MD_meth_get_result_size(const EVP_MD *md);
  36. int EVP_MD_meth_get_app_datasize(const EVP_MD *md);
  37. unsigned long EVP_MD_meth_get_flags(const EVP_MD *md);
  38. int (*EVP_MD_meth_get_init(const EVP_MD *md))(EVP_MD_CTX *ctx);
  39. int (*EVP_MD_meth_get_update(const EVP_MD *md))(EVP_MD_CTX *ctx,
  40. const void *data,
  41. size_t count);
  42. int (*EVP_MD_meth_get_final(const EVP_MD *md))(EVP_MD_CTX *ctx,
  43. unsigned char *md);
  44. int (*EVP_MD_meth_get_copy(const EVP_MD *md))(EVP_MD_CTX *to,
  45. const EVP_MD_CTX *from);
  46. int (*EVP_MD_meth_get_cleanup(const EVP_MD *md))(EVP_MD_CTX *ctx);
  47. int (*EVP_MD_meth_get_ctrl(const EVP_MD *md))(EVP_MD_CTX *ctx, int cmd,
  48. int p1, void *p2);
  49. =head1 DESCRIPTION
  50. The B<EVP_MD> type is a structure for digest method implementation.
  51. It can also have associated public/private key signing and verifying
  52. routines.
  53. EVP_MD_meth_new() creates a new B<EVP_MD> structure.
  54. EVP_MD_meth_dup() creates a copy of B<md>.
  55. EVP_MD_meth_free() destroys a B<EVP_MD> structure.
  56. EVP_MD_meth_set_input_blocksize() sets the internal input block size
  57. for the method B<md> to B<blocksize> bytes.
  58. EVP_MD_meth_set_result_size() sets the size of the result that the
  59. digest method in B<md> is expected to produce to B<resultsize> bytes.
  60. The digest method may have its own private data, which OpenSSL will
  61. allocate for it. EVP_MD_meth_set_app_datasize() should be used to
  62. set the size for it to B<datasize>.
  63. EVP_MD_meth_set_flags() sets the flags to describe optional
  64. behaviours in the particular B<md>. Several flags can be or'd
  65. together. The available flags are:
  66. =over 4
  67. =item EVP_MD_FLAG_ONESHOT
  68. This digest method can only handles one block of input.
  69. =item EVP_MD_FLAG_DIGALGID_NULL
  70. When setting up a DigestAlgorithmIdentifier, this flag will have the
  71. parameter set to NULL by default. Use this for PKCS#1. I<Note: if
  72. combined with EVP_MD_FLAG_DIGALGID_ABSENT, the latter will override.>
  73. =item EVP_MD_FLAG_DIGALGID_ABSENT
  74. When setting up a DigestAlgorithmIdentifier, this flag will have the
  75. parameter be left absent by default. I<Note: if combined with
  76. EVP_MD_FLAG_DIGALGID_NULL, the latter will be overridden.>
  77. =item EVP_MD_FLAG_DIGALGID_CUSTOM
  78. Custom DigestAlgorithmIdentifier handling via ctrl, with
  79. B<EVP_MD_FLAG_DIGALGID_ABSENT> as default. I<Note: if combined with
  80. EVP_MD_FLAG_DIGALGID_NULL, the latter will be overridden.>
  81. Currently unused.
  82. =back
  83. EVP_MD_meth_set_init() sets the digest init function for B<md>.
  84. The digest init function is called by EVP_DigestInit(),
  85. EVP_DigestInit_ex(), EVP_SignInit, EVP_SignInit_ex(), EVP_VerifyInit()
  86. and EVP_VerifyInit_ex().
  87. EVP_MD_meth_set_update() sets the digest update function for B<md>.
  88. The digest update function is called by EVP_DigestUpdate(),
  89. EVP_SignUpdate().
  90. EVP_MD_meth_set_final() sets the digest final function for B<md>.
  91. The digest final function is called by EVP_DigestFinal(),
  92. EVP_DigestFinal_ex(), EVP_SignFinal() and EVP_VerifyFinal().
  93. EVP_MD_meth_set_copy() sets the function for B<md> to do extra
  94. computations after the method's private data structure has been copied
  95. from one B<EVP_MD_CTX> to another. If all that's needed is to copy
  96. the data, there is no need for this copy function.
  97. Note that the copy function is passed two B<EVP_MD_CTX *>, the private
  98. data structure is then available with EVP_MD_CTX_md_data().
  99. This copy function is called by EVP_MD_CTX_copy() and
  100. EVP_MD_CTX_copy_ex().
  101. EVP_MD_meth_set_cleanup() sets the function for B<md> to do extra
  102. cleanup before the method's private data structure is cleaned out and
  103. freed.
  104. Note that the cleanup function is passed a B<EVP_MD_CTX *>, the
  105. private data structure is then available with EVP_MD_CTX_md_data().
  106. This cleanup function is called by EVP_MD_CTX_reset() and
  107. EVP_MD_CTX_free().
  108. EVP_MD_meth_set_ctrl() sets the control function for B<md>.
  109. EVP_MD_meth_get_input_blocksize(), EVP_MD_meth_get_result_size(),
  110. EVP_MD_meth_get_app_datasize(), EVP_MD_meth_get_flags(),
  111. EVP_MD_meth_get_init(), EVP_MD_meth_get_update(),
  112. EVP_MD_meth_get_final(), EVP_MD_meth_get_copy(),
  113. EVP_MD_meth_get_cleanup() and EVP_MD_meth_get_ctrl() are all used
  114. to retrieve the method data given with the EVP_MD_meth_set_*()
  115. functions above.
  116. =head1 RETURN VALUES
  117. EVP_MD_meth_new() and EVP_MD_meth_dup() return a pointer to a newly
  118. created B<EVP_MD>, or NULL on failure.
  119. All EVP_MD_meth_set_*() functions return 1.
  120. EVP_MD_get_input_blocksize(), EVP_MD_meth_get_result_size(),
  121. EVP_MD_meth_get_app_datasize() and EVP_MD_meth_get_flags() return the
  122. indicated sizes or flags.
  123. All other EVP_CIPHER_meth_get_*() functions return pointers to their
  124. respective B<md> function.
  125. =head1 SEE ALSO
  126. L<EVP_DigestInit(3)>, L<EVP_SignInit(3)>, L<EVP_VerifyInit(3)>
  127. =head1 HISTORY
  128. The B<EVP_MD> structure was openly available in OpenSSL before version
  129. 1.1. The functions described here were added in OpenSSL 1.1.
  130. =head1 COPYRIGHT
  131. Copyright 2015-2017 The OpenSSL Project Authors. All Rights Reserved.
  132. Licensed under the OpenSSL license (the "License"). You may not use
  133. this file except in compliance with the License. You can obtain a copy
  134. in the file LICENSE in the source distribution or at
  135. L<https://www.openssl.org/source/license.html>.
  136. =cut