PoDoFo 1.2.0
Loading...
Searching...
No Matches
PdfSignerCms.h
1// SPDX-FileCopyrightText: 2023 Francesco Pretto <ceztko@gmail.com>
2// SPDX-License-Identifier: LGPL-2.0-or-later OR MPL-2.0
3
4#ifndef PDF_SIGNER_CMS_H
5#define PDF_SIGNER_CMS_H
6
7#include <chrono>
8#include "PdfSigner.h"
9
10extern "C"
11{
12 // OpenSSL forward declaration
13 struct evp_pkey_st;
14 // libxml2 forward declaration
15 typedef struct _xmlNode xmlNode;
16 typedef xmlNode* xmlNodePtr;
17}
18
19namespace PoDoFo
20{
21 class CmsContext;
22
23 using PdfSigningService = std::function<void(bufferview hashToSign, bool dryrun, charbuff& signedHash)>;
24 using PdfSignedHashHandler = std::function<void(bufferview signedhHash, bool dryrun)>;
25
27 {
28 None = 0,
40 Deterministic = 4,
49 SkipDateValidation = 16,
50 };
51
52 // NOTE: The deprecated Encryption field below will cause deprecation warnings
53 // because of implictly generated costructors, hence we suppress warnings for
54 // the whole struct
55 PODOFO_SUPPRESS_DEPRECATED_PUSH
56 struct PODOFO_API PdfSignerCmsParams final
57 {
58 PdfSignatureType SignatureType = PdfSignatureType::PAdES_B;
59 [[deprecated("Unused: the signing algorithm is automatically detected from the public key in the certificate")]]
60 PdfSignatureEncryption Encryption = PdfSignatureEncryption::RSA;
61 PdfHashingAlgorithm Hashing = PdfHashingAlgorithm::SHA256;
62 PdfSigningService SigningService;
63 nullable<std::chrono::seconds> SigningTimeUTC;
64 PdfSignedHashHandler SignedHashHandler;
65 PdfSignerCmsFlags Flags = PdfSignerCmsFlags::None;
66 };
67 PODOFO_SUPPRESS_DEPRECATED_POP
68
70 {
71 None = 0,
75 AsOctetString = 2,
76 };
77
79 class PODOFO_API PdfSignerCms : public PdfSigner
80 {
81 friend class PdfSigningContext;
82 public:
89 const PdfSignerCmsParams& parameters = { });
90
94 PdfSignerCms(const bufferview& cert, const PdfSignerCmsParams& parameters = { });
95
97
98 private:
100 PdfSignerCms();
101
102 public:
106 void ValidateSignatureDate(const nullable<PdfDate>& date) override;
107 void AppendData(const bufferview& data) override;
108 void ComputeSignature(charbuff& buffer, bool dryrun) override;
109 void FetchIntermediateResult(charbuff& result) override;
110 void ComputeSignatureDeferred(const bufferview& processedResult, charbuff& contents, bool dryrun) override;
111 void Reset() override;
112 std::string GetSignatureFilter() const override;
113 std::string GetSignatureSubFilter() const override;
114 std::string GetSignatureType() const override;
115 bool SkipBufferClear() const override;
116
120 void AddAttribute(const std::string_view& nid, const bufferview& attr, PdfSignatureAttributeFlags flags = PdfSignatureAttributeFlags::None);
121
124 void ReserveAttributeSize(unsigned attrSize);
125
126 public:
127 unsigned GetSignedHashSize() const;
128
129 const PdfSignerCmsParams& GetParameters() const { return m_parameters; }
130
131 private:
132 // Called by PdfSigningContext
133 void Dump(xmlNodePtr signerElem, std::string& temp);
134 void Restore(xmlNodePtr signerElem, charbuff& temp);
135 private:
136 void ensureEventBasedSigning();
137 void ensureDeferredSigning();
138 void checkContextInitialized();
139 void ensureContextInitialized();
140 void resetContext();
141 bool shouldVerify() const;
142 void doSign(const bufferview& input, charbuff& output);
143 void tryEnlargeSignatureContents(charbuff& contents);
144 private:
145 nullable<bool> m_deferredSigning;
146 charbuff m_certificate;
147 std::unique_ptr<CmsContext> m_cmsContext;
148 struct evp_pkey_st* m_privKey;
149 PdfSignerCmsParams m_parameters;
150 unsigned m_reservedSize;
151
152 // Temporary buffer variables
153 // NOTE: Don't clear it in Reset() override
154 charbuff m_encryptedHash;
155 };
156}
157
158ENABLE_BITMASK_OPERATORS(PoDoFo::PdfSignerCmsFlags);
159ENABLE_BITMASK_OPERATORS(PoDoFo::PdfSignatureAttributeFlags);
160
161#endif // PDF_SIGNER_CMS_H
This class computes a CMS signature according to RFC 5652.
Definition PdfSignerCms.h:80
A context that can be used to customize the signing process.
Definition PdfSigningContext.h:64
Convenient type for char array storage and/or buffer with std::string compatibility.
Definition basetypes.h:30
All classes, functions, types and enums of PoDoFo are members of these namespace.
Definition basetypes.h:13
PdfSignatureAttributeFlags
Definition PdfSignerCms.h:70
@ SignedAttribute
The input is interpreted as a raw octet string.
@ None
Do not add a default appearance.
cspan< char > bufferview
Convenient read-only char buffer span.
Definition basetypes.h:15
PdfSignerCmsFlags
Definition PdfSignerCms.h:27
@ ServiceDoDryRun
For signing algorithms that have a random component, make it deterministic Applies to ECDSA,...
@ ServiceDoWrapDigest
When supplying an external PdfSigningService, specify if the service should be called for a dry run.
@ Deterministic
Skip the inline verification of the signed hash supplied by an external signing service or by a defer...
@ SkipVerification
Skip the validation of the signature date against the validity period of the supplied certificate.