Lines Matching refs:asize
952 uint32_t asize; in sb_build_command_load() local
974 asize = roundup(dctx->size, SB_BLOCK_SIZE); in sb_build_command_load()
975 payload = calloc(1, asize); in sb_build_command_load()
984 cctx->length = asize; in sb_build_command_load()
1812 unsigned long size, asize; in sb_verify_command() local
1842 asize = roundup(cctx->length, SB_BLOCK_SIZE); in sb_verify_command()
1843 cctx->data = malloc(asize); in sb_verify_command()
1847 size = fread(cctx->data, 1, asize, fp); in sb_verify_command()
1848 if (size != asize) { in sb_verify_command()
1856 EVP_DigestUpdate(ictx->md_ctx, cctx->data, asize); in sb_verify_command()
1857 sb_aes_crypt(ictx, cctx->data, cctx->data, asize); in sb_verify_command()
1861 asize)) { in sb_verify_command()