EVP_seed_cbc.pod 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. =pod
  2. =head1 NAME
  3. EVP_seed_cbc,
  4. EVP_seed_cfb,
  5. EVP_seed_ecb,
  6. EVP_seed_ofb
  7. - EVP SEED cipher
  8. =head1 SYNOPSIS
  9. #include <openssl/evp.h>
  10. const EVP_CIPHER *EVP_seed_cbc(void)
  11. const EVP_CIPHER *EVP_seed_cfb(void)
  12. const EVP_CIPHER *EVP_seed_ecb(void)
  13. const EVP_CIPHER *EVP_seed_ofb(void)
  14. =head1 DESCRIPTION
  15. The SEED encryption algorithm for EVP.
  16. All modes below use a key length of 128 bits and acts on blocks of 128-bits.
  17. =over 4
  18. =item EVP_seed_cbc(),
  19. EVP_seed_cfb(),
  20. EVP_seed_ecb(),
  21. EVP_seed_ofb()
  22. The SEED encryption algorithm in CBC, CFB, ECB and OFB modes respectively.
  23. =back
  24. =head1 RETURN VALUES
  25. These functions return an B<EVP_CIPHER> structure that contains the
  26. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  27. details of the B<EVP_CIPHER> structure.
  28. =head1 SEE ALSO
  29. L<evp(7)>,
  30. L<EVP_EncryptInit(3)>,
  31. L<EVP_CIPHER_meth_new(3)>
  32. =head1 COPYRIGHT
  33. Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
  34. Licensed under the OpenSSL license (the "License"). You may not use
  35. this file except in compliance with the License. You can obtain a copy
  36. in the file LICENSE in the source distribution or at
  37. L<https://www.openssl.org/source/license.html>.
  38. =cut