Home
last modified time | relevance | path

Searched refs:hashed (Results 1 – 25 of 125) sorted by relevance

12345

/netbsd-src/crypto/external/bsd/netpgp/dist/src/libverify/
H A Dpgpsum.c110 calcsum(uint8_t *out, size_t size, uint8_t *mem, size_t cc, const uint8_t *hashed, size_t hashsize,… in calcsum() argument
120 hashalg = hashed[3]; in calcsum()
121 memcpy(&len16, &hashed[4], sizeof(len16)); in calcsum()
137 if (hashed) { in calcsum()
138 digest_update(&hash, hashed, hashsize); in calcsum()
146 pgpv_digest_file(uint8_t *data, size_t size, const char *name, const uint8_t *hashed, size_t hashsi… in pgpv_digest_file() argument
154 if (hashed == NULL || data == NULL || name == NULL) { in pgpv_digest_file()
174 ret = calcsum(data, size, mem, cc, hashed, hashsize, doarmor); in pgpv_digest_file()
185 pgpv_digest_memory(uint8_t *data, size_t size, void *mem, size_t cc, const uint8_t *hashed, size_t … in pgpv_digest_memory() argument
187 if (hashed == NULL || data == NULL || mem == NULL) { in pgpv_digest_memory()
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Dpgpsum.c126 calcsum(uint8_t *out, size_t size, uint8_t *mem, size_t cc, const uint8_t *hashed, size_t hashsize,… in calcsum() argument
136 hashalg = hashed[3]; in calcsum()
137 memcpy(&len16, &hashed[4], sizeof(len16)); in calcsum()
153 if (hashed) { in calcsum()
154 digest_update(&hash, hashed, hashsize); in calcsum()
204 pgpv_digest_file(uint8_t *data, size_t size, const char *name, const uint8_t *hashed, size_t hashsi… in pgpv_digest_file() argument
212 if (hashed == NULL || data == NULL || name == NULL) { in pgpv_digest_file()
232 ret = calcsum(data, size, mem, cc, hashed, hashsize, doarmor); in pgpv_digest_file()
243 pgpv_digest_memory(uint8_t *data, size_t size, void *mem, size_t cc, const uint8_t *hashed, size_t … in pgpv_digest_memory() argument
245 if (hashed == NULL || data == NULL || mem == NULL) { in pgpv_digest_memory()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/digest/
H A Dmurmurhash.d53 ubyte[4] hashed = digest!(MurmurHash3!32)([1, 2, 3, 4]);
54 assert(hashed == [0, 173, 69, 68]);
71 auto hashed = hasher.finish();
72 assert(hashed == [181, 151, 88, 252]);
96 auto hashed = hasher.getBytes();
97 assert(hashed == [188, 165, 108, 2]);
665 ubyte[4] hashed = digest!(MurmurHash3!32)([1, 2, 3, 4]);
666 assert(hashed == [0, 173, 69, 68]);
684 auto hashed = hasher.finish();
685 assert(hashed == [181, 151, 88, 252]);
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
H A Dmurmurhash.d53 ubyte[4] hashed = digest!(MurmurHash3!32)([1, 2, 3, 4]);
54 assert(hashed == [0, 173, 69, 68]);
71 auto hashed = hasher.finish();
72 assert(hashed == [181, 151, 88, 252]);
96 auto hashed = hasher.getBytes();
97 assert(hashed == [188, 165, 108, 2]);
665 ubyte[4] hashed = digest!(MurmurHash3!32)([1, 2, 3, 4]);
666 assert(hashed == [0, 173, 69, 68]);
684 auto hashed = hasher.finish();
685 assert(hashed == [181, 151, 88, 252]);
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dhostfile.c738 int hashed = *names == HASH_DELIM, ret; in match_maybe_hashed() local
743 *was_hashed = hashed; in match_maybe_hashed()
744 if (hashed) { in match_maybe_hashed()
763 int hashed; in hostkeys_foreach_file() local
815 &hashed)) == -1) { in hostkeys_foreach_file()
823 (hashed ? HKF_MATCH_HOST_HASHED : 0); in hostkeys_foreach_file()
828 &hashed)) == -1) { in hostkeys_foreach_file()
837 (hashed ? HKF_MATCH_IP_HASHED : 0); in hostkeys_foreach_file()
/netbsd-src/crypto/external/bsd/netpgp/dist/ref/
H A Ddraft-ietf-openpgp-rfc2440bis-12-comments.txt32 "The data being signed is hashed, and then the signature type and
33 creation time from the signature packet are hashed (5 additional
39 creation time from the signature packet (5 additional octets) is hashed."
H A Drfc2440.txt495 As the data is hashed, it is given independently to each hash
498 hashed, the output data from the multiple hashes is concatenated,
514 data -- that gets hashed along with the passphrase string, to help
528 with the passphrase and the resulting value is hashed repeatedly.
547 times. The total number of octets to be hashed is specified in the
549 value is an octet count of how many octets will be hashed, not an
554 Then the salt, followed by the passphrase data is repeatedly hashed
556 hashed. The one exception is that if the octet count is less than
558 will be hashed even though that is greater than the octet count.
1054 - One-octet length of following hashed material. MUST be 5.
[all …]
/netbsd-src/crypto/external/bsd/netpgp/dist/src/lib/
H A Dwriter.c1145 uint8_t hashed[PGP_SHA1_HASH_SIZE]; in pgp_write_se_ip_pktset() local
1174 pgp_calc_mdc_hash(preamble, preamblesize, data, len, hashed); in pgp_write_se_ip_pktset()
1175 pgp_write_mdc(mdcoutput, hashed); in pgp_write_se_ip_pktset()
1301 uint8_t *hashed; member
1331 (*sum->hash.finish)(&sum->hash, sum->hashed); in skey_checksum_finaliser()
1364 if ((sum->hashed = seckey->checkhash) == NULL) { in pgp_push_checksum_writer()
1365 sum->hashed = seckey->checkhash = calloc(1, hashsize); in pgp_push_checksum_writer()
1658 uint8_t hashed[PGP_SHA1_HASH_SIZE]; in stream_write_se_ip_last() local
1672 se_ip->hash.finish(&se_ip->hash, hashed); in stream_write_se_ip_last()
1675 pgp_write_mdc(mdcoutput, hashed); in stream_write_se_ip_last()
H A Dcreate.c293 uint8_t *hashed; in write_seckey_body() local
379 if ((hashed = calloc(1, hashsize)) == NULL) { in write_seckey_body()
404 hash.finish(&hash, hashed); in write_seckey_body()
411 hashed, (unsigned)size); in write_seckey_body()
1133 pgp_write_mdc(pgp_output_t *output, const uint8_t *hashed) in pgp_write_mdc() argument
1138 pgp_write(output, hashed, PGP_SHA1_HASH_SIZE); in pgp_write_mdc()
H A Dssh2pgp.c352 uint8_t hashed[PGP_SHA1_HASH_SIZE]; in pgp_ssh2seckey() local
406 hash.finish(&hash, hashed); in pgp_ssh2seckey()
413 hashed, (unsigned)size); in pgp_ssh2seckey()
/netbsd-src/sys/netinet/
H A Dtcp_vtw.c414 return vtw->hashed && vtw->expire.tv_sec;
523 if (!vtw->hashed) { in vtw_unhash()
670 vtw->hashed = 0;
680 if (vtw->hashed) { in vtw_del()
712 KASSERT(!vtw->hashed); in vtw_inshash_v4()
738 vtw->hashed = 1;
751 KASSERT(!vtw->hashed); in vtw_inshash_v6()
769 vtw->hashed = 1;
849 KASSERT(vtw->hashed); in vtw_lookup_hash_v4()
995 KASSERT(vtw->hashed); in vtw_lookup_hash_v6()
[all...]
H A Dtcp_vtw.h216 uint32_t hashed : 1; /* reachable via FATP */ member
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man7/
H A DSM2.pod15 to form the message prefix which is hashed before the real message is hashed.
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libuniname/
H A Dgen-uninames89 :hashed (make-hash-table :test #'equal)
195 (gethash word (word-list-hashed (aref words-by-length (length word))))
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/
H A DEVP_PKEY-SM2.pod16 to form the message prefix which is hashed before the real message is hashed.
/netbsd-src/external/bsd/unbound/dist/testdata/
H A Dtest_nsec3_hash.15 ; query name is hashed.
6 ; answer AAAA record hash the correct hashed answer name.
/netbsd-src/usr.bin/make/unit-tests/
H A Dvarmod-hash.mk69 @echo ${12345:L:hashed} # modifier name too long
/netbsd-src/external/ibm-public/postfix/dist/src/smtpstone/
H A Dhashed-deferred17 hashed deferred queue, depth=1 (16 directories)
H A Dhashed-incoming27 hashed incoming queue, depth=1 (16 subdirs)
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Davm17 # on 2nd line hashed password
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DRIPEMD160_Init.pod35 be hashed (B<len> bytes at B<data>).
H A DMDC2_Init.pod36 be hashed (B<len> bytes at B<data>).
/netbsd-src/external/mpl/bind/dist/bin/tools/
H A Dnsec3hash.rst65 This is the domain name to be hashed.
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Dsecurity.sdf176 (or hashed) form. This allows a wide range of password-based
194 on the value, so a hashed password using the Salted SHA1 ({{EX:SSHA}})
199 The advantage of hashed passwords is that an attacker which
206 The disadvantages of hashed storage is that they are non-standard, may
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DRIPEMD160_Init.pod43 be hashed (B<len> bytes at B<data>).

12345