PKCS7_encrypt.pod 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. =pod
  2. =head1 NAME
  3. PKCS7_encrypt - create a PKCS#7 envelopedData structure
  4. =head1 SYNOPSIS
  5. #include <openssl/pkcs7.h>
  6. PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher, int flags);
  7. =head1 DESCRIPTION
  8. PKCS7_encrypt() creates and returns a PKCS#7 envelopedData structure. B<certs>
  9. is a list of recipient certificates. B<in> is the content to be encrypted.
  10. B<cipher> is the symmetric cipher to use. B<flags> is an optional set of flags.
  11. =head1 NOTES
  12. Only RSA keys are supported in PKCS#7 and envelopedData so the recipient certificates
  13. supplied to this function must all contain RSA public keys, though they do not have to
  14. be signed using the RSA algorithm.
  15. EVP_des_ede3_cbc() (triple DES) is the algorithm of choice for S/MIME use because
  16. most clients will support it.
  17. Some old "export grade" clients may only support weak encryption using 40 or 64 bit
  18. RC2. These can be used by passing EVP_rc2_40_cbc() and EVP_rc2_64_cbc() respectively.
  19. The algorithm passed in the B<cipher> parameter must support ASN1 encoding of its
  20. parameters.
  21. Many browsers implement a "sign and encrypt" option which is simply an S/MIME
  22. envelopedData containing an S/MIME signed message. This can be readily produced
  23. by storing the S/MIME signed message in a memory BIO and passing it to
  24. PKCS7_encrypt().
  25. The following flags can be passed in the B<flags> parameter.
  26. If the B<PKCS7_TEXT> flag is set MIME headers for type B<text/plain> are prepended
  27. to the data.
  28. Normally the supplied content is translated into MIME canonical format (as required
  29. by the S/MIME specifications) if B<PKCS7_BINARY> is set no translation occurs. This
  30. option should be used if the supplied data is in binary format otherwise the translation
  31. will corrupt it. If B<PKCS7_BINARY> is set then B<PKCS7_TEXT> is ignored.
  32. =head1 RETURN VALUES
  33. PKCS7_encrypt() returns either a valid PKCS7 structure or NULL if an error occurred.
  34. The error can be obtained from ERR_get_error(3).
  35. =head1 BUGS
  36. The lack of single pass processing and need to hold all data in memory as
  37. mentioned in PKCS7_sign() also applies to PKCS7_verify().
  38. =head1 SEE ALSO
  39. L<ERR_get_error(3)|ERR_get_error(3)>, L<PKCS7_decrypt(3)|PKCS7_decrypt(3)>
  40. =head1 HISTORY
  41. PKCS7_decrypt() was added to OpenSSL 0.9.5
  42. =cut