Home
last modified time | relevance | path

Searched refs:asn1_string (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/x509/
Dasn1_gen.c508 if (!(ret->value.asn1_string = ASN1_STRING_type_new(utype))) in asn1_multi()
513 ret->value.asn1_string->data = der; in asn1_multi()
514 ret->value.asn1_string->length = derlen; in asn1_multi()
729 if (!(atmp->value.asn1_string = ASN1_STRING_new())) in asn1_str2type()
734 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) in asn1_str2type()
739 atmp->value.asn1_string->type = utype; in asn1_str2type()
740 if (!ASN1_TIME_check(atmp->value.asn1_string)) in asn1_str2type()
769 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type()
783 if (!(atmp->value.asn1_string = ASN1_STRING_new())) in asn1_str2type()
798 atmp->value.asn1_string->data = rdata; in asn1_str2type()
[all …]
Dt_req.c174 ASN1_BIT_STRING *bs = at->value.asn1_string; in X509_REQ_print_ex()
/external/curl/lib/vtls/
Dopenssl.c1022 const char *asn1_string; in asn1_output() local
1028 asn1_string=(const char *)tm->data; in asn1_output()
1032 if(asn1_string[i-1] == 'Z') in asn1_output()
1035 if((asn1_string[i] > '9') || (asn1_string[i] < '0')) in asn1_output()
1038 year= (asn1_string[0]-'0')*10+(asn1_string[1]-'0'); in asn1_output()
1042 month= (asn1_string[2]-'0')*10+(asn1_string[3]-'0'); in asn1_output()
1046 day= (asn1_string[4]-'0')*10+(asn1_string[5]-'0'); in asn1_output()
1047 hour= (asn1_string[6]-'0')*10+(asn1_string[7]-'0'); in asn1_output()
1048 minute= (asn1_string[8]-'0')*10+(asn1_string[9]-'0'); in asn1_output()
1050 if((asn1_string[10] >= '0') && (asn1_string[10] <= '9') && in asn1_output()
[all …]
/external/boringssl/src/include/openssl/
Dasn1.h481 ASN1_STRING * asn1_string; member