cipher_blowfish_hw.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  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. #include "cipher_blowfish.h"
  10. static int cipher_hw_blowfish_initkey(PROV_CIPHER_CTX *ctx,
  11. const unsigned char *key, size_t keylen)
  12. {
  13. PROV_BLOWFISH_CTX *bctx = (PROV_BLOWFISH_CTX *)ctx;
  14. BF_set_key(&bctx->ks.ks, keylen, key);
  15. return 1;
  16. }
  17. # define PROV_CIPHER_HW_blowfish_mode(mode, UCMODE) \
  18. IMPLEMENT_CIPHER_HW_##UCMODE(mode, blowfish, PROV_BLOWFISH_CTX, BF_KEY, \
  19. BF_##mode) \
  20. static const PROV_CIPHER_HW bf_##mode = { \
  21. cipher_hw_blowfish_initkey, \
  22. cipher_hw_blowfish_##mode##_cipher \
  23. }; \
  24. const PROV_CIPHER_HW *PROV_CIPHER_HW_blowfish_##mode(size_t keybits) \
  25. { \
  26. return &bf_##mode; \
  27. }
  28. PROV_CIPHER_HW_blowfish_mode(cbc, CBC)
  29. PROV_CIPHER_HW_blowfish_mode(ecb, ECB)
  30. PROV_CIPHER_HW_blowfish_mode(ofb64, OFB)
  31. PROV_CIPHER_HW_blowfish_mode(cfb64, CFB)