Lines Matching refs:is
20 These functions output an B<ASN1_STRING> structure. B<ASN1_STRING> is used to
23 ASN1_STRING_print_ex() outputs I<str> to I<out>, the format is determined by
24 the options I<flags>. ASN1_STRING_print_ex_fp() is identical except it outputs
35 ASN1_STRING_print() is a deprecated function which should be avoided; use
38 Although there are a large number of options frequently B<ASN1_STRFLGS_RFC2253> is
41 The complete set of supported options for I<flags> is listed below.
43 Various characters can be escaped. If B<ASN1_STRFLGS_ESC_2253> is set the characters
44 determined by RFC2253 are escaped. If B<ASN1_STRFLGS_ESC_CTRL> is set control
45 characters are escaped. If B<ASN1_STRFLGS_ESC_MSB> is set characters with the
51 If the character being escaped is a 16 bit character then the form "\UXXXX" is used
52 using exactly four characters for the hex representation. If it is 32 bits then
53 "\WXXXXXXXX" is used using eight characters of its hex representation. These forms
54 will only be used if UTF8 conversion is not set (see below).
57 B<ASN1_STRFLGS_ESC_QUOTE> is set then the whole string is instead surrounded by
58 double quote characters: this is arguably more readable than the backslash
62 If B<ASN1_STRFLGS_UTF8_CONVERT> is set then characters are converted to UTF8
66 If B<ASN1_STRFLGS_IGNORE_TYPE> is set then the string type is not interpreted at
67 all: everything is assumed to be one byte per character. This is primarily for
70 If B<ASN1_STRFLGS_SHOW_TYPE> is set then the string type itself is printed out
77 If B<ASN1_STRFLGS_DUMP_ALL> is set then any type is dumped.
80 one byte per character, if B<ASN1_STRFLGS_DUMP_UNKNOWN> is set then they will
83 When a type is dumped normally just the content octets are printed, if
84 B<ASN1_STRFLGS_DUMP_DER> is set then the complete encoding is dumped
87 B<ASN1_STRFLGS_RFC2253> includes all the flags required by RFC2253. It is