Searched refs:asn1_bool (Results 1 – 3 of 3) sorted by relevance
| /mirbsd/src/lib/libssl/src/crypto/x509v3/ |
| D | v3_utl.c | 122 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()
|
| D | x509v3.h | 496 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/ |
| D | openssl.txt | 691 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.
|