Searched refs:keyHash (Results 1 - 17 of 17) sorted by relevance

/macosx-10.9.5/Security-55471.14.18/include/security_smime/
H A Dplhash.h81 PLHashNumber keyHash; /* key hash function result */ member in struct:PLHashEntry
90 PLHashFunction keyHash; /* key hash function */ member in struct:PLHashTable
108 PL_NewHashTable(PRUint32 numBuckets, PLHashFunction keyHash,
145 PL_HashTableRawLookup(PLHashTable *ht, PLHashNumber keyHash, const void *key);
148 PL_HashTableRawLookupConst(PLHashTable *ht, PLHashNumber keyHash,
152 PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash,
H A Dplhash.c109 PL_NewHashTable(PRUint32 n, PLHashFunction keyHash, argument
146 ht->keyHash = keyHash;
185 PL_HashTableRawLookup(PLHashTable *ht, PLHashNumber keyHash, const void *key) argument
193 h = keyHash * GOLDEN_RATIO;
197 if (he->keyHash == keyHash && (*ht->keyCompare)(key, he->key)) {
218 PL_HashTableRawLookupConst(PLHashTable *ht, PLHashNumber keyHash, argument
227 h = keyHash * GOLDEN_RATIO;
231 if (he->keyHash
243 PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash, const void *key, void *value) argument
303 PLHashNumber keyHash; local
368 PLHashNumber keyHash; local
384 PLHashNumber keyHash; local
401 PLHashNumber keyHash; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_smime/lib/
H A Dplhash.h81 PLHashNumber keyHash; /* key hash function result */ member in struct:PLHashEntry
90 PLHashFunction keyHash; /* key hash function */ member in struct:PLHashTable
108 PL_NewHashTable(PRUint32 numBuckets, PLHashFunction keyHash,
145 PL_HashTableRawLookup(PLHashTable *ht, PLHashNumber keyHash, const void *key);
148 PL_HashTableRawLookupConst(PLHashTable *ht, PLHashNumber keyHash,
152 PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash,
H A Dplhash.c109 PL_NewHashTable(PRUint32 n, PLHashFunction keyHash, argument
146 ht->keyHash = keyHash;
185 PL_HashTableRawLookup(PLHashTable *ht, PLHashNumber keyHash, const void *key) argument
193 h = keyHash * GOLDEN_RATIO;
197 if (he->keyHash == keyHash && (*ht->keyCompare)(key, he->key)) {
218 PL_HashTableRawLookupConst(PLHashTable *ht, PLHashNumber keyHash, argument
227 h = keyHash * GOLDEN_RATIO;
231 if (he->keyHash
243 PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash, const void *key, void *value) argument
303 PLHashNumber keyHash; local
368 PLHashNumber keyHash; local
384 PLHashNumber keyHash; local
401 PLHashNumber keyHash; local
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DIdentity.cpp103 CFHashCode keyHash; member in struct:keyAndCertHash
113 hashes.keyHash = pKeyItem->hash();
122 if (hashes.keyHash != 0 || hashes.certHash != 0)
H A DIdentityCursor.cpp321 const CssmData &keyHash = dbAttributes[0]; local
324 mCertificateCursor->add(CSSM_DB_EQUAL, Schema::kX509CertificatePublicKeyHash, keyHash);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DIdentity.cpp103 CFHashCode keyHash; member in struct:keyAndCertHash
113 hashes.keyHash = pKeyItem->hash();
122 if (hashes.keyHash != 0 || hashes.certHash != 0)
H A DIdentityCursor.cpp321 const CssmData &keyHash = dbAttributes[0]; local
324 mCertificateCursor->add(CSSM_DB_EQUAL, Schema::kX509CertificatePublicKeyHash, keyHash);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DIdentity.cpp103 CFHashCode keyHash; member in struct:keyAndCertHash
113 hashes.keyHash = pKeyItem->hash();
122 if (hashes.keyHash != 0 || hashes.certHash != 0)
H A DIdentityCursor.cpp321 const CssmData &keyHash = dbAttributes[0]; local
324 mCertificateCursor->add(CSSM_DB_EQUAL, Schema::kX509CertificatePublicKeyHash, keyHash);
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecOTRDHKey.c31 uint8_t keyHash[CCSHA1_OUTPUT_SIZE]; member in struct:_SecOTRFullDHKey
81 ccdigest(ccsha1_di(), publicKeySize, *bytes, newFDHK->keyHash);
109 ccdigest(ccsha1_di(), size, publicKey, fullKey->keyHash);
128 return fullKey->keyHash;
141 uint8_t keyHash[CCSHA1_OUTPUT_SIZE]; member in struct:_SecOTRPublicDHKey
169 memcpy(newPDHK->keyHash, full->keyHash, CCSHA1_OUTPUT_SIZE);
184 ccdigest(ccsha1_di(), publicKeySize, *bytes, newPDHK->keyHash);
200 ccdigest(ccsha1_di(), *size, *bytes, newPDHK->keyHash);
216 return pubKey->keyHash;
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dhash.h32 inline void init(UHashFunction *keyHash, UKeyComparator *keyComp, UValueComparator *valueComp, UErrorCode& status);
104 inline void Hashtable::init(UHashFunction *keyHash, UKeyComparator *keyComp, argument
109 uhash_init(&hashObj, keyHash, keyComp, valueComp, &status);
H A Duhash.h179 * @param keyHash A pointer to the key hashing function. Must not be
188 uhash_open(UHashFunction *keyHash,
195 * @param keyHash A pointer to the key hashing function. Must not be
205 uhash_openSize(UHashFunction *keyHash,
213 * @param keyHash A pointer to the key hashing function. Must not be
223 UHashFunction *keyHash,
H A Duhash.c248 UHashFunction *keyHash,
255 U_ASSERT(keyHash != NULL);
258 result->keyHasher = keyHash;
276 _uhash_create(UHashFunction *keyHash, argument
291 _uhash_init(result, keyHash, keyComp, valueComp, primeIndex, status);
537 uhash_open(UHashFunction *keyHash, argument
542 return _uhash_create(keyHash, keyComp, valueComp, DEFAULT_PRIME_INDEX, status);
546 uhash_openSize(UHashFunction *keyHash, argument
558 return _uhash_create(keyHash, keyComp, valueComp, i, status);
563 UHashFunction *keyHash,
247 _uhash_init(UHashtable *result, UHashFunction *keyHash, UKeyComparator *keyComp, UValueComparator *valueComp, int32_t primeIndex, UErrorCode *status) argument
562 uhash_init(UHashtable *fillinResult, UHashFunction *keyHash, UKeyComparator *keyComp, UValueComparator *valueComp, UErrorCode *status) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_comcryption/
H A DcomcryptPriv.c13 12/23/97 dpm Added keyHash(), used result to initialize
109 static unsigned keyHash(const unsigned char *key, unsigned keylen) function
175 unsigned char khash = (unsigned char)keyHash(key, keyLen);
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_x509_tp/lib/
H A DtpOcspCertVfy.cpp147 CSSM_DATA keyHash = {CC_SHA1_DIGEST_LENGTH, digest}; local
150 if(tpCompareCssmData(&keyHash, respKeyHash)) {
/macosx-10.9.5/Security-55471.14.18/libsecurity_comcryption/lib/
H A DcomcryptPriv.c13 12/23/97 dpm Added keyHash(), used result to initialize
109 static unsigned keyHash(const unsigned char *key, unsigned keylen) function
175 unsigned char khash = (unsigned char)keyHash(key, keyLen);

Completed in 246 milliseconds