Home
last modified time | relevance | path

Searched refs:hashbytes (Results 1 – 4 of 4) sorted by relevance

/src/crypto/krb5/src/kdc/
H A Dkdc_audit.c149 uint8_t hashbytes[K5_SHA256_HASHLEN]; in kau_make_tkt_id() local
157 ret = k5_sha256(&ticket->enc_part.ciphertext, 1, hashbytes); in kau_make_tkt_id()
161 hash = k5alloc(sizeof(hashbytes) * 2 + 1, &ret); in kau_make_tkt_id()
165 for (i = 0, ptr = hash; i < sizeof(hashbytes); i++, ptr += 2) in kau_make_tkt_id()
166 snprintf(ptr, 3, "%02X", hashbytes[i]); in kau_make_tkt_id()
/src/crypto/heimdal/appl/ftp/ftp/
H A Dftp.c591 int hashbytes = HASHBYTES; in copy_stream() local
651 while (hash && bytes > hashbytes) { in copy_stream()
653 hashbytes += HASHBYTES; in copy_stream()
677 long bytes = 0, hashbytes = HASHBYTES; in sendrequest() local
820 while (hash && (bytes >= hashbytes)) { in sendrequest()
823 hashbytes += HASHBYTES; in sendrequest()
835 if (bytes < hashbytes) in sendrequest()
906 long bytes = 0, hashbytes = HASHBYTES; in recvrequest() local
1051 while (bytes >= hashbytes) { in recvrequest()
1053 hashbytes += HASHBYTES; in recvrequest()
[all …]
/src/contrib/tnftp/src/
H A Dftp.c669 off_t volatile hashbytes; in sendrequest() local
676 hashbytes = mark; in sendrequest()
804 while (hash_interval && bytes >= hashbytes) { in sendrequest()
807 hashbytes += mark; in sendrequest()
824 if (bytes < hashbytes) in sendrequest()
903 off_t volatile hashbytes; in recvrequest() local
913 hashbytes = mark; in recvrequest()
1089 while (hash_interval && bytes >= hashbytes) { in recvrequest()
1092 hashbytes += mark; in recvrequest()
1113 if (bytes < hashbytes) in recvrequest()
H A Dfetch.c505 off_t hashbytes, rangestart, rangeend, entitylen; in fetch_url() local
1160 hashbytes = mark; in fetch_url()
1237 while (bytes >= hashbytes) { in fetch_url()
1239 hashbytes += mark; in fetch_url()