EVP_CIPHER-DES.pod 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. =pod
  2. =head1 NAME
  3. EVP_CIPHER-DES - The DES EVP_CIPHER implementations
  4. =head1 DESCRIPTION
  5. Support for DES symmetric encryption using the B<EVP_CIPHER> API.
  6. =head2 Algorithm Names
  7. The following algorithms are available in the FIPS provider as well as the
  8. default provider:
  9. =over 4
  10. =item "DES-EDE3-ECB" or "DES-EDE3"
  11. =item "DES-EDE3-CBC" or "DES3"
  12. =back
  13. The following algorithms are available in the default provider, but not the
  14. FIPS provider:
  15. =over 4
  16. =item "DES-EDE3-CFB8" and "DES-EDE3-CFB1"
  17. =item "DES-EDE-ECB" or "DES-EDE"
  18. =item "DES-EDE-CBC"
  19. =item "DES-EDE-OFB"
  20. =item "DES-EDE-CFB"
  21. =item "DES3-WRAP"
  22. =back
  23. The following algorithms are available in the legacy provider:
  24. =over 4
  25. =item "DES-ECB"
  26. =item "DES-CBC"
  27. =item "DES-OFB"
  28. =item "DES-CFB", "DES-CFB1" and "DES-CFB8"
  29. =item "DESX-CBC"
  30. =back
  31. =head2 Parameters
  32. This implementation supports the parameters described in
  33. L<EVP_EncryptInit(3)/PARAMETERS>.
  34. =head1 SEE ALSO
  35. L<provider-cipher(7)>, L<OSSL_PROVIDER-FIPS(7)>, L<OSSL_PROVIDER-default(7)>,
  36. L<OSSL_PROVIDER-legacy(7)>,
  37. =head1 COPYRIGHT
  38. Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
  39. Licensed under the Apache License 2.0 (the "License"). You may not use
  40. this file except in compliance with the License. You can obtain a copy
  41. in the file LICENSE in the source distribution or at
  42. L<https://www.openssl.org/source/license.html>.
  43. =cut