ASN1_generate_nconf.pod 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. =pod
  2. =head1 NAME
  3. ASN1_generate_nconf, ASN1_generate_v3 - ASN1 string generation functions
  4. =head1 SYNOPSIS
  5. #include <openssl/asn1.h>
  6. ASN1_TYPE *ASN1_generate_nconf(const char *str, CONF *nconf);
  7. ASN1_TYPE *ASN1_generate_v3(const char *str, X509V3_CTX *cnf);
  8. =head1 DESCRIPTION
  9. These functions generate the ASN1 encoding of a string
  10. in an B<ASN1_TYPE> structure.
  11. I<str> contains the string to encode. I<nconf> or I<cnf> contains
  12. the optional configuration information where additional strings
  13. will be read from. I<nconf> will typically come from a config
  14. file whereas I<cnf> is obtained from an B<X509V3_CTX> structure,
  15. which will typically be used by X509 v3 certificate extension
  16. functions. I<cnf> or I<nconf> can be set to NULL if no additional
  17. configuration will be used.
  18. =head1 GENERATION STRING FORMAT
  19. The actual data encoded is determined by the string I<str> and
  20. the configuration information. The general format of the string
  21. is:
  22. =over 4
  23. =item [I<modifier>,]I<type>[:I<value>]
  24. =back
  25. That is zero or more comma separated modifiers followed by a type
  26. followed by an optional colon and a value. The formats of I<type>,
  27. I<value> and I<modifier> are explained below.
  28. =head2 Supported Types
  29. The supported types are listed below.
  30. Case is not significant in the type names.
  31. Unless otherwise specified only the B<ASCII> format is permissible.
  32. =over 4
  33. =item B<BOOLEAN>, B<BOOL>
  34. This encodes a boolean type. The I<value> string is mandatory and
  35. should be B<TRUE> or B<FALSE>. Additionally B<TRUE>, B<true>, B<Y>,
  36. B<y>, B<YES>, B<yes>, B<FALSE>, B<false>, B<N>, B<n>, B<NO> and B<no>
  37. are acceptable.
  38. =item B<NULL>
  39. Encode the B<NULL> type, the I<value> string must not be present.
  40. =item B<INTEGER>, B<INT>
  41. Encodes an ASN1 B<INTEGER> type. The I<value> string represents
  42. the value of the integer, it can be prefaced by a minus sign and
  43. is normally interpreted as a decimal value unless the prefix B<0x>
  44. is included.
  45. =item B<ENUMERATED>, B<ENUM>
  46. Encodes the ASN1 B<ENUMERATED> type, it is otherwise identical to
  47. B<INTEGER>.
  48. =item B<OBJECT>, B<OID>
  49. Encodes an ASN1 B<OBJECT IDENTIFIER>, the I<value> string can be
  50. a short name, a long name or numerical format.
  51. =item B<UTCTIME>, B<UTC>
  52. Encodes an ASN1 B<UTCTime> structure, the value should be in
  53. the format B<YYMMDDHHMMSSZ>.
  54. =item B<GENERALIZEDTIME>, B<GENTIME>
  55. Encodes an ASN1 B<GeneralizedTime> structure, the value should be in
  56. the format B<YYYYMMDDHHMMSSZ>.
  57. =item B<OCTETSTRING>, B<OCT>
  58. Encodes an ASN1 B<OCTET STRING>. I<value> represents the contents
  59. of this structure, the format strings B<ASCII> and B<HEX> can be
  60. used to specify the format of I<value>.
  61. =item B<BITSTRING>, B<BITSTR>
  62. Encodes an ASN1 B<BIT STRING>. I<value> represents the contents
  63. of this structure, the format strings B<ASCII>, B<HEX> and B<BITLIST>
  64. can be used to specify the format of I<value>.
  65. If the format is anything other than B<BITLIST> the number of unused
  66. bits is set to zero.
  67. =item B<UNIVERSALSTRING>, B<UNIV>, B<IA5>, B<IA5STRING>, B<UTF8>,
  68. B<UTF8String>, B<BMP>, B<BMPSTRING>, B<VISIBLESTRING>,
  69. B<VISIBLE>, B<PRINTABLESTRING>, B<PRINTABLE>, B<T61>,
  70. B<T61STRING>, B<TELETEXSTRING>, B<GeneralString>, B<NUMERICSTRING>,
  71. B<NUMERIC>
  72. These encode the corresponding string types. I<value> represents the
  73. contents of this structure. The format can be B<ASCII> or B<UTF8>.
  74. =item B<SEQUENCE>, B<SEQ>, B<SET>
  75. Formats the result as an ASN1 B<SEQUENCE> or B<SET> type. I<value>
  76. should be a section name which will contain the contents. The
  77. field names in the section are ignored and the values are in the
  78. generated string format. If I<value> is absent then an empty SEQUENCE
  79. will be encoded.
  80. =back
  81. =head2 Modifiers
  82. Modifiers affect the following structure, they can be used to
  83. add EXPLICIT or IMPLICIT tagging, add wrappers or to change
  84. the string format of the final type and value. The supported
  85. formats are documented below.
  86. =over 4
  87. =item B<EXPLICIT>, B<EXP>
  88. Add an explicit tag to the following structure. This string
  89. should be followed by a colon and the tag value to use as a
  90. decimal value.
  91. By following the number with B<U>, B<A>, B<P> or B<C> UNIVERSAL,
  92. APPLICATION, PRIVATE or CONTEXT SPECIFIC tagging can be used,
  93. the default is CONTEXT SPECIFIC.
  94. =item B<IMPLICIT>, B<IMP>
  95. This is the same as B<EXPLICIT> except IMPLICIT tagging is used
  96. instead.
  97. =item B<OCTWRAP>, B<SEQWRAP>, B<SETWRAP>, B<BITWRAP>
  98. The following structure is surrounded by an OCTET STRING, a SEQUENCE,
  99. a SET or a BIT STRING respectively. For a BIT STRING the number of unused
  100. bits is set to zero.
  101. =item B<FORMAT>
  102. This specifies the format of the ultimate value. It should be followed
  103. by a colon and one of the strings B<ASCII>, B<UTF8>, B<HEX> or B<BITLIST>.
  104. If no format specifier is included then B<ASCII> is used. If B<UTF8> is
  105. specified then the value string must be a valid B<UTF8> string. For B<HEX> the
  106. output must be a set of hex digits. B<BITLIST> (which is only valid for a BIT
  107. STRING) is a comma separated list of the indices of the set bits, all other
  108. bits are zero.
  109. =back
  110. =head1 RETURN VALUES
  111. ASN1_generate_nconf() and ASN1_generate_v3() return the encoded
  112. data as an B<ASN1_TYPE> structure or NULL if an error occurred.
  113. The error codes that can be obtained by L<ERR_get_error(3)>.
  114. =head1 EXAMPLES
  115. A simple IA5String:
  116. IA5STRING:Hello World
  117. An IA5String explicitly tagged:
  118. EXPLICIT:0,IA5STRING:Hello World
  119. An IA5String explicitly tagged using APPLICATION tagging:
  120. EXPLICIT:0A,IA5STRING:Hello World
  121. A BITSTRING with bits 1 and 5 set and all others zero:
  122. FORMAT:BITLIST,BITSTRING:1,5
  123. A more complex example using a config file to produce a
  124. SEQUENCE consisting of a BOOL an OID and a UTF8String:
  125. asn1 = SEQUENCE:seq_section
  126. [seq_section]
  127. field1 = BOOLEAN:TRUE
  128. field2 = OID:commonName
  129. field3 = UTF8:Third field
  130. This example produces an RSAPrivateKey structure, this is the
  131. key contained in the file client.pem in all OpenSSL distributions
  132. (note: the field names such as 'coeff' are ignored and are present just
  133. for clarity):
  134. asn1=SEQUENCE:private_key
  135. [private_key]
  136. version=INTEGER:0
  137. n=INTEGER:0xBB6FE79432CC6EA2D8F970675A5A87BFBE1AFF0BE63E879F2AFFB93644\
  138. D4D2C6D000430DEC66ABF47829E74B8C5108623A1C0EE8BE217B3AD8D36D5EB4FCA1D9
  139. e=INTEGER:0x010001
  140. d=INTEGER:0x6F05EAD2F27FFAEC84BEC360C4B928FD5F3A9865D0FCAAD291E2A52F4A\
  141. F810DC6373278C006A0ABBA27DC8C63BF97F7E666E27C5284D7D3B1FFFE16B7A87B51D
  142. p=INTEGER:0xF3929B9435608F8A22C208D86795271D54EBDFB09DDEF539AB083DA912\
  143. D4BD57
  144. q=INTEGER:0xC50016F89DFF2561347ED1186A46E150E28BF2D0F539A1594BBD7FE467\
  145. 46EC4F
  146. exp1=INTEGER:0x9E7D4326C924AFC1DEA40B45650134966D6F9DFA3A7F9D698CD4ABEA\
  147. 9C0A39B9
  148. exp2=INTEGER:0xBA84003BB95355AFB7C50DF140C60513D0BA51D637272E355E397779\
  149. E7B2458F
  150. coeff=INTEGER:0x30B9E4F2AFA5AC679F920FC83F1F2DF1BAF1779CF989447FABC2F5\
  151. 628657053A
  152. This example is the corresponding public key in a SubjectPublicKeyInfo
  153. structure:
  154. # Start with a SEQUENCE
  155. asn1=SEQUENCE:pubkeyinfo
  156. # pubkeyinfo contains an algorithm identifier and the public key wrapped
  157. # in a BIT STRING
  158. [pubkeyinfo]
  159. algorithm=SEQUENCE:rsa_alg
  160. pubkey=BITWRAP,SEQUENCE:rsapubkey
  161. # algorithm ID for RSA is just an OID and a NULL
  162. [rsa_alg]
  163. algorithm=OID:rsaEncryption
  164. parameter=NULL
  165. # Actual public key: modulus and exponent
  166. [rsapubkey]
  167. n=INTEGER:0xBB6FE79432CC6EA2D8F970675A5A87BFBE1AFF0BE63E879F2AFFB93644\
  168. D4D2C6D000430DEC66ABF47829E74B8C5108623A1C0EE8BE217B3AD8D36D5EB4FCA1D9
  169. e=INTEGER:0x010001
  170. =head1 SEE ALSO
  171. L<ERR_get_error(3)>
  172. =head1 COPYRIGHT
  173. Copyright 2002-2021 The OpenSSL Project Authors. All Rights Reserved.
  174. Licensed under the Apache License 2.0 (the "License"). You may not use
  175. this file except in compliance with the License. You can obtain a copy
  176. in the file LICENSE in the source distribution or at
  177. L<https://www.openssl.org/source/license.html>.
  178. =cut