cipher_seed.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 Seed cipher modes ecb, cbc, ofb, cfb */
  10. #include "cipher_seed.h"
  11. #include "internal/provider_algs.h"
  12. static OSSL_OP_cipher_freectx_fn seed_freectx;
  13. static OSSL_OP_cipher_dupctx_fn seed_dupctx;
  14. static void seed_freectx(void *vctx)
  15. {
  16. PROV_SEED_CTX *ctx = (PROV_SEED_CTX *)vctx;
  17. OPENSSL_clear_free(ctx, sizeof(*ctx));
  18. }
  19. static void *seed_dupctx(void *ctx)
  20. {
  21. PROV_SEED_CTX *in = (PROV_SEED_CTX *)ctx;
  22. PROV_SEED_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. /* seed128ecb_functions */
  31. IMPLEMENT_generic_cipher(seed, SEED, ecb, ECB, 0, 128, 128, 0, block)
  32. /* seed128cbc_functions */
  33. IMPLEMENT_generic_cipher(seed, SEED, cbc, CBC, 0, 128, 128, 128, block)
  34. /* seed128ofb128_functions */
  35. IMPLEMENT_generic_cipher(seed, SEED, ofb128, OFB, 0, 128, 8, 128, stream)
  36. /* seed128cfb128_functions */
  37. IMPLEMENT_generic_cipher(seed, SEED, cfb128, CFB, 0, 128, 8, 128, stream)