cipher_sm4.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. /* Dispatch functions for cast cipher modes ecb, cbc, ofb, cfb */
  10. #include "cipher_sm4.h"
  11. #include "prov/implementations.h"
  12. #include "prov/providercommon.h"
  13. static OSSL_FUNC_cipher_freectx_fn sm4_freectx;
  14. static OSSL_FUNC_cipher_dupctx_fn sm4_dupctx;
  15. static void sm4_freectx(void *vctx)
  16. {
  17. PROV_SM4_CTX *ctx = (PROV_SM4_CTX *)vctx;
  18. ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
  19. OPENSSL_clear_free(ctx, sizeof(*ctx));
  20. }
  21. static void *sm4_dupctx(void *ctx)
  22. {
  23. PROV_SM4_CTX *in = (PROV_SM4_CTX *)ctx;
  24. PROV_SM4_CTX *ret;
  25. if (!ossl_prov_is_running())
  26. return NULL;
  27. ret = OPENSSL_malloc(sizeof(*ret));
  28. if (ret == NULL) {
  29. ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
  30. return NULL;
  31. }
  32. in->base.hw->copyctx(&ret->base, &in->base);
  33. return ret;
  34. }
  35. /* ossl_sm4128ecb_functions */
  36. IMPLEMENT_generic_cipher(sm4, SM4, ecb, ECB, 0, 128, 128, 0, block)
  37. /* ossl_sm4128cbc_functions */
  38. IMPLEMENT_generic_cipher(sm4, SM4, cbc, CBC, 0, 128, 128, 128, block)
  39. /* ossl_sm4128ctr_functions */
  40. IMPLEMENT_generic_cipher(sm4, SM4, ctr, CTR, 0, 128, 8, 128, stream)
  41. /* ossl_sm4128ofb128_functions */
  42. IMPLEMENT_generic_cipher(sm4, SM4, ofb128, OFB, 0, 128, 8, 128, stream)
  43. /* ossl_sm4128cfb128_functions */
  44. IMPLEMENT_generic_cipher(sm4, SM4, cfb128, CFB, 0, 128, 8, 128, stream)