• Home
  • Raw
  • Download

Lines Matching refs:value

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()
166 (unsigned long)value - ctx->data, 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()
184 ctx->cert->tbs = value - hdrlen; in x509_note_tbs_certificate()
194 const void *value, size_t vlen) in x509_note_pkey_algo() argument
256 const void *value, size_t vlen) in x509_note_signature() argument
271 if (vlen < 1 || *(const u8 *)value != 0) in x509_note_signature()
274 value++; in x509_note_signature()
278 ctx->cert->raw_sig = value; in x509_note_signature()
288 const void *value, size_t vlen) in x509_note_serial() argument
291 ctx->cert->raw_serial = value; in x509_note_serial()
301 const void *value, size_t vlen) in x509_extract_name_segment() argument
308 ctx->cn_offset = (unsigned long)value - ctx->data; in x509_extract_name_segment()
312 ctx->o_offset = (unsigned long)value - ctx->data; in x509_extract_name_segment()
316 ctx->email_offset = (unsigned long)value - ctx->data; in x509_extract_name_segment()
405 const void *value, size_t vlen) in x509_note_issuer() argument
408 ctx->cert->raw_issuer = value; in x509_note_issuer()
415 const void *value, size_t vlen) in x509_note_subject() argument
418 ctx->cert->raw_subject = value; in x509_note_subject()
428 const void *value, size_t vlen) in x509_note_params() argument
439 ctx->params = value - hdrlen; in x509_note_params()
449 const void *value, size_t vlen) in x509_extract_key_data() argument
463 if (vlen < 1 || *(const u8 *)value != 0) in x509_extract_key_data()
465 ctx->key = value + 1; in x509_extract_key_data()
478 const void *value, size_t vlen) in x509_process_extension() argument
482 const unsigned char *v = value; in x509_process_extension()
535 const unsigned char *value, size_t vlen) in x509_decode_time() argument
539 const unsigned char *p = value; in x509_decode_time()
601 tag, (int)vlen, value); in x509_decode_time()
605 tag, (int)vlen, value); in x509_decode_time()
612 const void *value, size_t vlen) in x509_note_not_before() argument
615 return x509_decode_time(&ctx->cert->valid_from, hdrlen, tag, value, vlen); in x509_note_not_before()
620 const void *value, size_t vlen) in x509_note_not_after() argument
623 return x509_decode_time(&ctx->cert->valid_to, hdrlen, tag, value, vlen); in x509_note_not_after()
631 const void *value, size_t vlen) in x509_akid_note_kid() argument
636 pr_debug("AKID: keyid: %*phN\n", (int)vlen, value); in x509_akid_note_kid()
641 kid = asymmetric_key_generate_id(value, vlen, "", 0); in x509_akid_note_kid()
654 const void *value, size_t vlen) in x509_akid_note_name() argument
658 pr_debug("AKID: name: %*phN\n", (int)vlen, value); in x509_akid_note_name()
660 ctx->akid_raw_issuer = value; in x509_akid_note_name()
670 const void *value, size_t vlen) in x509_akid_note_serial() argument
675 pr_debug("AKID: serial: %*phN\n", (int)vlen, value); in x509_akid_note_serial()
680 kid = asymmetric_key_generate_id(value, in x509_akid_note_serial()