Lines Matching refs:B

17 in an B<ASN1_TYPE> structure.
22 file whereas I<cnf> is obtained from an B<X509V3_CTX> structure,
47 Unless otherwise specified only the B<ASCII> format is permissible.
51 =item B<BOOLEAN>, B<BOOL>
54 should be B<TRUE> or B<FALSE>. Additionally B<TRUE>, B<true>, B<Y>,
55 B<y>, B<YES>, B<yes>, B<FALSE>, B<false>, B<N>, B<n>, B<NO> and B<no>
58 =item B<NULL>
60 Encode the B<NULL> type, the I<value> string must not be present.
62 =item B<INTEGER>, B<INT>
64 Encodes an ASN1 B<INTEGER> type. The I<value> string represents
66 is normally interpreted as a decimal value unless the prefix B<0x>
69 =item B<ENUMERATED>, B<ENUM>
71 Encodes the ASN1 B<ENUMERATED> type, it is otherwise identical to
72 B<INTEGER>.
74 =item B<OBJECT>, B<OID>
76 Encodes an ASN1 B<OBJECT IDENTIFIER>, the I<value> string can be
79 =item B<UTCTIME>, B<UTC>
81 Encodes an ASN1 B<UTCTime> structure, the value should be in
82 the format B<YYMMDDHHMMSSZ>.
84 =item B<GENERALIZEDTIME>, B<GENTIME>
86 Encodes an ASN1 B<GeneralizedTime> structure, the value should be in
87 the format B<YYYYMMDDHHMMSSZ>.
89 =item B<OCTETSTRING>, B<OCT>
91 Encodes an ASN1 B<OCTET STRING>. I<value> represents the contents
92 of this structure, the format strings B<ASCII> and B<HEX> can be
95 =item B<BITSTRING>, B<BITSTR>
97 Encodes an ASN1 B<BIT STRING>. I<value> represents the contents
98 of this structure, the format strings B<ASCII>, B<HEX> and B<BITLIST>
101 If the format is anything other than B<BITLIST> the number of unused
104 =item B<UNIVERSALSTRING>, B<UNIV>, B<IA5>, B<IA5STRING>, B<UTF8>,
105 B<UTF8String>, B<BMP>, B<BMPSTRING>, B<VISIBLESTRING>,
106 B<VISIBLE>, B<PRINTABLESTRING>, B<PRINTABLE>, B<T61>,
107 B<T61STRING>, B<TELETEXSTRING>, B<GeneralString>, B<NUMERICSTRING>,
108 B<NUMERIC>
111 contents of this structure. The format can be B<ASCII> or B<UTF8>.
113 =item B<SEQUENCE>, B<SEQ>, B<SET>
115 Formats the result as an ASN1 B<SEQUENCE> or B<SET> type. I<value>
132 =item B<EXPLICIT>, B<EXP>
138 By following the number with B<U>, B<A>, B<P> or B<C> UNIVERSAL,
142 =item B<IMPLICIT>, B<IMP>
144 This is the same as B<EXPLICIT> except IMPLICIT tagging is used
147 =item B<OCTWRAP>, B<SEQWRAP>, B<SETWRAP>, B<BITWRAP>
153 =item B<FORMAT>
156 by a colon and one of the strings B<ASCII>, B<UTF8>, B<HEX> or B<BITLIST>.
158 If no format specifier is included then B<ASCII> is used. If B<UTF8> is
159 specified then the value string must be a valid B<UTF8> string. For B<HEX> the
160 output must be a set of hex digits. B<BITLIST> (which is only valid for a BIT
169 data as an B<ASN1_TYPE> structure or NULL if an error occurred.