Searched refs:pHash (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/crypto/external/cpl/trousers/dist/src/trspi/crypto/openssl/ |
H A D | rsa.c | 146 Trspi_Verify(UINT32 HashType, BYTE *pHash, UINT32 iHashLength, in Trspi_Verify() argument 204 } else if (memcmp(pHash, buf, iHashLength)) { in Trspi_Verify() 209 if ((rv = RSA_verify(nid, pHash, iHashLength, pSignature, sig_len, rsa)) == 0) { in Trspi_Verify()
|
/netbsd-src/crypto/external/bsd/netpgp/dist/ref/ |
H A D | rfc2437.txt | 1261 4. Let pHash = Hash(P), an octet string of length hLen. 1263 5. Concatenate pHash, PS, the message M, and other padding to form a 1264 data block DB as: DB = pHash || PS || 01 || M 1323 8. Let pHash = Hash(P), an octet string of length hLen. 1325 9. Separate DB into an octet string pHash' consisting of the first 1327 consecutive zero octets following pHash', and a message M as: 1329 DB = pHash' || PS || 01 || M 1334 10. If pHash' does not equal pHash, output "decoding error" and stop. 1770 The default encoding parameters is an empty string (so that pHash in
|
/netbsd-src/crypto/external/cpl/trousers/dist/src/include/trousers/ |
H A D | trousers.h | 199 TSS_RESULT Trspi_Verify(UINT32 HashType, BYTE *pHash, UINT32 iHashLength,
|
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | sqlite3.c | 17892 FuncDef *pHash; /* Next with a different name but the same hash */ member 36704 unsigned int *pHash /* Write the hash value here */ 36722 if( pHash ) *pHash = h; 121197 Hash *pHash; 121200 pHash = &db->aDb[iDb].pSchema->idxHash; 121201 pIndex = sqlite3HashInsert(pHash, zIdxName, 0); 122035 Hash *pHash; 122036 pHash = &(db->aDb[1].pSchema->trigHash); 122037 sqlite3HashInsert(pHash, pRet->zName, 0); 122060 Hash *pHash; [all …]
|
H A D | shell.c | 12028 static void idxHashInit(IdxHash *pHash){ in idxHashInit() argument 12029 memset(pHash, 0, sizeof(IdxHash)); in idxHashInit() 12035 static void idxHashClear(IdxHash *pHash){ in idxHashClear() argument 12040 for(pEntry=pHash->aHash[i]; pEntry; pEntry=pNext){ in idxHashClear() 12046 memset(pHash, 0, sizeof(IdxHash)); in idxHashClear() 12069 IdxHash *pHash, in idxHashAdd() argument 12078 for(pEntry=pHash->aHash[iHash]; pEntry; pEntry=pEntry->pHashNext){ in idxHashAdd() 12091 pEntry->pHashNext = pHash->aHash[iHash]; in idxHashAdd() 12092 pHash->aHash[iHash] = pEntry; in idxHashAdd() 12094 pEntry->pNext = pHash->pFirst; in idxHashAdd() [all …]
|