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

/vbox/src/VBox/Runtime/common/crypto/
H A Dpkix-signature-core.cpp134 RTDECL(uint32_t) RTCrPkixSignatureRetain(RTCRPKIXSIGNATURE hSignature) argument
136 PRTCRPKIXSIGNATUREINT pThis = hSignature;
146 RTDECL(uint32_t) RTCrPkixSignatureRelease(RTCRPKIXSIGNATURE hSignature)
148 PRTCRPKIXSIGNATUREINT pThis = hSignature;
197 RTDECL(int) RTCrPkixSignatureVerify(RTCRPKIXSIGNATURE hSignature, RTCRDIGEST hDigest,
200 PRTCRPKIXSIGNATUREINT pThis = hSignature;
221 RTDECL(int) RTCrPkixSignatureVerifyBitString(RTCRPKIXSIGNATURE hSignature, RTCRDIGEST hDigest, PCRTASN1BITSTRING pSignature)
232 return RTCrPkixSignatureVerify(hSignature, hDigest, pvData, cbData);
236 RTDECL(int) RTCrPkixSignatureVerifyOctetString(RTCRPKIXSIGNATURE hSignature, RTCRDIGEST hDigest, PCRTASN1OCTETSTRING pSignature)
247 return RTCrPkixSignatureVerify(hSignature, hDiges
[all...]
H A Dpkcs7-verify.cpp475 RTCRPKIXSIGNATURE hSignature; local
476 rc = RTCrPkixSignatureCreateByObjId(&hSignature,
483 /** @todo Check that DigestEncryptionAlgorithm is compatible with hSignature
485 rc = RTCrPkixSignatureVerifyOctetString(hSignature, hDigest, &pSignerInfo->EncryptedDigest);
489 RTCrPkixSignatureRelease(hSignature);
/vbox/include/iprt/crypto/
H A Dpkix.h206 RTDECL(uint32_t) RTCrPkixSignatureRetain(RTCRPKIXSIGNATURE hSignature); variable
207 RTDECL(uint32_t) RTCrPkixSignatureRelease(RTCRPKIXSIGNATURE hSignature); variable
208 RTDECL(int) RTCrPkixSignatureVerify(RTCRPKIXSIGNATURE hSignature, RTCRDIGEST hDigest,
210 RTDECL(int) RTCrPkixSignatureVerifyBitString(RTCRPKIXSIGNATURE hSignature, RTCRDIGEST hDigest, PCRTASN1BITSTRING pSignature);
211 RTDECL(int) RTCrPkixSignatureVerifyOctetString(RTCRPKIXSIGNATURE hSignature, RTCRDIGEST hDigest, PCRTASN1OCTETSTRING pSignature);
212 RTDECL(int) RTCrPkixSignatureSign(RTCRPKIXSIGNATURE hSignature, RTCRDIGEST hDigest,

Completed in 46 milliseconds