Home
last modified time | relevance | path

Searched refs:asn1_bool (Results 1 – 3 of 3) sorted by relevance

/mirbsd/src/lib/libssl/src/crypto/x509v3/
Dv3_utl.c122 int X509V3_add_value_bool(const char *name, int asn1_bool, in X509V3_add_value_bool() argument
125 if(asn1_bool) return X509V3_add_value(name, "TRUE", extlist); in X509V3_add_value_bool()
129 int X509V3_add_value_bool_nf(char *name, int asn1_bool, in X509V3_add_value_bool_nf() argument
132 if(asn1_bool) return X509V3_add_value(name, "TRUE", extlist); in X509V3_add_value_bool_nf()
214 int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool) in X509V3_get_value_bool() argument
221 *asn1_bool = 0xff; in X509V3_get_value_bool()
226 *asn1_bool = 0; in X509V3_get_value_bool()
Dx509v3.h496 int X509V3_add_value_bool_nf(char *name, int asn1_bool,
498 int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool);
515 int X509V3_add_value_bool(const char *name, int asn1_bool,
/mirbsd/src/lib/libssl/src/doc/
Dopenssl.txt691 int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool);
693 This function expects a boolean value in 'value' and sets 'asn1_bool' to
712 int X509V3_add_value_bool(const char *name, int asn1_bool,
715 This adds either "TRUE" or "FALSE" depending on the value of 'asn1_bool'
717 int X509V3_add_value_bool_nf(char *name, int asn1_bool,
720 This is the same as above except it adds nothing if asn1_bool is FALSE.