Lines Matching defs:signer
19 #include "signer.h"
34 "signer info count not equal 1,pkcs7 add customize attribute failed");
115 int PKCS7Data::Sign(const std::string& content, const std::shared_ptr<Signer>& signer,
119 if ((result = InitPkcs7(content, signer, sigAlg, attrs)) < 0) {
198 int PKCS7Data::InitPkcs7(const std::string& content, const std::shared_ptr<Signer>& signer,
207 if (signer == NULL) {
208 PrintErrorNumberMsg("INVALIDPARAM_ERROR", INVALIDPARAM_ERROR, "signer is NULL , sign failed");
212 m_signer = signer;
214 certs = signer->GetCertificates();
237 PKCS7AddCrls(m_p7, signer->GetCrls());