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

  /src/external/bsd/pkg_install/dist/lib/
pkg_signature.c 222 parse_hash_file(const char *hash_file, char **pkgname,
234 if (strncmp(hash_file, block1, strlen(block1)) != 0)
236 hash_file += strlen(block1);
238 len = strcspn(hash_file, "\n");
240 memcpy(*pkgname, hash_file, len);
246 hash_file += len + 1;
248 if (strncmp(hash_file, block2, strlen(block2)) != 0)
250 hash_file += strlen(block2);
253 if (!isdigit((unsigned char)*hash_file))
255 state->sign_block_len = strtoul(hash_file, &next, 10)
323 char *hash_file, *signature_file; local
529 char *hash_file, *signature_file, *tmp, *pkgname, hash[SHA512_DIGEST_STRING_LENGTH]; local
622 char *hash_file, *signature_file, *tmp, *pkgname, hash[SHA512_DIGEST_STRING_LENGTH]; local
    [all...]
  /src/crypto/external/bsd/openssh/dist/
sshsig.c 508 hash_file(int fd, const char *hashalg, struct sshbuf **bp) function
590 if ((r = hash_file(fd, hashalg, &b)) != 0) {
591 error_fr(r, "hash_file");
620 if ((r = hash_file(fd, hashalg, &b)) != 0) {
621 error_fr(r, "hash_file");

Completed in 40 milliseconds