cipher_aes.c 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Copyright 2019-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. /*
  10. * AES low level APIs are deprecated for public use, but still ok for internal
  11. * use where we're using them to implement the higher level EVP interface, as is
  12. * the case here.
  13. */
  14. #include "internal/deprecated.h"
  15. /* Dispatch functions for AES cipher modes ecb, cbc, ofb, cfb, ctr */
  16. #include "cipher_aes.h"
  17. #include "prov/implementations.h"
  18. #include "prov/providercommon.h"
  19. static OSSL_FUNC_cipher_freectx_fn aes_freectx;
  20. static OSSL_FUNC_cipher_dupctx_fn aes_dupctx;
  21. static void aes_freectx(void *vctx)
  22. {
  23. PROV_AES_CTX *ctx = (PROV_AES_CTX *)vctx;
  24. ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
  25. OPENSSL_clear_free(ctx, sizeof(*ctx));
  26. }
  27. static void *aes_dupctx(void *ctx)
  28. {
  29. PROV_AES_CTX *in = (PROV_AES_CTX *)ctx;
  30. PROV_AES_CTX *ret;
  31. if (!ossl_prov_is_running())
  32. return NULL;
  33. ret = OPENSSL_malloc(sizeof(*ret));
  34. if (ret == NULL) {
  35. ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
  36. return NULL;
  37. }
  38. in->base.hw->copyctx(&ret->base, &in->base);
  39. return ret;
  40. }
  41. /* ossl_aes256ecb_functions */
  42. IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 256, 128, 0, block)
  43. /* ossl_aes192ecb_functions */
  44. IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 192, 128, 0, block)
  45. /* ossl_aes128ecb_functions */
  46. IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 128, 128, 0, block)
  47. /* ossl_aes256cbc_functions */
  48. IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 256, 128, 128, block)
  49. /* ossl_aes192cbc_functions */
  50. IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 192, 128, 128, block)
  51. /* ossl_aes128cbc_functions */
  52. IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 128, 128, 128, block)
  53. /* ossl_aes256ofb_functions */
  54. IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 256, 8, 128, stream)
  55. /* ossl_aes192ofb_functions */
  56. IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 192, 8, 128, stream)
  57. /* ossl_aes128ofb_functions */
  58. IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 128, 8, 128, stream)
  59. /* ossl_aes256cfb_functions */
  60. IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 256, 8, 128, stream)
  61. /* ossl_aes192cfb_functions */
  62. IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 192, 8, 128, stream)
  63. /* ossl_aes128cfb_functions */
  64. IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 128, 8, 128, stream)
  65. /* ossl_aes256cfb1_functions */
  66. IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 256, 8, 128, stream)
  67. /* ossl_aes192cfb1_functions */
  68. IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 192, 8, 128, stream)
  69. /* ossl_aes128cfb1_functions */
  70. IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 128, 8, 128, stream)
  71. /* ossl_aes256cfb8_functions */
  72. IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 256, 8, 128, stream)
  73. /* ossl_aes192cfb8_functions */
  74. IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 192, 8, 128, stream)
  75. /* ossl_aes128cfb8_functions */
  76. IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 128, 8, 128, stream)
  77. /* ossl_aes256ctr_functions */
  78. IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 256, 8, 128, stream)
  79. /* ossl_aes192ctr_functions */
  80. IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 192, 8, 128, stream)
  81. /* ossl_aes128ctr_functions */
  82. IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 128, 8, 128, stream)
  83. #include "cipher_aes_cts.inc"