You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

hmac.h 1.9 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OPENSSL_HMAC_H
  10. #define OPENSSL_HMAC_H
  11. #pragma once
  12. #include <openssl/macros.h>
  13. #ifndef OPENSSL_NO_DEPRECATED_3_0
  14. #define HEADER_HMAC_H
  15. #endif
  16. #include <openssl/opensslconf.h>
  17. #include <openssl/evp.h>
  18. #ifndef OPENSSL_NO_DEPRECATED_3_0
  19. #define HMAC_MAX_MD_CBLOCK 200 /* Deprecated */
  20. #endif
  21. #ifdef __cplusplus
  22. extern "C"
  23. {
  24. #endif
  25. #ifndef OPENSSL_NO_DEPRECATED_3_0
  26. OSSL_DEPRECATEDIN_3_0 size_t HMAC_size(const HMAC_CTX* e);
  27. OSSL_DEPRECATEDIN_3_0 HMAC_CTX* HMAC_CTX_new(void);
  28. OSSL_DEPRECATEDIN_3_0 int HMAC_CTX_reset(HMAC_CTX* ctx);
  29. OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX* ctx);
  30. #endif
  31. #ifndef OPENSSL_NO_DEPRECATED_1_1_0
  32. OSSL_DEPRECATEDIN_1_1_0 __owur int HMAC_Init(HMAC_CTX* ctx, const void* key, int len, const EVP_MD* md);
  33. #endif
  34. #ifndef OPENSSL_NO_DEPRECATED_3_0
  35. OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX* ctx, const void* key, int len, const EVP_MD* md, ENGINE* impl);
  36. OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX* ctx, const unsigned char* data, size_t len);
  37. OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX* ctx, unsigned char* md, unsigned int* len);
  38. OSSL_DEPRECATEDIN_3_0 __owur int HMAC_CTX_copy(HMAC_CTX* dctx, HMAC_CTX* sctx);
  39. OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_set_flags(HMAC_CTX* ctx, unsigned long flags);
  40. OSSL_DEPRECATEDIN_3_0 const EVP_MD* HMAC_CTX_get_md(const HMAC_CTX* ctx);
  41. #endif
  42. unsigned char* HMAC(const EVP_MD* evp_md, const void* key, int key_len, const unsigned char* data, size_t data_len, unsigned char* md, unsigned int* md_len);
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46. #endif