cipher_aes_ccm_hw_aesni.inc 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright 2001-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. /*-
  10. * AES-NI support for AES CCM.
  11. * This file is included by cipher_aes_ccm_hw.c
  12. */
  13. static int ccm_aesni_initkey(PROV_CCM_CTX *ctx, const unsigned char *key,
  14. size_t keylen)
  15. {
  16. PROV_AES_CCM_CTX *actx = (PROV_AES_CCM_CTX *)ctx;
  17. AES_HW_CCM_SET_KEY_FN(aesni_set_encrypt_key, aesni_encrypt,
  18. aesni_ccm64_encrypt_blocks,
  19. aesni_ccm64_decrypt_blocks);
  20. return 1;
  21. }
  22. static const PROV_CCM_HW aesni_ccm = {
  23. ccm_aesni_initkey,
  24. ossl_ccm_generic_setiv,
  25. ossl_ccm_generic_setaad,
  26. ossl_ccm_generic_auth_encrypt,
  27. ossl_ccm_generic_auth_decrypt,
  28. ossl_ccm_generic_gettag
  29. };
  30. const PROV_CCM_HW *ossl_prov_aes_hw_ccm(size_t keybits)
  31. {
  32. return AESNI_CAPABLE ? &aesni_ccm : &aes_ccm;
  33. }