Home
last modified time | relevance | path

Searched refs:strtmp (Results 1 – 2 of 2) sorted by relevance

/dragonfly/crypto/libressl/crypto/asn1/
H A Dtasn_enc.c564 ASN1_STRING *strtmp; in asn1_ex_i2c() local
588 strtmp = (ASN1_STRING *)*pval; in asn1_ex_i2c()
589 utype = strtmp->type; in asn1_ex_i2c()
661 strtmp = (ASN1_STRING *)*pval; in asn1_ex_i2c()
664 (strtmp->flags & ASN1_STRING_FLAG_NDEF)) { in asn1_ex_i2c()
666 strtmp->data = cout; in asn1_ex_i2c()
667 strtmp->length = 0; in asn1_ex_i2c()
672 cont = strtmp->data; in asn1_ex_i2c()
673 len = strtmp->length; in asn1_ex_i2c()
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_utl.c190 char *strtmp = NULL; in i2s_ASN1_ENUMERATED() local
195 (strtmp = bn_to_string(bntmp)) == NULL) in i2s_ASN1_ENUMERATED()
198 return strtmp; in i2s_ASN1_ENUMERATED()
205 char *strtmp = NULL; in i2s_ASN1_INTEGER() local
210 (strtmp = bn_to_string(bntmp)) == NULL) in i2s_ASN1_INTEGER()
213 return strtmp; in i2s_ASN1_INTEGER()
270 char *strtmp; in X509V3_add_value_int() local
275 if (!(strtmp = i2s_ASN1_INTEGER(NULL, aint))) in X509V3_add_value_int()
277 ret = X509V3_add_value(name, strtmp, extlist); in X509V3_add_value_int()
278 free(strtmp); in X509V3_add_value_int()