Lines Matching refs:vlen

157 	     const void *value, size_t vlen)  in x509_note_OID()  argument
161 ctx->last_oid = look_up_OID(value, vlen); in x509_note_OID()
164 sprint_oid(value, vlen, buffer, sizeof(buffer)); in x509_note_OID()
177 const void *value, size_t vlen) in x509_note_tbs_certificate() argument
182 hdrlen, tag, (unsigned long)value - ctx->data, vlen); in x509_note_tbs_certificate()
185 ctx->cert->tbs_size = vlen + hdrlen; in x509_note_tbs_certificate()
194 const void *value, size_t vlen) in x509_note_pkey_algo() argument
265 const void *value, size_t vlen) in x509_note_signature() argument
269 pr_debug("Signature type: %u size %zu\n", ctx->last_oid, vlen); in x509_note_signature()
281 if (vlen < 1 || *(const u8 *)value != 0) in x509_note_signature()
285 vlen--; in x509_note_signature()
289 ctx->cert->raw_sig_size = vlen; in x509_note_signature()
298 const void *value, size_t vlen) in x509_note_serial() argument
302 ctx->cert->raw_serial_size = vlen; in x509_note_serial()
311 const void *value, size_t vlen) in x509_extract_name_segment() argument
317 ctx->cn_size = vlen; in x509_extract_name_segment()
321 ctx->o_size = vlen; in x509_extract_name_segment()
325 ctx->email_size = vlen; in x509_extract_name_segment()
340 char **_name, size_t vlen) in x509_fabricate_name() argument
415 const void *value, size_t vlen) in x509_note_issuer() argument
419 ctx->cert->raw_issuer_size = vlen; in x509_note_issuer()
420 return x509_fabricate_name(ctx, hdrlen, tag, &ctx->cert->issuer, vlen); in x509_note_issuer()
425 const void *value, size_t vlen) in x509_note_subject() argument
429 ctx->cert->raw_subject_size = vlen; in x509_note_subject()
430 return x509_fabricate_name(ctx, hdrlen, tag, &ctx->cert->subject, vlen); in x509_note_subject()
438 const void *value, size_t vlen) in x509_note_params() argument
450 ctx->params_size = vlen + hdrlen; in x509_note_params()
459 const void *value, size_t vlen) in x509_extract_key_data() argument
480 if (vlen < 1 || *(const u8 *)value != 0) in x509_extract_key_data()
483 ctx->key_size = vlen - 1; in x509_extract_key_data()
495 const void *value, size_t vlen) in x509_process_extension() argument
505 if (ctx->cert->skid || vlen < 3) in x509_process_extension()
507 if (v[0] != ASN1_OTS || v[1] != vlen - 2) in x509_process_extension()
510 vlen -= 2; in x509_process_extension()
512 ctx->cert->raw_skid_size = vlen; in x509_process_extension()
514 kid = asymmetric_key_generate_id(v, vlen, "", 0); in x509_process_extension()
525 ctx->raw_akid_size = vlen; in x509_process_extension()
552 const unsigned char *value, size_t vlen) in x509_decode_time() argument
564 if (vlen != 13) in x509_decode_time()
573 if (vlen != 15) in x509_decode_time()
618 tag, (int)vlen, value); in x509_decode_time()
622 tag, (int)vlen, value); in x509_decode_time()
629 const void *value, size_t vlen) in x509_note_not_before() argument
632 return x509_decode_time(&ctx->cert->valid_from, hdrlen, tag, value, vlen); in x509_note_not_before()
637 const void *value, size_t vlen) in x509_note_not_after() argument
640 return x509_decode_time(&ctx->cert->valid_to, hdrlen, tag, value, vlen); in x509_note_not_after()
648 const void *value, size_t vlen) in x509_akid_note_kid() argument
653 pr_debug("AKID: keyid: %*phN\n", (int)vlen, value); in x509_akid_note_kid()
658 kid = asymmetric_key_generate_id(value, vlen, "", 0); in x509_akid_note_kid()
671 const void *value, size_t vlen) in x509_akid_note_name() argument
675 pr_debug("AKID: name: %*phN\n", (int)vlen, value); in x509_akid_note_name()
678 ctx->akid_raw_issuer_size = vlen; in x509_akid_note_name()
687 const void *value, size_t vlen) in x509_akid_note_serial() argument
692 pr_debug("AKID: serial: %*phN\n", (int)vlen, value); in x509_akid_note_serial()
698 vlen, in x509_akid_note_serial()