Searched refs:hash (Results 426 - 450 of 1003) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dgcrypt-module.h145 gcry_mpi_t hash,
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/lzma_src/C/
H A DLzFind.h23 CLzRef *hash; member in struct:_CMatchFinder
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/tests/
H A Dcavs_driver.pl75 # HMAC (SHA - caveat: we only support hash output equal to the block size of
76 # of the hash - we do not support truncation of the hash; to support
166 # $2: hash algo
180 # Creating a hash
182 # $2: hash type in the form documented in openssl's dgst(1ssl) - e.g.
184 # return: hash in hex form
185 my $hash;
219 # $2: length of the hash to be calculated in bits
221 # $4: hash typ
[all...]
H A Dfipsdrv.c1532 encoded KEYFILE and the hash algorithm HASHALGO. */
1547 unsigned char hash[64];
1551 if (!hashsize || hashsize > sizeof hash)
1552 die ("digest too long for buffer or unknown hash algorithm\n");
1553 gcry_md_hash_buffer (hashalgo, hash, data, datalen);
1555 "(data (flags pkcs1)(hash %s %b))",
1557 (int)hashsize, hash);
1623 PEM encoded KEYFILE and the hash algorithm HASHALGO against the
1635 unsigned char hash[64];
1639 if (!hashsize || hashsize > sizeof hash)
1541 unsigned char hash[64]; local
1628 unsigned char hash[64]; local
1875 char hash[20]; local
1967 char hash[20]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/tests/
H A Dcavs_driver.pl75 # HMAC (SHA - caveat: we only support hash output equal to the block size of
76 # of the hash - we do not support truncation of the hash; to support
166 # $2: hash algo
180 # Creating a hash
182 # $2: hash type in the form documented in openssl's dgst(1ssl) - e.g.
184 # return: hash in hex form
185 my $hash;
219 # $2: length of the hash to be calculated in bits
221 # $4: hash typ
[all...]
H A Dfipsdrv.c1532 encoded KEYFILE and the hash algorithm HASHALGO. */
1547 unsigned char hash[64];
1551 if (!hashsize || hashsize > sizeof hash)
1552 die ("digest too long for buffer or unknown hash algorithm\n");
1553 gcry_md_hash_buffer (hashalgo, hash, data, datalen);
1555 "(data (flags pkcs1)(hash %s %b))",
1557 (int)hashsize, hash);
1623 PEM encoded KEYFILE and the hash algorithm HASHALGO against the
1635 unsigned char hash[64];
1639 if (!hashsize || hashsize > sizeof hash)
1541 unsigned char hash[64]; local
1628 unsigned char hash[64]; local
1875 char hash[20]; local
1967 char hash[20]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/netkit-ftp-0.18-pre1/ftp/
H A Dcmds.c916 oldhash = hash, hash = 0;
934 verbose = oldverbose; hash = oldhash;
1099 onoff(hash), onoff(sendport));
1134 * Toggle hash mark printing during transfers.
1139 hash = !hash;
1140 if (hash && tick)
1143 printf("Hash mark printing %s", onoff(hash));
1144 code = hash;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Dcache-exp.c21 #include "hash.h"
47 * Instead of returning hash % table->hashsize (implying a divide)
48 * we return the high 32 bits of the (hash * table->hashsize) that will
49 * give results between [0 and hashsize-1] and same hash distribution,
86 dlog(LOG_ERR, "unknown layer 3 proto in hash");
288 .hash = cache_exp_hash,
300 .hash = cache_exp_hash,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DOtherFunctions.h323 // md4clr -- replacement for memset(hash,0,16)
324 inline void md4clr(void* hash) argument
326 memset(hash, 0, 16);
H A DTextClient.cpp328 CMD4Hash hash; local
357 } else if ( hash.Decode(token.Trim(false).Trim(true)) ) {
358 if ( !hash.IsEmpty() ) {
359 Show(_("Processing by hash: "+token+wxT("\n")));
360 request->AddTag(CECTag(EC_TAG_PARTFILE, hash));
395 Show(_("This command requires an argument. Valid arguments: a file hash.\n"));
398 CMD4Hash hash; local
399 if (hash.Decode(args.Trim(false).Trim(true))) {
400 if (!hash.IsEmpty()) {
402 CECTag hashtag(EC_TAG_PARTFILE, hash);
[all...]
H A DClientTCPSocket.cpp579 CMD4Hash hash = data.ReadHash(); local
580 const CPartFile* file = theApp->downloadqueue->GetFileByID(hash);
590 CMD4Hash hash = data.ReadHash(); local
591 const CPartFile* file = theApp->downloadqueue->GetFileByID(hash);
1509 CMD4Hash hash = data.ReadHash(); local
1510 const CKnownFile* file = theApp->downloadqueue->GetFileByID(hash);
1535 CMD4Hash hash = data.ReadHash(); local
1536 const CKnownFile* file = theApp->downloadqueue->GetFileByID(hash);
1614 CMD4Hash hash = data.ReadHash(); local
1615 CKnownFile* pPartFile = theApp->sharedfiles->GetFileByID(hash);
1709 CMD4Hash hash = data_in.ReadHash(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dhashmap.h17 // In wxUSE_STL build we prefer to use the standard hash map class but it can
61 #else // !wxUSE_STL || no std::{hash,unordered}_map class available
281 /* removes all elements from the hash table, but does not */ \
455 /* warnings from hash table class' operator=(): gcc complains about */ \
468 #endif // various hash map implementations
476 // in the hash table class assignment operator (where they're assigned)
483 WX_HASH_MAP_NAMESPACE::hash<long> longHash;
484 WX_HASH_MAP_NAMESPACE::hash<unsigned long> ulongHash;
485 WX_HASH_MAP_NAMESPACE::hash<int> intHash;
486 WX_HASH_MAP_NAMESPACE::hash<unsigne
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/autofs4/
H A Droot.c419 unsigned int hash = name->hash; local
442 if (active->d_name.hash != hash)
474 unsigned int hash = name->hash; local
497 if (expiring->d_name.hash != hash)
550 * Mark the dentry incomplete but don't hash it. We do this
556 * operation itself can then hash th
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dwrite-java.c106 /* Return the Java hash code of a string mod 2^31.
117 int hash = 0; local
124 hash = 31 * hash + uc;
130 hash = 31 * hash + uc1;
131 hash = 31 * hash + uc2;
134 return hash & 0x7fffffff;
138 /* Return the Java hash cod
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/conf/
H A Dconf_lib.c72 void CONF_set_nconf(CONF *conf, LHASH *hash) argument
78 conf->data = hash;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/utils/
H A Dshow.c218 tr_http_escape_sha1( escaped, inf->hash );
265 if( !memcmp( inf->hash, key, SHA_DIGEST_LENGTH ) )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/conf/
H A Dconf_lib.c73 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash) argument
79 conf->data = hash;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/lhash/
H A Dlhash.h60 * Header for dynamic hash table routines Author - Eric Young
83 unsigned long hash; member in struct:lhash_node_st
101 /* First: "hash" functions */
142 LHASH_HASH_FN_TYPE hash; member in struct:lhash_st
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/conf/
H A Dconf_lib.c73 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash) argument
79 conf->data = hash;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/lhash/
H A Dlhash.h60 * Header for dynamic hash table routines Author - Eric Young
83 unsigned long hash; member in struct:lhash_node_st
101 /* First: "hash" functions */
142 LHASH_HASH_FN_TYPE hash; member in struct:lhash_st
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/plugin/
H A Dwsseapi.h80 struct soap_wsse_digest *digest; /**< List of ID-hash pairs */
91 @brief Digest dictionary: linked list of ID-hash pairs
103 unsigned char hash[SOAP_SMD_MAX_SIZE];/**< Digest hash value */ member in struct:soap_wsse_digest
158 int soap_wsse_verify_digest(struct soap *soap, int alg, int canonical, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/plugin/
H A Dwsseapi.h80 struct soap_wsse_digest *digest; /**< List of ID-hash pairs */
91 @brief Digest dictionary: linked list of ID-hash pairs
103 unsigned char hash[SOAP_SMD_MAX_SIZE];/**< Digest hash value */ member in struct:soap_wsse_digest
158 int soap_wsse_verify_digest(struct soap *soap, int alg, int canonical, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE]);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/racoon/
H A Dhandler.h130 vchar_t *skeyid_a; /* SKEYID_a, i.e. hash */
133 vchar_t *hash; /* HASH minus general header */ member in struct:ph1handle
160 struct isakmp_pl_hash *pl_hash; /* pointer to hash payload */
295 vchar_t *hash; /* hash of the received packet */ member in struct:recvdpkt
/netgear-R7000-V1.0.7.12_1.2.5/src/router/vlan/
H A Dvlan_test.pl25 my $hash = $ARGV[1];
68 open(IF, "$hash");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/lib/
H A Dutils.c435 unsigned hash; local
446 hash = addr[len-1] ^ addr[len-2] ^ addr[len-3] ^ addr[len-4];
448 for (n = nht[hash]; n; n = n->next) {
460 n->next = nht[hash];
461 nht[hash] = n;

Completed in 281 milliseconds

<<11121314151617181920>>