cipher_des.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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 <openssl/des.h>
  10. /* TODO(3.0) Figure out what flags need to be here */
  11. #define TDES_FLAGS (EVP_CIPH_RAND_KEY)
  12. typedef struct prov_des_ctx_st {
  13. PROV_CIPHER_CTX base; /* Must be first */
  14. union {
  15. OSSL_UNION_ALIGN;
  16. DES_key_schedule ks;
  17. } dks;
  18. union {
  19. void (*cbc) (const void *, void *, size_t,
  20. const DES_key_schedule *, unsigned char *);
  21. } dstream;
  22. } PROV_DES_CTX;
  23. const PROV_CIPHER_HW *PROV_CIPHER_HW_des_cbc(void);
  24. const PROV_CIPHER_HW *PROV_CIPHER_HW_des_ecb(void);
  25. const PROV_CIPHER_HW *PROV_CIPHER_HW_des_ofb64(void);
  26. const PROV_CIPHER_HW *PROV_CIPHER_HW_des_cfb64(void);
  27. const PROV_CIPHER_HW *PROV_CIPHER_HW_des_cfb1(void);
  28. const PROV_CIPHER_HW *PROV_CIPHER_HW_des_cfb8(void);