cipher_sm4.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright 2019 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 "internal/provider_algs.h"
  12. static OSSL_OP_cipher_freectx_fn sm4_freectx;
  13. static OSSL_OP_cipher_dupctx_fn sm4_dupctx;
  14. static void sm4_freectx(void *vctx)
  15. {
  16. PROV_SM4_CTX *ctx = (PROV_SM4_CTX *)vctx;
  17. OPENSSL_clear_free(ctx, sizeof(*ctx));
  18. }
  19. static void *sm4_dupctx(void *ctx)
  20. {
  21. PROV_SM4_CTX *in = (PROV_SM4_CTX *)ctx;
  22. PROV_SM4_CTX *ret = OPENSSL_malloc(sizeof(*ret));
  23. if (ret == NULL) {
  24. ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
  25. return NULL;
  26. }
  27. *ret = *in;
  28. return ret;
  29. }
  30. /* sm4128ecb_functions */
  31. IMPLEMENT_generic_cipher(sm4, SM4, ecb, ECB, 0, 128, 128, 0, block)
  32. /* sm4128cbc_functions */
  33. IMPLEMENT_generic_cipher(sm4, SM4, cbc, CBC, 0, 128, 128, 128, block)
  34. /* sm4128ctr_functions */
  35. IMPLEMENT_generic_cipher(sm4, SM4, ctr, CTR, 0, 128, 8, 128, stream)
  36. /* sm4128ofb128_functions */
  37. IMPLEMENT_generic_cipher(sm4, SM4, ofb128, OFB, 0, 128, 8, 128, stream)
  38. /* sm4128cfb128_functions */
  39. IMPLEMENT_generic_cipher(sm4, SM4, cfb128, CFB, 0, 128, 8, 128, stream)