Searched refs:pvOpaque (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Runtime/common/crypto/
H A Dpkix-signature-builtin.cpp121 void *pvOpaque; local
122 PCRTCRPKIXSIGNATUREDESC pDesc = RTCrPkixSignatureFindByObjIdString(pszObjId, &pvOpaque);
124 return RTCrPkixSignatureCreate(phSignature, pDesc, pvOpaque, fSigning, pKey, pParams);
132 void *pvOpaque; local
133 PCRTCRPKIXSIGNATUREDESC pDesc = RTCrPkixSignatureFindByObjId(pObjId, &pvOpaque);
135 return RTCrPkixSignatureCreate(phSignature, pDesc, pvOpaque, fSigning, pKey, pParams);
H A Ddigest-builtin.cpp64 static DECLCALLBACK(int) rtCrDigestMd2_Init(void *pvState, void *pvOpaque, bool fReInit) argument
66 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
116 static DECLCALLBACK(int) rtCrDigestMd5_Init(void *pvState, void *pvOpaque, bool fReInit) argument
118 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
168 static DECLCALLBACK(int) rtCrDigestSha1_Init(void *pvState, void *pvOpaque, bool fReInit) argument
170 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
220 static DECLCALLBACK(int) rtCrDigestSha256_Init(void *pvState, void *pvOpaque, bool fReInit) argument
222 AssertReturn(pvOpaque == NULL, VERR_INVALID_PARAMETER);
271 static DECLCALLBACK(int) rtCrDigestSha512_Init(void *pvState, void *pvOpaque, bool fReInit) argument
273 AssertReturn(pvOpaque
322 rtCrDigestSha224_Init(void *pvState, void *pvOpaque, bool fReInit) argument
373 rtCrDigestSha384_Init(void *pvState, void *pvOpaque, bool fReInit) argument
425 rtCrDigestSha512t224_Init(void *pvState, void *pvOpaque, bool fReInit) argument
477 rtCrDigestSha512t256_Init(void *pvState, void *pvOpaque, bool fReInit) argument
552 rtCrDigestOsslEvp_Init(void *pvState, void *pvOpaque, bool fReInit) argument
692 void *pvOpaque; local
702 void *pvOpaque; local
[all...]
H A Dpkix-signature-core.cpp87 RTDECL(int) RTCrPkixSignatureCreate(PRTCRPKIXSIGNATURE phSignature, PCRTCRPKIXSIGNATUREDESC pDesc, void *pvOpaque, argument
118 rc = pDesc->pfnInit(pDesc, pThis->abState, pvOpaque, fSigning, pKey, pParams);
H A Ddigest-core.cpp84 RTDECL(int) RTCrDigestCreate(PRTCRDIGEST phDigest, PCRTCRDIGESTDESC pDesc, void *pvOpaque) argument
100 rc = pDesc->pfnInit(pThis->abState, pvOpaque, false /*fReInit*/);
H A Dpkix-signature-rsa.cpp139 static DECLCALLBACK(int) rtCrPkixSignatureRsa_Init(PCRTCRPKIXSIGNATUREDESC pDesc, void *pvState, void *pvOpaque, argument
/vbox/src/VBox/Main/src-server/darwin/
H A Diokit.h78 void DarwinUnsubscribeUSBNotifications(void *pvOpaque);
H A Diokit.cpp665 * @param pvOpaque The return value from DarwinSubscribeUSBNotifications.
667 void DarwinUnsubscribeUSBNotifications(void *pvOpaque) argument
669 PDARWINUSBNOTIFY pNotify = (PDARWINUSBNOTIFY)pvOpaque;
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DSysHlp.cpp167 extern DECLVBGL(void) VBoxGuestIDCClose (void *pvOpaque);
168 extern DECLVBGL(int) VBoxGuestIDCCall (void *pvOpaque, unsigned int iCmd, void *pvData, size_t cbSize, size_t *pcbReturn);
179 return pDriver->pvOpaque != NULL;
223 pDriver->pvOpaque = VBoxGuestIDCOpen (&u32VMMDevVersion);
224 if ( pDriver->pvOpaque
329 return VBoxGuestIDCCall(pDriver->pvOpaque, u32Function, pvData, cbData, NULL);
345 VBoxGuestIDCClose (pDriver->pvOpaque);
346 pDriver->pvOpaque = NULL;
H A DSysHlp.h70 void *pvOpaque;
/vbox/include/iprt/crypto/
H A Dpkix.h113 * @param pvOpaque Opaque provider specific parameter.
123 DECLCALLBACKMEMBER(int, pfnInit)(struct RTCRPKIXSIGNATUREDESC const *pDesc, void *pvState, void *pvOpaque, bool fSigning,
204 RTDECL(int) RTCrPkixSignatureCreate(PRTCRPKIXSIGNATURE phSignature, PCRTCRPKIXSIGNATUREDESC pDesc, void *pvOpaque,
246 * @param pvOpaque Opaque provider specific parameter.
256 DECLCALLBACKMEMBER(int, pfnInit)(struct RTCRPKIXENCRYPTIONDESC const *pDesc, void *pvState, void *pvOpaque, bool fEncrypt,
379 RTDECL(int) RTCrPkixEncryptionCreate(PRTCRPKIXENCRYPTION phEncryption, PCRTCRPKIXENCRYPTIONDESC pDesc, void *pvOpaque,
H A Ddigest.h87 * @param pvOpaque Opaque algortihm specific parameter.
90 DECLCALLBACKMEMBER(int, pfnInit)(void *pvState, void *pvOpaque, bool fReInit);
170 RTDECL(int) RTCrDigestCreate(PRTCRDIGEST phDigest, PCRTCRDIGESTDESC pDesc, void *pvOpaque);

Completed in 63 milliseconds