HomeSort by relevance Sort by last modified time
    Searched defs:der_bytes (Results 1 - 3 of 3) sorted by null

  /external/boringssl/src/crypto/pkcs7/
pkcs7.c 37 // input. If the input is in BER format, then |*der_bytes| will be set to a
39 // processing |*out| (which will be pointing into |*der_bytes|).
41 // It returns one on success or zero on error. On error, |*der_bytes| is
43 int pkcs7_parse_header(uint8_t **der_bytes, CBS *out, CBS *cbs) {
49 *der_bytes = NULL;
50 if (!CBS_asn1_ber_to_der(cbs, der_bytes, &der_len)) {
53 if (*der_bytes != NULL) {
54 CBS_init(&in, *der_bytes, der_len);
90 OPENSSL_free(*der_bytes);
91 *der_bytes = NULL
98 uint8_t *der_bytes = NULL; local
    [all...]
pkcs7_x509.c 66 uint8_t *der_bytes = NULL; local
70 if (!pkcs7_parse_header(&der_bytes, &signed_data, cbs)) {
120 OPENSSL_free(der_bytes);
  /external/boringssl/src/crypto/pkcs8/
pkcs8_x509.c 241 uint8_t *der_bytes = NULL; local
250 if (!CBS_asn1_ber_to_der(sequence, &der_bytes, &der_len)) {
255 if (der_bytes != NULL) {
256 CBS_init(&in, der_bytes, der_len);
283 OPENSSL_free(der_bytes);
472 uint8_t *der_bytes = NULL; local
481 if (!CBS_asn1_ber_to_der(ber_in, &der_bytes, &der_len)) {
485 if (der_bytes != NULL) {
486 CBS_init(&in, der_bytes, der_len);
606 OPENSSL_free(der_bytes);
    [all...]