Searched refs:fSigning (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/common/crypto/
H A Dpkix-signature-builtin.cpp118 RTDECL(int) RTCrPkixSignatureCreateByObjIdString(PRTCRPKIXSIGNATURE phSignature, const char *pszObjId, bool fSigning, argument
124 return RTCrPkixSignatureCreate(phSignature, pDesc, pvOpaque, fSigning, pKey, pParams);
129 RTDECL(int) RTCrPkixSignatureCreateByObjId(PRTCRPKIXSIGNATURE phSignature, PCRTASN1OBJID pObjId, bool fSigning, argument
135 return RTCrPkixSignatureCreate(phSignature, pDesc, pvOpaque, fSigning, pKey, pParams);
H A Dpkix-signature-core.cpp57 bool fSigning; member in struct:RTCRPKIXSIGNATUREINT
88 bool fSigning, PCRTASN1BITSTRING pKey, PCRTASN1DYNTYPE pParams)
115 pThis->fSigning = fSigning;
118 rc = pDesc->pfnInit(pDesc, pThis->abState, pvOpaque, fSigning, pKey, pParams);
160 pThis->pDesc->pfnDelete(pThis->pDesc, pThis->abState, pThis->fSigning);
184 int rc = pThis->pDesc->pfnReset(pThis->pDesc, pThis->abState, pThis->fSigning);
203 AssertReturn(!pThis->fSigning, VERR_INVALID_FUNCTION);
257 AssertReturn(pThis->fSigning, VERR_INVALID_FUNCTION);
87 RTCrPkixSignatureCreate(PRTCRPKIXSIGNATURE phSignature, PCRTCRPKIXSIGNATUREDESC pDesc, void *pvOpaque, bool fSigning, PCRTASN1BITSTRING pKey, PCRTASN1DYNTYPE pParams) argument
H A Dpkix-signature-rsa.cpp54 bool fSigning; member in struct:RTCRPKIXSIGNATURERSA
140 bool fSigning, PCRTASN1BITSTRING pKey, PCRTASN1DYNTYPE pParams)
146 pThis->fSigning = fSigning;
155 if (!fSigning)
198 static DECLCALLBACK(int) rtCrPkixSignatureRsa_Reset(PCRTCRPKIXSIGNATUREDESC pDesc, void *pvState, bool fSigning) argument
201 Assert(pThis->fSigning == fSigning); NOREF(pThis);
207 static DECLCALLBACK(void) rtCrPkixSignatureRsa_Delete(PCRTCRPKIXSIGNATUREDESC pDesc, void *pvState, bool fSigning) argument
210 Assert(pThis->fSigning
139 rtCrPkixSignatureRsa_Init(PCRTCRPKIXSIGNATUREDESC pDesc, void *pvState, void *pvOpaque, bool fSigning, PCRTASN1BITSTRING pKey, PCRTASN1DYNTYPE pParams) argument
[all...]
/vbox/include/iprt/crypto/
H A Dpkix.h114 * @param fSigning Set if a signing operation is going to be performed,
123 DECLCALLBACKMEMBER(int, pfnInit)(struct RTCRPKIXSIGNATUREDESC const *pDesc, void *pvState, void *pvOpaque, bool fSigning,
135 * @param fSigning Exactly the same value as the init call.
137 DECLCALLBACKMEMBER(int, pfnReset)(struct RTCRPKIXSIGNATUREDESC const *pDesc, void *pvState, bool fSigning);
147 * @param fSigning Exactly the same value as the init call.
149 DECLCALLBACKMEMBER(void, pfnDelete)(struct RTCRPKIXSIGNATUREDESC const *pDesc, void *pvState, bool fSigning);
152 * Verifies a signed message digest (fSigning = false).
169 * Sign a message digest (fSigning = true).
198 RTDECL(int) RTCrPkixSignatureCreateByObjIdString(PRTCRPKIXSIGNATURE phSignature, const char *pszObjId, bool fSigning,
200 RTDECL(int) RTCrPkixSignatureCreateByObjId(PRTCRPKIXSIGNATURE phSignature, PCRTASN1OBJID pObjId, bool fSigning,
[all...]

Completed in 62 milliseconds