EVP_CIPHER-AES.pod 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. =pod
  2. =head1 NAME
  3. EVP_CIPHER-AES - The AES EVP_CIPHER implementations
  4. =head1 DESCRIPTION
  5. Support for AES 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 "AES-128-CBC", "AES-192-CBC" and "AES-256-CBC"
  11. =item "AES-128-CBC-CTS", "AES-192-CBC-CTS" and "AES-256-CBC-CTS"
  12. =item "AES-128-CFB", "AES-192-CFB", "AES-256-CFB",
  13. "AES-128-CFB1", "AES-192-CFB1", "AES-256-CFB1",
  14. "AES-128-CFB8", "AES-192-CFB8" and "AES-256-CFB8"
  15. =item "AES-128-CTR", "AES-192-CTR" and "AES-256-CTR"
  16. =item "AES-128-ECB", "AES-192-ECB" and "AES-256-ECB"
  17. =item "AES-192-OCB", "AES-128-OCB" and "AES-256-OCB"
  18. =item "AES-128-SIV", "AES-192-SIV" and "AES-256-SIV"
  19. =item "AES-128-XTS" and "AES-256-XTS"
  20. =item "AES-128-CCM", "AES-192-CCM" and "AES-256-CCM"
  21. =item "AES-128-GCM", "AES-192-GCM" and "AES-256-GCM"
  22. =item "AES-128-WRAP", "AES-192-WRAP", "AES-256-WRAP",
  23. "AES-128-WRAP-PAD", "AES-192-WRAP-PAD", "AES-256-WRAP-PAD",
  24. "AES-128-WRAP-INV", "AES-192-WRAP-INV", "AES-256-WRAP-INV",
  25. "AES-128-WRAP-PAD-INV", "AES-192-WRAP-PAD-INV" and "AES-256-WRAP-PAD-INV"
  26. =item "AES-128-CBC-HMAC-SHA1", "AES-256-CBC-HMAC-SHA1",
  27. "AES-128-CBC-HMAC-SHA256" and "AES-256-CBC-HMAC-SHA256"
  28. =back
  29. The following algorithms are available in the default provider, but not the
  30. FIPS provider:
  31. =over 4
  32. =item "AES-128-OFB", "AES-192-OFB" and "AES-256-OFB"
  33. =back
  34. =head2 Parameters
  35. This implementation supports the parameters described in
  36. L<EVP_EncryptInit(3)/PARAMETERS>.
  37. =head1 SEE ALSO
  38. L<provider-cipher(7)>, L<OSSL_PROVIDER-FIPS(7)>, L<OSSL_PROVIDER-default(7)>
  39. =head1 COPYRIGHT
  40. Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
  41. Licensed under the Apache License 2.0 (the "License"). You may not use
  42. this file except in compliance with the License. You can obtain a copy
  43. in the file LICENSE in the source distribution or at
  44. L<https://www.openssl.org/source/license.html>.
  45. =cut