Lines Matching refs:pvOpaque

64 static DECLCALLBACK(int) rtCrDigestMd2_Init(void *pvState, void *pvOpaque, bool fReInit)
66 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
116 static DECLCALLBACK(int) rtCrDigestMd5_Init(void *pvState, void *pvOpaque, bool fReInit)
118 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
168 static DECLCALLBACK(int) rtCrDigestSha1_Init(void *pvState, void *pvOpaque, bool fReInit)
170 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
220 static DECLCALLBACK(int) rtCrDigestSha256_Init(void *pvState, void *pvOpaque, bool fReInit)
222 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
271 static DECLCALLBACK(int) rtCrDigestSha512_Init(void *pvState, void *pvOpaque, bool fReInit)
273 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
322 static DECLCALLBACK(int) rtCrDigestSha224_Init(void *pvState, void *pvOpaque, bool fReInit)
324 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
373 static DECLCALLBACK(int) rtCrDigestSha384_Init(void *pvState, void *pvOpaque, bool fReInit)
375 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
425 static DECLCALLBACK(int) rtCrDigestSha512t224_Init(void *pvState, void *pvOpaque, bool fReInit)
427 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
477 static DECLCALLBACK(int) rtCrDigestSha512t256_Init(void *pvState, void *pvOpaque, bool fReInit)
479 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
552 static DECLCALLBACK(int) rtCrDigestOsslEvp_Init(void *pvState, void *pvOpaque, bool fReInit)
555 EVP_MD const *pEvpType = (EVP_MD const *)pvOpaque;
692 void *pvOpaque;
693 PCRTCRDIGESTDESC pDesc = RTCrDigestFindByObjIdString(pszObjId, &pvOpaque);
695 return RTCrDigestCreate(phDigest, pDesc, pvOpaque);
702 void *pvOpaque;
703 PCRTCRDIGESTDESC pDesc = RTCrDigestFindByObjId(pObjId, &pvOpaque);
705 return RTCrDigestCreate(phDigest, pDesc, pvOpaque);