cipher_idea.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 Idea cipher modes ecb, cbc, ofb, cfb */
  10. #include "cipher_idea.h"
  11. #include "internal/provider_algs.h"
  12. static OSSL_OP_cipher_freectx_fn idea_freectx;
  13. static OSSL_OP_cipher_dupctx_fn idea_dupctx;
  14. static void idea_freectx(void *vctx)
  15. {
  16. PROV_IDEA_CTX *ctx = (PROV_IDEA_CTX *)vctx;
  17. OPENSSL_clear_free(ctx, sizeof(*ctx));
  18. }
  19. static void *idea_dupctx(void *ctx)
  20. {
  21. PROV_IDEA_CTX *in = (PROV_IDEA_CTX *)ctx;
  22. PROV_IDEA_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. /* idea128ecb_functions */
  31. IMPLEMENT_generic_cipher(idea, IDEA, ecb, ECB, 0, 128, 64, 0, block)
  32. /* idea128cbc_functions */
  33. IMPLEMENT_generic_cipher(idea, IDEA, cbc, CBC, 0, 128, 64, 64, block)
  34. /* idea128ofb64_functions */
  35. IMPLEMENT_generic_cipher(idea, IDEA, ofb64, OFB, 0, 128, 8, 64, stream)
  36. /* idea128cfb64_functions */
  37. IMPLEMENT_generic_cipher(idea, IDEA, cfb64, CFB, 0, 128, 8, 64, stream)