Lines Matching refs:asize
953 uint32_t asize; in sb_build_command_load() local
975 asize = roundup(dctx->size, SB_BLOCK_SIZE); in sb_build_command_load()
976 payload = calloc(1, asize); in sb_build_command_load()
985 cctx->length = asize; in sb_build_command_load()
1813 unsigned long size, asize; in sb_verify_command() local
1843 asize = roundup(cctx->length, SB_BLOCK_SIZE); in sb_verify_command()
1844 cctx->data = malloc(asize); in sb_verify_command()
1848 size = fread(cctx->data, 1, asize, fp); in sb_verify_command()
1849 if (size != asize) { in sb_verify_command()
1857 EVP_DigestUpdate(ictx->md_ctx, cctx->data, asize); in sb_verify_command()
1858 sb_aes_crypt(ictx, cctx->data, cctx->data, asize); in sb_verify_command()
1862 asize)) { in sb_verify_command()