Home
last modified time | relevance | path

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

/freebsd-13.1/crypto/openssl/crypto/asn1/
H A Dtasn_enc.c511 ASN1_STRING *strtmp; in asn1_ex_i2c() local
531 strtmp = (ASN1_STRING *)*pval; in asn1_ex_i2c()
532 utype = strtmp->type; in asn1_ex_i2c()
605 strtmp = (ASN1_STRING *)*pval; in asn1_ex_i2c()
608 && (strtmp->flags & ASN1_STRING_FLAG_NDEF)) { in asn1_ex_i2c()
610 strtmp->data = cout; in asn1_ex_i2c()
611 strtmp->length = 0; in asn1_ex_i2c()
616 cont = strtmp->data; in asn1_ex_i2c()
617 len = strtmp->length; in asn1_ex_i2c()
/freebsd-13.1/crypto/openssl/crypto/x509v3/
H A Dv3_utl.c170 char *strtmp = NULL; in i2s_ASN1_ENUMERATED() local
175 || (strtmp = bignum_to_string(bntmp)) == NULL) in i2s_ASN1_ENUMERATED()
178 return strtmp; in i2s_ASN1_ENUMERATED()
184 char *strtmp = NULL; in i2s_ASN1_INTEGER() local
189 || (strtmp = bignum_to_string(bntmp)) == NULL) in i2s_ASN1_INTEGER()
192 return strtmp; in i2s_ASN1_INTEGER()
251 char *strtmp; in X509V3_add_value_int() local
256 if ((strtmp = i2s_ASN1_INTEGER(NULL, aint)) == NULL) in X509V3_add_value_int()
258 ret = X509V3_add_value(name, strtmp, extlist); in X509V3_add_value_int()
259 OPENSSL_free(strtmp); in X509V3_add_value_int()