summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/CMS_verify_receipt.3
diff options
context:
space:
mode:
authorschwarze <>2016-09-05 10:43:42 +0000
committerschwarze <>2016-09-05 10:43:42 +0000
commit8bc3352bee3f743c2b8f9fd9c743fca60706336c (patch)
tree8ddbb216e39c4571145c2d202a95596f977cdfe0 /src/lib/libcrypto/man/CMS_verify_receipt.3
parentde12fbc1ebd942810e5ca1e55d7a6e213023f318 (diff)
downloadopenbsd-8bc3352bee3f743c2b8f9fd9c743fca60706336c.tar.gz
openbsd-8bc3352bee3f743c2b8f9fd9c743fca60706336c.tar.bz2
openbsd-8bc3352bee3f743c2b8f9fd9c743fca60706336c.zip
remove CMS manuals; beck@ agress with the general idea
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/man/CMS_verify_receipt.355
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
19verifies a CMS signed receipt.
20.Fa rcms
21is the signed receipt to verify.
22.Fa ocms
23is the original SignedData structure containing the receipt request.
24.Fa certs
25is a set of certificates in which to search for the signing certificate.
26.Fa store
27is a trusted certificate store (used for chain verification).
28.Pp
29.Fa flags
30is an optional set of flags, which can be used to modify the verify
31operation.
32.Sh NOTES
33This functions behaves in a similar way to
34.Xr CMS_verify 3
35except the flag values
36.Dv CMS_DETACHED ,
37.Dv CMS_BINARY ,
38.Dv CMS_TEXT ,
39and
40.Dv CMS_STREAM
41are not supported since they do not make sense in the context of signed
42receipts.
43.Sh RETURN VALUES
44.Fn CMS_verify_receipt
45returns 1 for a successful verification and zero if an error occurred.
46.Pp
47The 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
55was added to OpenSSL 0.9.8.