Home | History | Annotate | Download | only in pkcs7

Lines Matching defs:in

5  * copyright notice and this permission notice appear in all copies.
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
37 * input. If the input is in BER format, then |*der_bytes| will be set to a
45 CBS in, content_info, content_type, wrapped_signed_data, signed_data;
48 /* The input may be in BER format. */
54 CBS_init(&in, *der_bytes, der_len);
56 CBS_init(&in, CBS_data(cbs), CBS_len(cbs));
60 if (!CBS_get_asn1(&in, &content_info, CBS_ASN1_SEQUENCE) ||