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.

cmac.h 1.5 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright 2010-2020 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_CMAC_H
  10. #define OPENSSL_CMAC_H
  11. #pragma once
  12. #include <openssl/macros.h>
  13. #ifndef OPENSSL_NO_DEPRECATED_3_0
  14. #define HEADER_CMAC_H
  15. #endif
  16. #ifndef OPENSSL_NO_CMAC
  17. #ifdef __cplusplus
  18. extern "C"
  19. {
  20. #endif
  21. #include <openssl/evp.h>
  22. #ifndef OPENSSL_NO_DEPRECATED_3_0
  23. /* Opaque */
  24. typedef struct CMAC_CTX_st CMAC_CTX;
  25. #endif
  26. #ifndef OPENSSL_NO_DEPRECATED_3_0
  27. OSSL_DEPRECATEDIN_3_0 CMAC_CTX* CMAC_CTX_new(void);
  28. OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_cleanup(CMAC_CTX* ctx);
  29. OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_free(CMAC_CTX* ctx);
  30. OSSL_DEPRECATEDIN_3_0 EVP_CIPHER_CTX* CMAC_CTX_get0_cipher_ctx(CMAC_CTX* ctx);
  31. OSSL_DEPRECATEDIN_3_0 int CMAC_CTX_copy(CMAC_CTX* out, const CMAC_CTX* in);
  32. OSSL_DEPRECATEDIN_3_0 int CMAC_Init(CMAC_CTX* ctx, const void* key, size_t keylen, const EVP_CIPHER* cipher, ENGINE* impl);
  33. OSSL_DEPRECATEDIN_3_0 int CMAC_Update(CMAC_CTX* ctx, const void* data, size_t dlen);
  34. OSSL_DEPRECATEDIN_3_0 int CMAC_Final(CMAC_CTX* ctx, unsigned char* out, size_t* poutlen);
  35. OSSL_DEPRECATEDIN_3_0 int CMAC_resume(CMAC_CTX* ctx);
  36. #endif
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif
  41. #endif