HMAC.pod 5.5 KB

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