HMAC.pod 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. =pod
  2. =head1 NAME
  3. HMAC,
  4. HMAC_CTX_new,
  5. HMAC_CTX_reset,
  6. HMAC_CTX_free,
  7. HMAC_Init,
  8. HMAC_Init_ex,
  9. HMAC_Update,
  10. HMAC_Final,
  11. HMAC_CTX_copy,
  12. HMAC_CTX_set_flags,
  13. HMAC_CTX_get_md,
  14. HMAC_size
  15. - HMAC message authentication code
  16. =head1 SYNOPSIS
  17. #include <openssl/hmac.h>
  18. unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
  19. const unsigned char *data, size_t data_len,
  20. unsigned char *md, unsigned int *md_len);
  21. The following functions have been deprecated since OpenSSL 3.0, and can be
  22. hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
  23. see L<openssl_user_macros(7)>:
  24. HMAC_CTX *HMAC_CTX_new(void);
  25. int HMAC_CTX_reset(HMAC_CTX *ctx);
  26. int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int key_len,
  27. const EVP_MD *md, ENGINE *impl);
  28. int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len);
  29. int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len);
  30. void HMAC_CTX_free(HMAC_CTX *ctx);
  31. int HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx);
  32. void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags);
  33. const EVP_MD *HMAC_CTX_get_md(const HMAC_CTX *ctx);
  34. size_t HMAC_size(const HMAC_CTX *e);
  35. The following function has been deprecated since OpenSSL 1.1.0, and can be
  36. hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
  37. see L<openssl_user_macros(7)>:
  38. int HMAC_Init(HMAC_CTX *ctx, const void *key, int key_len,
  39. const EVP_MD *md);
  40. =head1 DESCRIPTION
  41. HMAC is a MAC (message authentication code), i.e. a keyed hash
  42. function used for message authentication, which is based on a hash
  43. function.
  44. HMAC() computes the message authentication code of the I<data_len> bytes at
  45. I<data> using the hash function I<evp_md> and the key I<key> which is
  46. I<key_len> bytes long. The I<key> may also be NULL with I<key_len> being 0.
  47. It places the result in I<md> (which must have space for the output of
  48. the hash function, which is no more than B<EVP_MAX_MD_SIZE> bytes).
  49. If I<md> is NULL, the digest is placed in a static array. The size of
  50. the output is placed in I<md_len>, unless it is NULL. Note: passing a NULL
  51. value for I<md> to use the static array is not thread safe.
  52. I<evp_md> is a message digest such as EVP_sha1(), EVP_ripemd160() etc.
  53. HMAC does not support variable output length digests such as EVP_shake128() and
  54. EVP_shake256().
  55. All of the functions described below are deprecated.
  56. Applications should instead use L<EVP_MAC_CTX_new(3)>, L<EVP_MAC_CTX_free(3)>,
  57. L<EVP_MAC_init(3)>, L<EVP_MAC_update(3)> and L<EVP_MAC_final(3)>
  58. or the 'quick' single-shot MAC function L<EVP_Q_mac(3)>.
  59. HMAC_CTX_new() creates a new HMAC_CTX in heap memory.
  60. HMAC_CTX_reset() clears an existing B<HMAC_CTX> and associated
  61. resources, making it suitable for new computations as if it was newly
  62. created with HMAC_CTX_new().
  63. HMAC_CTX_free() erases the key and other data from the B<HMAC_CTX>,
  64. releases any associated resources and finally frees the B<HMAC_CTX>
  65. itself.
  66. The following functions may be used if the message is not completely
  67. stored in memory:
  68. HMAC_Init_ex() initializes or reuses a B<HMAC_CTX> structure to use the hash
  69. function I<evp_md> and key I<key>. If both are NULL, or if I<key> is NULL
  70. and I<evp_md> is the same as the previous call, then the
  71. existing key is
  72. reused. I<ctx> must have been created with HMAC_CTX_new() before the first use
  73. of an B<HMAC_CTX> in this function.
  74. If HMAC_Init_ex() is called with I<key> NULL and I<evp_md> is not the
  75. same as the previous digest used by I<ctx> then an error is returned
  76. because reuse of an existing key with a different digest is not supported.
  77. HMAC_Init() initializes a B<HMAC_CTX> structure to use the hash
  78. function I<evp_md> and the key I<key> which is I<key_len> bytes
  79. long.
  80. HMAC_Update() can be called repeatedly with chunks of the message to
  81. be authenticated (I<len> bytes at I<data>).
  82. HMAC_Final() places the message authentication code in I<md>, which
  83. must have space for the hash function output.
  84. HMAC_CTX_copy() copies all of the internal state from I<sctx> into I<dctx>.
  85. HMAC_CTX_set_flags() applies the specified flags to the internal EVP_MD_CTXs.
  86. These flags have the same meaning as for L<EVP_MD_CTX_set_flags(3)>.
  87. HMAC_CTX_get_md() returns the EVP_MD that has previously been set for the
  88. supplied HMAC_CTX.
  89. HMAC_size() returns the length in bytes of the underlying hash function output.
  90. =head1 RETURN VALUES
  91. HMAC() returns a pointer to the message authentication code or NULL if
  92. an error occurred.
  93. HMAC_CTX_new() returns a pointer to a new B<HMAC_CTX> on success or
  94. NULL if an error occurred.
  95. HMAC_CTX_reset(), HMAC_Init_ex(), HMAC_Update(), HMAC_Final() and
  96. HMAC_CTX_copy() return 1 for success or 0 if an error occurred.
  97. HMAC_CTX_get_md() return the EVP_MD previously set for the supplied HMAC_CTX or
  98. NULL if no EVP_MD has been set.
  99. HMAC_size() returns the length in bytes of the underlying hash function output
  100. or zero on error.
  101. =head1 CONFORMING TO
  102. RFC 2104
  103. =head1 SEE ALSO
  104. L<SHA1(3)>, EVP_Q_mac(3), L<evp(7)>
  105. =head1 HISTORY
  106. All functions except for HMAC() were deprecated in OpenSSL 3.0.
  107. HMAC_CTX_init() was replaced with HMAC_CTX_reset() in OpenSSL 1.1.0.
  108. HMAC_CTX_cleanup() existed in OpenSSL before version 1.1.0.
  109. HMAC_CTX_new(), HMAC_CTX_free() and HMAC_CTX_get_md() are new in OpenSSL 1.1.0.
  110. HMAC_Init_ex(), HMAC_Update() and HMAC_Final() did not return values in
  111. OpenSSL before version 1.0.0.
  112. =head1 COPYRIGHT
  113. Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
  114. Licensed under the Apache License 2.0 (the "License"). You may not use
  115. this file except in compliance with the License. You can obtain a copy
  116. in the file LICENSE in the source distribution or at
  117. L<https://www.openssl.org/source/license.html>.
  118. =cut