Searched defs:phDigest (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/common/crypto/
H A Ddigest-core.cpp84 RTDECL(int) RTCrDigestCreate(PRTCRDIGEST phDigest, PCRTCRDIGESTDESC pDesc, void *pvOpaque) argument
86 AssertPtrReturn(phDigest, VERR_INVALID_POINTER);
103 *phDigest = pThis;
115 RTDECL(int) RTCrDigestClone(PRTCRDIGEST phDigest, RTCRDIGEST hSrc) argument
117 AssertPtrReturn(phDigest, VERR_INVALID_POINTER);
139 *phDigest = pThis;
H A Dpkcs7-verify.cpp207 * - fish out the message digest among and check it against *phDigest,
209 * replace *phDigest with this for the signature verification.
214 * @param phDigest On input this is the digest of the content. On
223 PRTCRDIGEST phDigest, uint32_t fFlags, PRTERRINFO pErrInfo)
257 if (!RTCrDigestMatch(*phDigest,
261 size_t cbHash = RTCrDigestGetHashSize(*phDigest);
272 cbHash, RTCrDigestGetHash(*phDigest));
305 RTCrDigestRelease(*phDigest);
306 *phDigest = hDigest;
326 * @param phDigest Wher
222 rtCrPkcs7VerifySignerInfoAuthAttribs(PCRTCRPKCS7SIGNERINFO pSignerInfo, PCRTCRPKCS7SIGNEDDATA pSignedData, PRTCRDIGEST phDigest, uint32_t fFlags, PRTERRINFO pErrInfo) argument
335 rtCrPkcs7VerifyFindDigest(PRTCRDIGEST phDigest, PCRTCRPKCS7SIGNEDDATA pSignedData, PCRTCRPKCS7SIGNERINFO pSignerInfo, PRTCRDIGEST pahDigests, PRTERRINFO pErrInfo) argument
[all...]
H A Ddigest-builtin.cpp690 RTDECL(int) RTCrDigestCreateByObjIdString(PRTCRDIGEST phDigest, const char *pszObjId) argument
695 return RTCrDigestCreate(phDigest, pDesc, pvOpaque);
700 RTDECL(int) RTCrDigestCreateByObjId(PRTCRDIGEST phDigest, PCRTASN1OBJID pObjId) argument
705 return RTCrDigestCreate(phDigest, pDesc, pvOpaque);
722 RTDECL(int) RTCrDigestCreateByType(PRTCRDIGEST phDigest, RTDIGESTTYPE enmDigestType) argument
726 return RTCrDigestCreate(phDigest, pDesc, NULL);

Completed in 46 milliseconds