HomeSort by: relevance | last modified time | path
    Searched refs:origsiz (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/libfido2/dist/src/
compress.c 15 rfc1950_inflate(fido_blob_t *out, const fido_blob_t *in, size_t origsiz)
23 origsiz > ULONG_MAX || (olen = (u_long)origsiz) > BOUND) {
24 fido_log_debug("%s: in->len=%zu, origsiz=%zu", __func__,
25 in->len, origsiz);
46 rfc1951_inflate(fido_blob_t *out, const fido_blob_t *in, size_t origsiz)
56 origsiz > UINT_MAX || (olen = (u_int)origsiz) > BOUND) {
57 fido_log_debug("%s: in->len=%zu, origsiz=%zu", __func__,
58 in->len, origsiz);
    [all...]
largeblob.c 18 size_t origsiz; member in struct:largeblob
34 blob->origsiz = 0;
75 if (largeblob_aad(aad, blob->origsiz) < 0) {
146 blob->origsiz = body->len;
280 uint64_t origsiz; local
301 (origsiz = cbor_get_int(val)) > SIZE_MAX)
303 blob->origsiz = (size_t)origsiz;
323 fido_blob_is_empty(&blob->nonce) || blob->origsiz == 0) {
345 (argv[2] = cbor_build_uint(blob->origsiz)) == NULL)
    [all...]
  /src/external/bsd/libfido2/dist/tools/
largeblob.c 308 try_decompress(const struct blob *in, uint64_t origsiz, int wbits)
320 if (origsiz > SIZE_MAX || origsiz > UINT_MAX ||
321 (olen = (u_int)origsiz) > BOUND)
351 decompress(const struct blob *plaintext, uint64_t origsiz)
353 if (try_decompress(plaintext, origsiz, MAX_WBITS) == 0) /* rfc1950 */
355 return try_decompress(plaintext, origsiz, -MAX_WBITS); /* rfc1951 */
360 uint64_t origsiz, const fido_cred_t *cred)
396 tmp = htole64(origsiz);
403 if (decompress(&plaintext, origsiz) < 0
493 uint64_t origsiz = 0; local
    [all...]

Completed in 20 milliseconds