1
0

macsignature.h 820 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright 2020-2023 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. #include <stdlib.h>
  10. #include <openssl/crypto.h>
  11. #include "internal/refcount.h"
  12. #include "prov/provider_util.h"
  13. struct mac_key_st {
  14. OSSL_LIB_CTX *libctx;
  15. CRYPTO_REF_COUNT refcnt;
  16. unsigned char *priv_key;
  17. size_t priv_key_len;
  18. PROV_CIPHER cipher;
  19. char *properties;
  20. int cmac;
  21. };
  22. typedef struct mac_key_st MAC_KEY;
  23. MAC_KEY *ossl_mac_key_new(OSSL_LIB_CTX *libctx, int cmac);
  24. void ossl_mac_key_free(MAC_KEY *mackey);
  25. int ossl_mac_key_up_ref(MAC_KEY *mackey);