diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/man/CMS_verify_receipt.3 | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/src/lib/libcrypto/man/CMS_verify_receipt.3 b/src/lib/libcrypto/man/CMS_verify_receipt.3 deleted file mode 100644 index 0977f267bc..0000000000 --- a/src/lib/libcrypto/man/CMS_verify_receipt.3 +++ /dev/null | |||
@@ -1,55 +0,0 @@ | |||
1 | .Dd $Mdocdate: November 11 2015 $ | ||
2 | .Dt CMS_VERIFY_RECEIPT 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm CMS_verify_receipt | ||
6 | .Nd verify a CMS signed receipt | ||
7 | .Sh SYNOPSIS | ||
8 | .In openssl/cms.h | ||
9 | .Ft int | ||
10 | .Fo CMS_verify_receipt | ||
11 | .Fa "CMS_ContentInfo *rcms" | ||
12 | .Fa "CMS_ContentInfo *ocms" | ||
13 | .Fa "STACK_OF(X509) *certs" | ||
14 | .Fa "X509_STORE *store" | ||
15 | .Fa "unsigned int flags" | ||
16 | .Fc | ||
17 | .Sh DESCRIPTION | ||
18 | .Fn CMS_verify_receipt | ||
19 | verifies a CMS signed receipt. | ||
20 | .Fa rcms | ||
21 | is the signed receipt to verify. | ||
22 | .Fa ocms | ||
23 | is the original SignedData structure containing the receipt request. | ||
24 | .Fa certs | ||
25 | is a set of certificates in which to search for the signing certificate. | ||
26 | .Fa store | ||
27 | is a trusted certificate store (used for chain verification). | ||
28 | .Pp | ||
29 | .Fa flags | ||
30 | is an optional set of flags, which can be used to modify the verify | ||
31 | operation. | ||
32 | .Sh NOTES | ||
33 | This functions behaves in a similar way to | ||
34 | .Xr CMS_verify 3 | ||
35 | except the flag values | ||
36 | .Dv CMS_DETACHED , | ||
37 | .Dv CMS_BINARY , | ||
38 | .Dv CMS_TEXT , | ||
39 | and | ||
40 | .Dv CMS_STREAM | ||
41 | are not supported since they do not make sense in the context of signed | ||
42 | receipts. | ||
43 | .Sh RETURN VALUES | ||
44 | .Fn CMS_verify_receipt | ||
45 | returns 1 for a successful verification and zero if an error occurred. | ||
46 | .Pp | ||
47 | The error can be obtained from | ||
48 | .Xr ERR_get_error 3 . | ||
49 | .Sh SEE ALSO | ||
50 | .Xr CMS_sign_receipt 3 , | ||
51 | .Xr CMS_verify 3 , | ||
52 | .Xr ERR_get_error 3 | ||
53 | .Sh HISTORY | ||
54 | .Fn CMS_verify_receipt | ||
55 | was added to OpenSSL 0.9.8. | ||