HomeSort by: relevance | last modified time | path
    Searched defs:hashed (Results 1 - 13 of 13) sorted by relevancy

  /src/crypto/external/bsd/netpgp/dist/src/lib/
create.c 293 uint8_t *hashed; local
379 if ((hashed = calloc(1, hashsize)) == NULL) {
404 hash.finish(&hash, hashed);
411 hashed, (unsigned)size);
1127 \param hashed Hash for MDC
1133 pgp_write_mdc(pgp_output_t *output, const uint8_t *hashed)
1138 pgp_write(output, hashed, PGP_SHA1_HASH_SIZE);
ssh2pgp.c 352 uint8_t hashed[PGP_SHA1_HASH_SIZE]; local
406 hash.finish(&hash, hashed);
413 hashed, (unsigned)size);
writer.c 1145 uint8_t hashed[PGP_SHA1_HASH_SIZE]; local
1174 pgp_calc_mdc_hash(preamble, preamblesize, data, len, hashed);
1175 pgp_write_mdc(mdcoutput, hashed);
1301 uint8_t *hashed; member in struct:__anon1067
1331 (*sum->hash.finish)(&sum->hash, sum->hashed);
1364 if ((sum->hashed = seckey->checkhash) == NULL) {
1365 sum->hashed = seckey->checkhash = calloc(1, hashsize);
1658 uint8_t hashed[PGP_SHA1_HASH_SIZE]; local
1672 se_ip->hash.finish(&se_ip->hash, hashed);
1675 pgp_write_mdc(mdcoutput, hashed);
    [all...]
reader.c 1599 uint8_t hashed[PGP_SHA1_HASH_SIZE]; local
1667 (unsigned)sz_plaintext, hashed);
1669 if (memcmp(mdc_hash, hashed, PGP_SHA1_HASH_SIZE) != 0) {
2337 \brief Push hashed data reader on stack
2352 \brief Pop hashed data reader from stack
  /src/sys/netinet/
tcp_vtw.h 216 uint32_t hashed : 1; /* reachable via FATP */ member in struct:vtw_common
  /src/crypto/external/bsd/openssh/dist/
hostfile.c 767 int hashed = *names == HASH_DELIM, ret; local
772 *was_hashed = hashed;
773 if (hashed) {
792 int hashed; local
850 &hashed)) == -1) {
858 (hashed ? HKF_MATCH_HOST_HASHED : 0);
863 &hashed)) == -1) {
872 (hashed ? HKF_MATCH_IP_HASHED : 0);
ssh-keyscan.c 289 char *hostport = NULL, *hashed = NULL; local
302 if (hash_hosts && (hashed = host_hash(hostport, NULL, 0)) == NULL)
304 known_host = hash_hosts ? hashed : hostport;
309 free(hashed);
clientloop.c 2209 int hashed; local
2215 hashed = l->match & (HKF_MATCH_HOST_HASHED|HKF_MATCH_IP_HASHED);
2221 hashed ? "[HASHED]" : l->hosts);
ssh-keygen.c 1120 char *hashed, *cp, *hosts, *ohosts; local
1128 * Don't hash hosts already hashed, with wildcard
1147 if ((hashed = host_hash(cp, NULL, 0)) == NULL)
1149 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
1150 free(hashed);
  /src/external/bsd/zstd/dist/lib/compress/
zstd_ldm.c 287 size_t hashed; local
291 hashed = ZSTD_ldm_gear_feed(&hashState, ip, iend - ip, splits, &numSplits);
306 ip += hashed;
367 size_t hashed; local
371 hashed = ZSTD_ldm_gear_feed(&hashState, ip, ilimit - ip,
477 /* If we find a match that ends after the data that we've hashed
485 if (anchor > ip + hashed) {
487 /* Continue the outer loop at anchor (ip + hashed == anchor). */
488 ip = anchor - hashed;
493 ip += hashed;
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
dictionary.c 172 struct dictionary_hashed hashed; member in union:dictionary::__anon17823
187 #define DICT_HASHED_NBUCKETS(d) (d)->data.hashed.nbuckets
188 #define DICT_HASHED_BUCKETS(d) (d)->data.hashed.buckets
218 hashed dictionaries, the bucket of the last symbol returned. */
220 /* For hashed dictionaries, this points to the last symbol returned;
347 /* Create a hashed dictionary of a given language. */
374 /* Create an expandable hashed dictionary of a given language. */
  /src/external/gpl3/gdb.old/dist/gdb/
dictionary.c 172 struct dictionary_hashed hashed; member in union:dictionary::__anon20562
187 #define DICT_HASHED_NBUCKETS(d) (d)->data.hashed.nbuckets
188 #define DICT_HASHED_BUCKETS(d) (d)->data.hashed.buckets
218 hashed dictionaries, the bucket of the last symbol returned. */
220 /* For hashed dictionaries, this points to the last symbol returned;
347 /* Create a hashed dictionary of a given language. */
374 /* Create an expandable hashed dictionary of a given language. */
  /src/crypto/external/apache2/openssl/dist/crypto/ml_kem/
ml_kem.c 1671 * domain separation. These are concatenated and hashed to produce a pair of
1684 uint8_t hashed[2 * ML_KEM_RANDOM_BYTES]; local
1685 const uint8_t *const sigma = hashed + ML_KEM_RANDOM_BYTES;
1699 if (!hash_g(hashed, augmented_seed, sizeof(augmented_seed), mdctx, key))
1701 memcpy(key->rho, hashed, ML_KEM_RANDOM_BYTES);

Completed in 49 milliseconds