Searched refs:szObjId (Results 1 - 16 of 16) sorted by relevance
/vbox/src/VBox/Runtime/common/crypto/ |
H A D | spc-sanity.cpp | 62 pIndData->DigestInfo.DigestAlgorithm.Algorithm.szObjId, 63 pSignedData->SignerInfos.paItems[0].DigestAlgorithm.Algorithm.szObjId); 69 pIndData->DigestInfo.DigestAlgorithm.Algorithm.szObjId, 70 pSignedData->DigestAlgorithms.paItems[0].Algorithm.szObjId); 77 pIndData->DigestInfo.DigestAlgorithm.Algorithm.szObjId); 86 pIndData->DigestInfo.DigestAlgorithm.Algorithm.szObjId); 97 pIndData->Data.Type.szObjId, RTCRSPCPEIMAGEDATA_OID, pIndData->Data.enmType); 138 i, pAttr->Type.szObjId);
|
H A D | x509-verify.cpp | 69 pThis->SignatureAlgorithm.Algorithm.szObjId); 74 pszCipherOid, pThis->SignatureAlgorithm.Algorithm.szObjId, pAlgorithm->szObjId);
|
H A D | pkix-verify.cpp | 84 "Unknown public key algorithm [IPRT]: %s", pAlgorithm->szObjId); 103 RTErrInfoSetF(pErrInfo, rcIprt, "Unknown digest algorithm [IPRT]: %s", pAlgorithm->szObjId); 113 int iAlgoNid = OBJ_txt2nid(pAlgorithm->szObjId); 116 "Unknown public key algorithm [OpenSSL]: %s", pAlgorithm->szObjId); 121 "EVP_get_digestbyname failed on %s (%s)", pszAlogSn, pAlgorithm->szObjId); 128 "EVP_VerifyInit_ex failed (algorithm type is %s / %s)", pszAlogSn, pAlgorithm->szObjId);
|
H A D | x509-core.cpp | 68 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_MD5)) 70 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_SHA1)) 72 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_SHA256)) 74 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_SHA512)) 77 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_SHA384)) 79 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_SHA224)) 81 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_SHA512T224)) 83 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_SHA512T256)) 94 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_MD5)) 96 if (!strcmp(pThis->Algorithm.szObjId, RTCRX509ALGORITHMIDENTIFIERID_SHA [all...] |
H A D | pkcs7-sanity.cpp | 72 i, pSignedData->DigestAlgorithms.paItems[i].Algorithm.szObjId); 141 i, pSignerInfo->DigestAlgorithm.Algorithm.szObjId); 150 i, pSignerInfo->DigestEncryptionAlgorithm.Algorithm.szObjId, 151 pCert->TbsCertificate.SubjectPublicKeyInfo.Algorithm.Algorithm.szObjId);
|
H A D | x509-sanity.cpp | 139 pThis->SignatureAlgorithm.Algorithm.szObjId, 140 pThis->TbsCertificate.Signature.Algorithm.szObjId);
|
H A D | pkix-signature-builtin.cpp | 114 return RTCrPkixSignatureFindByObjIdString(pObjId->szObjId, ppvOpaque);
|
H A D | pkcs7-verify.cpp | 248 &pAttrib->uValues.pObjIds->paItems[0], pSignedData->ContentInfo.ContentType.szObjId); 352 pSignerInfo->DigestAlgorithm.Algorithm.szObjId); 493 pSignerCert->TbsCertificate.SubjectPublicKeyInfo.Algorithm.Algorithm.szObjId, 494 pSignerInfo->DigestEncryptionAlgorithm.Algorithm.szObjId); 562 pCounterSignerInfo->DigestAlgorithm.Algorithm.szObjId, rc); 622 pSignedData->DigestAlgorithms.paItems[i].Algorithm.szObjId, rc);
|
H A D | x509-certpaths.cpp | 1052 const char *pszType = pAttrib->Type.szObjId; 1053 if ( !strncmp(pAttrib->Type.szObjId, "2.5.4.", 6) 1054 && (pAttrib->Type.szObjId[8] == '\0' || pAttrib->Type.szObjId[9] == '\0')) 1056 switch (RTStrToUInt8(&pAttrib->Type.szObjId[6])) 2417 "Node #%u has an unknown critical extension: %s", pThis->v.iNode, pCur->ExtnId.szObjId);
|
H A D | digest-builtin.cpp | 686 return RTCrDigestFindByObjIdString(pObjId->szObjId, ppvOpaque);
|
/vbox/src/VBox/Runtime/common/asn1/ |
H A D | asn1-ut-objid.cpp | 162 AssertReturn(cbObjId < sizeof(pThis->szObjId), VERR_ASN1_OBJID_TOO_LONG_STRING_FORM); 237 * Find space for the component array, either at the unused end of szObjId 243 size_t cbLeft = sizeof(pThis->szObjId) - cbObjId; 246 pThis->pauComponents = (uint32_t *)&pThis->szObjId[sizeof(pThis->szObjId) - cComponents * sizeof(uint32_t)]; 302 (uint8_t *)&pThis->szObjId[0], &pThis->Asn1Core.cb); 307 * enough room left in the szObjId for it if we're lucky. 311 pThis->Asn1Core.uData.pv = memmove(&pThis->szObjId[cbObjId], &pThis->szObjId[0], pThis->Asn1Core.cb); 314 rc = RTAsn1ContentDup(&pThis->Asn1Core, pThis->szObjId, pThi [all...] |
H A D | asn1-ut-objid-decode.cpp | 227 if (cchObjId < RT_SIZEOFMEMB(RTASN1OBJID, szObjId)) 235 cchObjId, RT_SIZEOFMEMB(RTASN1OBJID, szObjId)); 281 if (cComponents * sizeof(uint32_t) <= sizeof(pThis->szObjId) - cchObjId - 1) 282 pThis->pauComponents = (uint32_t *)&pThis->szObjId[sizeof(pThis->szObjId) - cComponents * sizeof(uint32_t)]; 315 char *pszObjId = &pThis->szObjId[0];
|
H A D | asn1-dump.cpp | 639 const char *pszObjIdName = rtAsn1DumpLookupObjIdName(((PCRTASN1OBJID)pAsn1Core)->szObjId); 642 pszDefault, pszObjIdName, ((PCRTASN1OBJID)pAsn1Core)->szObjId); 644 rtAsn1DumpPrintf(pData, "OBJECT IDENTIFIER %s'%s'\n", pszDefault, ((PCRTASN1OBJID)pAsn1Core)->szObjId);
|
/vbox/src/VBox/Runtime/tools/ |
H A D | RTSignTool.cpp | 225 RTMsgError("No PKCS7 content: ContentType=%s", Pkcs7Ci.ContentType.szObjId);
|
/vbox/include/iprt/ |
H A D | asn1.h | 927 * szObjId for both the dottet string and the component values. */ 930 * This may point within szObjId if there is enough space for both there. */ 942 char szObjId[87]; member in struct:RTASN1OBJID
|
/vbox/src/VBox/Runtime/common/ldr/ |
H A D | ldrPE.cpp | 2385 if (!strcmp(pSignature->pSignedData->ContentInfo.ContentType.szObjId, RTCRSPCINDIRECTDATACONTENT_OID)) 2413 "Unknown pSignedData.ContentInfo.ContentType.szObjId value: %s (expected %s)", 2414 pSignature->pSignedData->ContentInfo.ContentType.szObjId, RTCRSPCINDIRECTDATACONTENT_OID);
|
Completed in 84 milliseconds