Lines Matching refs:sig_len
109 ctx->sig_len = ddir->certs.size; in pefile_parse_binary()
111 ctx->sig_len, ctx->sig_offset, in pefile_parse_binary()
112 ctx->sig_len, pebuf + ctx->sig_offset); in pefile_parse_binary()
133 if (ctx->sig_len < sizeof(wrapper)) { in pefile_strip_sig_wrapper()
145 if (round_up(wrapper.length, 8) != ctx->sig_len) { in pefile_strip_sig_wrapper()
163 ctx->sig_len = wrapper.length; in pefile_strip_sig_wrapper()
165 ctx->sig_len -= sizeof(wrapper); in pefile_strip_sig_wrapper()
166 if (ctx->sig_len < 4) { in pefile_strip_sig_wrapper()
195 if (len <= ctx->sig_len) { in pefile_strip_sig_wrapper()
197 ctx->sig_len = len; in pefile_strip_sig_wrapper()
442 pkcs7 = pkcs7_parse_message(pebuf + ctx.sig_offset, ctx.sig_len); in verify_pefile_signature()