cipher_blowfish.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Copyright 2019-2021 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 Blowfish cipher modes ecb, cbc, ofb, cfb */
  10. /*
  11. * BF low level APIs are deprecated for public use, but still ok for internal
  12. * use.
  13. */
  14. #include "internal/deprecated.h"
  15. #include "cipher_blowfish.h"
  16. #include "prov/implementations.h"
  17. #include "prov/providercommon.h"
  18. #define BF_FLAGS PROV_CIPHER_FLAG_VARIABLE_LENGTH
  19. static OSSL_FUNC_cipher_freectx_fn blowfish_freectx;
  20. static OSSL_FUNC_cipher_dupctx_fn blowfish_dupctx;
  21. static void blowfish_freectx(void *vctx)
  22. {
  23. PROV_BLOWFISH_CTX *ctx = (PROV_BLOWFISH_CTX *)vctx;
  24. ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
  25. OPENSSL_clear_free(ctx, sizeof(*ctx));
  26. }
  27. static void *blowfish_dupctx(void *ctx)
  28. {
  29. PROV_BLOWFISH_CTX *in = (PROV_BLOWFISH_CTX *)ctx;
  30. PROV_BLOWFISH_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. *ret = *in;
  39. return ret;
  40. }
  41. /* bf_ecb_functions */
  42. IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, ecb, ECB, BF_FLAGS, 128, 64, 0, block)
  43. /* bf_cbc_functions */
  44. IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, cbc, CBC, BF_FLAGS, 128, 64, 64, block)
  45. /* bf_ofb_functions */
  46. IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, ofb64, OFB, BF_FLAGS, 128, 8, 64, stream)
  47. /* bf_cfb_functions */
  48. IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, cfb64, CFB, BF_FLAGS, 128, 8, 64, stream)