Home
last modified time | relevance | path

Searched refs:HASH (Results 1 – 25 of 60) sorted by relevance

123

/freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dhash.t25 my $text = $template->fill_in(HASH => $vars);
33 $text = $template->fill_in(HASH => $vars);
38 $text = $template->fill_in(HASH => $vars, PACKAGE => 'Q');
46 $text = $template->fill_in(HASH => $vars);
58 my $text = $template->fill_in(HASH => { 'v' => undef });
68 $text = $template->fill_in(HASH => [ { 'v' => 17 }, { 'v' => undef } ]);
83 HASH => [
H A Dsafe2.t59 $text = $t->fill_in(HASH => { H => 'good5' });
66 $text = $t->fill_in(HASH => { H => 'good6' }, PACKAGE => 'Q');
72 $text = $t->fill_in(HASH => { H => 'good7' }, SAFE => $c);
81 $text = $t->fill_in(HASH => { H => 'good8' }, SAFE => $c, PACKAGE => 'Q2');
H A Dstrict.t32 my $t1 = $tmpl1->fill_in(PACKAGE => 'T1', STRICT => 1, HASH => { bar => 'baz' });
35 my $t2 = $tmpl2->fill_in(PACKAGE => 'T2', HASH => { bar => 'baz' });
42 HASH => { foo => 'hashval2' });
H A Dtemplate-encoding.t30 )->fill_in(HASH => { name => 'World' });
45 )->fill_in(HASH => { name => 'World' });
H A Dexported.t40 HASH => { "var" => \"It is good!" });
46 HASH => { "var" => \"It is good!" });
H A Dinline-comment.t17 is $tmpl->fill_in(HASH => $vars), 'Hello Bob';
H A Drt29928.t23 HASH => { foo => 'things' },
H A Dwarnings.t34 my $result = $template->fill_in(HASH => { good => 'good' });
/freebsd/sys/contrib/zstd/lib/
H A Dlibzstd.mk182 HASH ?= md5
185 HASH ?= gmd5sum
187 HASH ?= md5 -n
189 HASH ?= md5
191 HASH ?= md5sum
193 HASH_DIR = conf_$(shell echo $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(ZSTD_FILES) | $(HASH) | cut -…
194 HAVE_HASH :=$(shell echo 1 | $(HASH) > /dev/null && echo 1 || echo 0)
196 …$(info warning : could not find HASH ($(HASH)), needed to differentiate builds using different fla…
/freebsd/crypto/openssl/doc/man7/
H A DEVP_RAND-HASH-DRBG.pod5 EVP_RAND-HASH-DRBG - The HASH DRBG EVP_RAND implementation
14 "HASH-DRBG" is the name for this implementation; it can be used with the
57 A context for HASH DRBG can be obtained by calling:
59 EVP_RAND *rand = EVP_RAND_fetch(NULL, "HASH-DRBG", NULL);
70 rand = EVP_RAND_fetch(NULL, "HASH-DRBG", NULL);
/freebsd/crypto/openssl/doc/man3/
H A DEVP_BytesToKey.pod47 D_i = HASH^count(D_(i-1) || data || salt)
49 where || denotes concatenation, D_0 is empty, HASH is the digest
50 algorithm in use, HASH^1(data) is simply HASH(data), HASH^2(data)
51 is HASH(HASH(data)) and so on.
/freebsd/crypto/openssh/regress/
H A Dpercent.sh15 HASH=""
85 HASH=`printf "${HOSTNAME}127.0.0.1${PORT}$REMUSER" |
87 trial $i '%C' $HASH
105 if [ ! -z "${HASH}" ]; then
107 out="$out/$HASH"
/freebsd/contrib/unbound/smallapp/
H A Dunbound-control-setup.sh52 HASH=sha256
112 echo "default_md=$HASH" >> request.cfg
129 echo "default_md=$HASH" >> request.cfg
139 …days $DAYS -CA $SVR_BASE"_trust.pem" -CAkey $SVR_BASE.key -CAcreateserial -$HASH -out $CTL_BASE.pem
H A Dunbound-control-setup.sh.in52 HASH=sha256
129 default_md=$HASH
167 default_md=$HASH
196 -$HASH \
/freebsd/crypto/openssl/util/perl/OpenSSL/
H A DTemplate.pm61 my %hash = ( %{$opts{HASH}} );
62 delete $opts{HASH};
64 $self->SUPER::fill_in(HASH => { quotify1 => \&quotify1,
/freebsd/contrib/diff/src/
H A Dio.c33 #define HASH(h, c) ((c) + ROL (h, 7)) macro
254 h = HASH (h, tolower (c)); in find_and_hash_each_line()
267 h = HASH (h, ' '); in find_and_hash_each_line()
271 h = HASH (h, tolower (c)); in find_and_hash_each_line()
307 h = HASH (h, c); in find_and_hash_each_line()
315 h = HASH (h, tolower (c)); in find_and_hash_each_line()
324 h = HASH (h, c); in find_and_hash_each_line()
337 h = HASH (h, ' '); in find_and_hash_each_line()
341 h = HASH (h, c); in find_and_hash_each_line()
376 h = HASH (h, c); in find_and_hash_each_line()
[all …]
/freebsd/usr.sbin/ppp/
H A Dpred.c58 #define HASH(state, x) state->hash = (state->hash << 4) ^ (x) macro
83 HASH(state, *source++); in compress()
96 HASH(state, *source++); in SyncTable()
120 HASH(state, *dest++); in decompress()
/freebsd/usr.sbin/freebsd-update/
H A Dfreebsd-update.sh2001 while read HASH; do
2002 if ! [ -f files/${HASH}.gz ]; then
2003 echo ${HASH}
2016 HASH=`echo "${LINE}" | cut -f 2 -d '|'`
2019 if [ -f files/${HASH}.gz ]; then
2025 if [ `sha256 -q tmpfile` != ${HASH} ]; then
2032 gzip -c < tmpfile > files/${HASH}.gz
2860 while read HASH; do
2861 if ! [ -f files/${HASH}.gz ]; then
2990 while read FPATH TYPE OWNER GROUP PERM FLAGS HASH LINK; do
[all …]
/freebsd/contrib/bmake/
H A Dhash.c120 DEBUG4(HASH, "HashTable_Find: %p h=%08x key=%.*s\n", in HashTable_Find()
248 DEBUG4(HASH, "HashTable_Enlarge: %p size=%d entries=%d maxchain=%d\n", in HashTable_Enlarge()
333 DEBUG4(HASH, "HashTable \"%s\": size=%u entries=%u maxchain=%u\n", in HashTable_DebugStats()
/freebsd/sys/netgraph/
H A Dng_etf.c140 #define HASH(et) ((((et)>>12)+((et)>>8)+((et)>>4)+(et)) & 0x0f) macro
158 struct filterhead *chain = etfp->hashtable + HASH(ethertype); in ng_etf_findentry()
325 + HASH(fil->ethertype), in ng_etf_rcvmsg()
H A Dng_pred1.c67 #define HASH(x) priv->Hash = (priv->Hash << 4) ^ (x) macro
602 HASH(*source++); in Pred1Compress()
644 HASH(*dest++); in Pred1Decompress()
662 HASH(*source++); in Pred1SyncTable()
/freebsd/sys/contrib/openzfs/module/icp/algs/skein/
H A DTHIRDPARTYLICENSE.descrip1 LICENSE TERMS OF SKEIN HASH ALGORITHM IMPLEMENTATION
/freebsd/lib/librt/
H A Dsigev_thread.c49 #define HASH(t, id) ((((id) << 3) + (t)) % HASH_QUEUES) macro
248 int chain = HASH(type, id); in __sigev_find()
260 int chain = HASH(sn->sn_type, sn->sn_id); in __sigev_register()
/freebsd/usr.sbin/nscd/
H A Dhashtable.h157 #define HASHTABLE_GENERATE(name, entry_, type, field, HASH, CMP) \ argument
161 return HASH(data, table->entries_size); \
/freebsd/usr.bin/ident/tests/
H A Dtest.in14 $Qux:: frobby zow#$ (OK -- HASH BEFORE $)' '

123