OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:der_bytes
(Results
1 - 3
of
3
) sorted by null
/external/boringssl/src/crypto/x509/
pkcs7.c
32
* input. If the input is in BER format, then |*
der_bytes
| will be set to a
34
* processing |*out| (which will be pointing into |*
der_bytes
|).
36
* It returns one on success or zero on error. On error, |*
der_bytes
| is
38
static int pkcs7_parse_header(uint8_t **
der_bytes
, CBS *out, CBS *cbs) {
44
*
der_bytes
= NULL;
45
if (!CBS_asn1_ber_to_der(cbs,
der_bytes
, &der_len)) {
48
if (*
der_bytes
!= NULL) {
49
CBS_init(&in, *
der_bytes
, der_len);
84
if (*
der_bytes
) {
85
OPENSSL_free(*
der_bytes
);
94
uint8_t *
der_bytes
= NULL;
local
154
uint8_t *
der_bytes
= NULL;
local
[
all
...]
pkcs7_test.c
[
all
...]
/external/boringssl/src/crypto/pkcs8/
pkcs8.c
678
uint8_t *
der_bytes
= NULL;
local
695
if (!CBS_asn1_ber_to_der(content_infos, &
der_bytes
, &der_len)) {
700
if (
der_bytes
!= NULL) {
701
CBS_init(&in,
der_bytes
, der_len);
730
OPENSSL_free(
der_bytes
);
903
uint8_t *
der_bytes
= NULL;
local
912
if (!CBS_asn1_ber_to_der(ber_in, &
der_bytes
, &der_len)) {
916
if (
der_bytes
!= NULL) {
917
CBS_init(&in,
der_bytes
, der_len);
1046
OPENSSL_free(
der_bytes
);
[
all
...]
Completed in 1070 milliseconds