cipher_seed_hw.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright 2019-2020 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. /*
  10. * SEED low level APIs are deprecated for public use, but still ok for
  11. * internal use.
  12. */
  13. #include "internal/deprecated.h"
  14. #include "cipher_seed.h"
  15. static int cipher_hw_seed_initkey(PROV_CIPHER_CTX *ctx,
  16. const unsigned char *key, size_t keylen)
  17. {
  18. PROV_SEED_CTX *sctx = (PROV_SEED_CTX *)ctx;
  19. SEED_set_key(key, &(sctx->ks.ks));
  20. return 1;
  21. }
  22. # define PROV_CIPHER_HW_seed_mode(mode, UCMODE) \
  23. IMPLEMENT_CIPHER_HW_##UCMODE(mode, seed, PROV_SEED_CTX, SEED_KEY_SCHEDULE, \
  24. SEED_##mode) \
  25. static const PROV_CIPHER_HW seed_##mode = { \
  26. cipher_hw_seed_initkey, \
  27. cipher_hw_seed_##mode##_cipher \
  28. }; \
  29. const PROV_CIPHER_HW *ossl_prov_cipher_hw_seed_##mode(size_t keybits) \
  30. { \
  31. return &seed_##mode; \
  32. }
  33. PROV_CIPHER_HW_seed_mode(cbc, CBC)
  34. PROV_CIPHER_HW_seed_mode(ecb, ECB)
  35. PROV_CIPHER_HW_seed_mode(ofb128, OFB)
  36. PROV_CIPHER_HW_seed_mode(cfb128, CFB)