Home
last modified time | relevance | path

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

/freebsd-10-stable/crypto/openssl/crypto/asn1/
Dtasn_enc.c553 ASN1_STRING *strtmp; in asn1_ex_i2c() local
573 strtmp = (ASN1_STRING *)*pval; in asn1_ex_i2c()
574 utype = strtmp->type; in asn1_ex_i2c()
647 strtmp = (ASN1_STRING *)*pval; in asn1_ex_i2c()
650 && (strtmp->flags & ASN1_STRING_FLAG_NDEF)) { in asn1_ex_i2c()
652 strtmp->data = cout; in asn1_ex_i2c()
653 strtmp->length = 0; in asn1_ex_i2c()
658 cont = strtmp->data; in asn1_ex_i2c()
659 len = strtmp->length; in asn1_ex_i2c()
/freebsd-10-stable/crypto/openssl/crypto/x509v3/
Dv3_utl.c152 char *strtmp = NULL; in i2s_ASN1_ENUMERATED() local
156 !(strtmp = BN_bn2dec(bntmp))) in i2s_ASN1_ENUMERATED()
159 return strtmp; in i2s_ASN1_ENUMERATED()
165 char *strtmp = NULL; in i2s_ASN1_INTEGER() local
169 !(strtmp = BN_bn2dec(bntmp))) in i2s_ASN1_INTEGER()
172 return strtmp; in i2s_ASN1_INTEGER()
227 char *strtmp; in X509V3_add_value_int() local
231 if (!(strtmp = i2s_ASN1_INTEGER(NULL, aint))) in X509V3_add_value_int()
233 ret = X509V3_add_value(name, strtmp, extlist); in X509V3_add_value_int()
234 OPENSSL_free(strtmp); in X509V3_add_value_int()