CMS_sign_receipt.pod 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. =pod
  2. =head1 NAME
  3. CMS_sign_receipt - create a CMS signed receipt
  4. =head1 SYNOPSIS
  5. #include <openssl/cms.h>
  6. CMS_ContentInfo *CMS_sign_receipt(CMS_SignerInfo *si, X509 *signcert,
  7. EVP_PKEY *pkey, STACK_OF(X509) *certs,
  8. unsigned int flags);
  9. =head1 DESCRIPTION
  10. CMS_sign_receipt() creates and returns a CMS signed receipt structure. B<si> is
  11. the B<CMS_SignerInfo> structure containing the signed receipt request.
  12. B<signcert> is the certificate to sign with, B<pkey> is the corresponding
  13. private key. B<certs> is an optional additional set of certificates to include
  14. in the CMS structure (for example any intermediate CAs in the chain).
  15. B<flags> is an optional set of flags.
  16. =head1 NOTES
  17. This functions behaves in a similar way to CMS_sign() except the flag values
  18. B<CMS_DETACHED>, B<CMS_BINARY>, B<CMS_NOATTR>, B<CMS_TEXT> and B<CMS_STREAM>
  19. are not supported since they do not make sense in the context of signed
  20. receipts.
  21. =head1 RETURN VALUES
  22. CMS_sign_receipt() returns either a valid CMS_ContentInfo structure or NULL if
  23. an error occurred. The error can be obtained from ERR_get_error(3).
  24. =head1 SEE ALSO
  25. L<ERR_get_error(3)>,
  26. L<CMS_verify_receipt(3)>,
  27. L<CMS_sign(3)>
  28. =head1 COPYRIGHT
  29. Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved.
  30. Licensed under the Apache License 2.0 (the "License"). You may not use
  31. this file except in compliance with the License. You can obtain a copy
  32. in the file LICENSE in the source distribution or at
  33. L<https://www.openssl.org/source/license.html>.
  34. =cut