| OLD | NEW |
| 1 =pod | 1 =pod |
| 2 | 2 |
| 3 =head1 NAME | 3 =head1 NAME |
| 4 | 4 |
| 5 ASN1_generate_nconf, ASN1_generate_v3 - ASN1 generation functions | 5 ASN1_generate_nconf, ASN1_generate_v3 - ASN1 generation functions |
| 6 | 6 |
| 7 =head1 SYNOPSIS | 7 =head1 SYNOPSIS |
| 8 | 8 |
| 9 #include <openssl/asn1.h> | 9 #include <openssl/asn1.h> |
| 10 | 10 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 Encodes an ASN1 B<BIT STRING>. B<value> represents the contents | 96 Encodes an ASN1 B<BIT STRING>. B<value> represents the contents |
| 97 of this structure, the format strings B<ASCII>, B<HEX> and B<BITLIST> | 97 of this structure, the format strings B<ASCII>, B<HEX> and B<BITLIST> |
| 98 can be used to specify the format of B<value>. | 98 can be used to specify the format of B<value>. |
| 99 | 99 |
| 100 If the format is anything other than B<BITLIST> the number of unused | 100 If the format is anything other than B<BITLIST> the number of unused |
| 101 bits is set to zero. | 101 bits is set to zero. |
| 102 | 102 |
| 103 =item B<UNIVERSALSTRING>, B<UNIV>, B<IA5>, B<IA5STRING>, B<UTF8>, | 103 =item B<UNIVERSALSTRING>, B<UNIV>, B<IA5>, B<IA5STRING>, B<UTF8>, |
| 104 B<UTF8String>, B<BMP>, B<BMPSTRING>, B<VISIBLESTRING>, | 104 B<UTF8String>, B<BMP>, B<BMPSTRING>, B<VISIBLESTRING>, |
| 105 B<VISIBLE>, B<PRINTABLESTRING>, B<PRINTABLE>, B<T61>, | 105 B<VISIBLE>, B<PRINTABLESTRING>, B<PRINTABLE>, B<T61>, |
| 106 B<T61STRING>, B<TELETEXSTRING>, B<GeneralString> | 106 B<T61STRING>, B<TELETEXSTRING>, B<GeneralString>, B<NUMERICSTRING>, |
| 107 B<NUMERIC> |
| 107 | 108 |
| 108 These encode the corresponding string types. B<value> represents the | 109 These encode the corresponding string types. B<value> represents the |
| 109 contents of this structure. The format can be B<ASCII> or B<UTF8>. | 110 contents of this structure. The format can be B<ASCII> or B<UTF8>. |
| 110 | 111 |
| 111 =item B<SEQUENCE>, B<SEQ>, B<SET> | 112 =item B<SEQUENCE>, B<SEQ>, B<SET> |
| 112 | 113 |
| 113 Formats the result as an ASN1 B<SEQUENCE> or B<SET> type. B<value> | 114 Formats the result as an ASN1 B<SEQUENCE> or B<SET> type. B<value> |
| 114 should be a section name which will contain the contents. The | 115 should be a section name which will contain the contents. The |
| 115 field names in the section are ignored and the values are in the | 116 field names in the section are ignored and the values are in the |
| 116 generated string format. If B<value> is absent then an empty SEQUENCE | 117 generated string format. If B<value> is absent then an empty SEQUENCE |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 | 256 |
| 256 =head1 SEE ALSO | 257 =head1 SEE ALSO |
| 257 | 258 |
| 258 L<ERR_get_error(3)|ERR_get_error(3)> | 259 L<ERR_get_error(3)|ERR_get_error(3)> |
| 259 | 260 |
| 260 =head1 HISTORY | 261 =head1 HISTORY |
| 261 | 262 |
| 262 ASN1_generate_nconf() and ASN1_generate_v3() were added to OpenSSL 0.9.8 | 263 ASN1_generate_nconf() and ASN1_generate_v3() were added to OpenSSL 0.9.8 |
| 263 | 264 |
| 264 =cut | 265 =cut |
| OLD | NEW |