Home | History | Annotate | Download | only in pkcs7

Lines Matching refs:cbs

36  * SignedData blob from |cbs| and sets |*out| to point to the rest of the
43 int pkcs7_parse_header(uint8_t **der_bytes, CBS *out, CBS *cbs) {
45 CBS in, content_info, content_type, wrapped_signed_data, signed_data;
50 if (!CBS_asn1_ber_to_der(cbs, der_bytes, &der_len)) {
56 CBS_init(&in, CBS_data(cbs), CBS_len(cbs));
95 int PKCS7_get_raw_certificates(STACK_OF(CRYPTO_BUFFER) *out_certs, CBS *cbs,
97 CBS signed_data, certificates;
102 if (!pkcs7_parse_header(&der_bytes, &signed_data, cbs)) {
114 CBS cert;