Home
last modified time | relevance | path

Searched refs:pubKeyInfo (Results 1 – 2 of 2) sorted by relevance

/reactos/dll/win32/crypt32/
H A Dcert.c2454 pubKeyInfo, pubKeyID, 0, NULL, &key); in CRYPT_VerifySignature()
2522 if (!pubKeyInfo->PublicKey.cbData) in CNG_ImportECCPubKey()
2528 if (pubKeyInfo->PublicKey.pbData[0] != 0x4) in CNG_ImportECCPubKey()
2566 ecckey_len = sizeof(BCRYPT_ECCKEY_BLOB) + pubKeyInfo->PublicKey.cbData - 1; in CNG_ImportECCPubKey()
2574 ecckey->cbKey = (pubKeyInfo->PublicKey.cbData - 1) / 2; in CNG_ImportECCPubKey()
2575 memcpy(ecckey + 1, pubKeyInfo->PublicKey.pbData + 1, pubKeyInfo->PublicKey.cbData - 1); in CNG_ImportECCPubKey()
2588 if (!strcmp(pubKeyInfo->Algorithm.pszObjId, szOID_ECC_PUBLIC_KEY)) in CNG_ImportPubKey()
2589 return CNG_ImportECCPubKey(pubKeyInfo, key); in CNG_ImportPubKey()
2652 if (!strcmp(pubKeyInfo->Algorithm.pszObjId, szOID_ECC_PUBLIC_KEY)) in CNG_PrepareSignature()
2673 ret = CNG_ImportPubKey(pubKeyInfo, &key); in CNG_VerifySignature()
[all …]
/reactos/modules/rostests/winetests/crypt32/
H A Dcert.c1917 PCERT_PUBLIC_KEY_INFO pubKeyInfo = NULL; in testVerifyCertSig() local
1928 pubKeyInfo = HeapAlloc(GetProcessHeap(), 0, pubKeySize); in testVerifyCertSig()
1929 if (pubKeyInfo) in testVerifyCertSig()
1932 X509_ASN_ENCODING, (LPSTR)sigOID, 0, NULL, pubKeyInfo, in testVerifyCertSig()
1938 cert, size, pubKeyInfo); in testVerifyCertSig()
1942 HeapFree(GetProcessHeap(), 0, pubKeyInfo); in testVerifyCertSig()
1993 PCERT_PUBLIC_KEY_INFO pubKeyInfo = NULL; in testVerifyCertSigEx() local
2027 pubKeyInfo = HeapAlloc(GetProcessHeap(), 0, size); in testVerifyCertSigEx()
2028 if (pubKeyInfo) in testVerifyCertSigEx()
2031 X509_ASN_ENCODING, (LPSTR)sigOID, 0, NULL, pubKeyInfo, &size); in testVerifyCertSigEx()
[all …]