Lines Matching defs:data_body
400 ASN1_OCTET_STRING *data_body = NULL;
439 * data_body is NULL if that structure has no (=detached) content
442 data_body = PKCS7_get_octet_string(p7->d.sign->contents);
443 if (!PKCS7_is_detached(p7) && data_body == NULL) {
452 /* data_body is NULL if the optional EncryptedContent is missing. */
453 data_body = p7->d.signed_and_enveloped->enc_data->enc_data;
475 /* data_body is NULL if the optional EncryptedContent is missing. */
476 data_body = p7->d.enveloped->enc_data->enc_data;
499 if (data_body == NULL && in_bio == NULL) {
650 if (data_body->length > 0)
651 bio = BIO_new_mem_buf(data_body->data, data_body->length);