pyasn1-alt-modules 0.4.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (427) hide show
  1. pyasn1_alt_modules-0.4.7/CHANGES.txt +483 -0
  2. pyasn1_alt_modules-0.4.7/LICENSE.txt +25 -0
  3. pyasn1_alt_modules-0.4.7/MANIFEST.in +3 -0
  4. pyasn1_alt_modules-0.4.7/PKG-INFO +70 -0
  5. pyasn1_alt_modules-0.4.7/README.md +35 -0
  6. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/__init__.py +2 -0
  7. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/opentypemap.py +19 -0
  8. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/pem.py +66 -0
  9. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc1155.py +97 -0
  10. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc1157.py +127 -0
  11. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc1901.py +23 -0
  12. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc1902.py +130 -0
  13. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc1905.py +136 -0
  14. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2040.py +50 -0
  15. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2251.py +564 -0
  16. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2314.py +68 -0
  17. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2315.py +325 -0
  18. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2437.py +70 -0
  19. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2459.py +1340 -0
  20. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2511.py +303 -0
  21. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2528.py +34 -0
  22. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2560.py +226 -0
  23. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2631.py +37 -0
  24. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2634.py +342 -0
  25. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2743.py +60 -0
  26. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2876.py +61 -0
  27. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2898.py +72 -0
  28. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2985.py +593 -0
  29. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc2986.py +76 -0
  30. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3058.py +48 -0
  31. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3114.py +80 -0
  32. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3125.py +469 -0
  33. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3161.py +142 -0
  34. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3217.py +42 -0
  35. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3274.py +62 -0
  36. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3279.py +264 -0
  37. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3280.py +1544 -0
  38. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3281.py +332 -0
  39. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3370.py +142 -0
  40. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3412.py +54 -0
  41. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3414.py +29 -0
  42. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3447.py +46 -0
  43. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3537.py +44 -0
  44. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3546.py +23 -0
  45. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3560.py +74 -0
  46. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3565.py +59 -0
  47. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3657.py +69 -0
  48. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3709.py +230 -0
  49. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3739.py +206 -0
  50. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3770.py +77 -0
  51. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3779.py +139 -0
  52. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3820.py +66 -0
  53. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3852.py +707 -0
  54. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc3874.py +29 -0
  55. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4010.py +58 -0
  56. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4043.py +45 -0
  57. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4055.py +285 -0
  58. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4056.py +56 -0
  59. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4059.py +101 -0
  60. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4073.py +62 -0
  61. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4108.py +355 -0
  62. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4210.py +807 -0
  63. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4211.py +420 -0
  64. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4212.py +154 -0
  65. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4231.py +38 -0
  66. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4262.py +37 -0
  67. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4334.py +78 -0
  68. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4357.py +485 -0
  69. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4366.py +23 -0
  70. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4387.py +23 -0
  71. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4476.py +99 -0
  72. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4490.py +119 -0
  73. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4491.py +44 -0
  74. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4683.py +76 -0
  75. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4985.py +52 -0
  76. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc4998.py +125 -0
  77. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5035.py +206 -0
  78. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5055.py +763 -0
  79. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5083.py +55 -0
  80. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5084.py +94 -0
  81. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5126.py +578 -0
  82. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5208.py +73 -0
  83. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5275.py +404 -0
  84. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5276.py +82 -0
  85. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5280.py +1666 -0
  86. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5480.py +190 -0
  87. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5544.py +127 -0
  88. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5636.py +117 -0
  89. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5639.py +49 -0
  90. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5649.py +33 -0
  91. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5652.py +763 -0
  92. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5697.py +64 -0
  93. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5698.py +159 -0
  94. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5751.py +127 -0
  95. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5752.py +52 -0
  96. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5753.py +163 -0
  97. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5755.py +400 -0
  98. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5794.py +395 -0
  99. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5913.py +46 -0
  100. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5914.py +119 -0
  101. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5915.py +32 -0
  102. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5916.py +39 -0
  103. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5917.py +59 -0
  104. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5924.py +19 -0
  105. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5934.py +786 -0
  106. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5940.py +62 -0
  107. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5958.py +100 -0
  108. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc5990.py +238 -0
  109. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6010.py +92 -0
  110. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6019.py +46 -0
  111. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6031.py +469 -0
  112. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6032.py +71 -0
  113. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6066.py +25 -0
  114. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6120.py +46 -0
  115. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6170.py +17 -0
  116. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6187.py +22 -0
  117. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6210.py +45 -0
  118. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6211.py +75 -0
  119. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6402.py +643 -0
  120. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6482.py +77 -0
  121. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6484.py +17 -0
  122. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6486.py +70 -0
  123. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6487.py +22 -0
  124. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6492.py +41 -0
  125. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6493.py +24 -0
  126. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6494.py +23 -0
  127. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6664.py +151 -0
  128. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6955.py +112 -0
  129. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6960.py +234 -0
  130. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc6962.py +52 -0
  131. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7030.py +70 -0
  132. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7191.py +267 -0
  133. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7229.py +29 -0
  134. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7292.py +359 -0
  135. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7296.py +32 -0
  136. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7508.py +92 -0
  137. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7585.py +53 -0
  138. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7633.py +40 -0
  139. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7693.py +66 -0
  140. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7773.py +54 -0
  141. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7836.py +65 -0
  142. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7894.py +100 -0
  143. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7906.py +739 -0
  144. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc7914.py +55 -0
  145. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8017.py +159 -0
  146. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8018.py +269 -0
  147. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8103.py +36 -0
  148. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8209.py +20 -0
  149. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8226.py +151 -0
  150. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8295.py +88 -0
  151. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8358.py +54 -0
  152. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8360.py +46 -0
  153. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8398.py +55 -0
  154. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8410.py +43 -0
  155. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8418.py +36 -0
  156. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8419.py +70 -0
  157. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8479.py +48 -0
  158. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8494.py +80 -0
  159. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8520.py +66 -0
  160. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8619.py +45 -0
  161. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8649.py +42 -0
  162. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8692.py +79 -0
  163. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8696.py +108 -0
  164. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8702.py +109 -0
  165. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8708.py +43 -0
  166. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8737.py +36 -0
  167. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8769.py +21 -0
  168. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8894.py +52 -0
  169. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8951.py +42 -0
  170. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8954.py +238 -0
  171. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8994.py +52 -0
  172. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc8995.py +39 -0
  173. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9044.py +80 -0
  174. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9092.py +35 -0
  175. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9118.py +82 -0
  176. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9174.py +55 -0
  177. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9189.py +74 -0
  178. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9215.py +228 -0
  179. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9286.py +78 -0
  180. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9289.py +22 -0
  181. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9310.py +46 -0
  182. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9323.py +129 -0
  183. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9336.py +20 -0
  184. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9337.py +74 -0
  185. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9345.py +36 -0
  186. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9385.py +22 -0
  187. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9399.py +59 -0
  188. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9480.py +731 -0
  189. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9481.py +224 -0
  190. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9509.py +24 -0
  191. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9548.py +23 -0
  192. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9579.py +89 -0
  193. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9582.py +107 -0
  194. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9598.py +52 -0
  195. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9608.py +35 -0
  196. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9629.py +100 -0
  197. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9632.py +26 -0
  198. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9654.py +241 -0
  199. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9688.py +297 -0
  200. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9690.py +200 -0
  201. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9691.py +75 -0
  202. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9708.py +35 -0
  203. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9709.py +66 -0
  204. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9734.py +20 -0
  205. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9763.py +110 -0
  206. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9802.py +90 -0
  207. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9809.py +27 -0
  208. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9810.py +806 -0
  209. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9814.py +173 -0
  210. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9879.py +89 -0
  211. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9881.py +141 -0
  212. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9882.py +40 -0
  213. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9883.py +46 -0
  214. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9908.py +148 -0
  215. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules/rfc9909.py +226 -0
  216. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules.egg-info/PKG-INFO +70 -0
  217. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules.egg-info/SOURCES.txt +426 -0
  218. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules.egg-info/dependency_links.txt +1 -0
  219. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules.egg-info/requires.txt +1 -0
  220. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules.egg-info/top_level.txt +1 -0
  221. pyasn1_alt_modules-0.4.7/pyasn1_alt_modules.egg-info/zip-safe +1 -0
  222. pyasn1_alt_modules-0.4.7/requirements.txt +1 -0
  223. pyasn1_alt_modules-0.4.7/setup.cfg +51 -0
  224. pyasn1_alt_modules-0.4.7/setup.py +11 -0
  225. pyasn1_alt_modules-0.4.7/tests/__init__.py +1 -0
  226. pyasn1_alt_modules-0.4.7/tests/__main__.py +218 -0
  227. pyasn1_alt_modules-0.4.7/tests/test_opentypemap.py +40 -0
  228. pyasn1_alt_modules-0.4.7/tests/test_pem.py +103 -0
  229. pyasn1_alt_modules-0.4.7/tests/test_rfc2040.py +67 -0
  230. pyasn1_alt_modules-0.4.7/tests/test_rfc2314.py +57 -0
  231. pyasn1_alt_modules-0.4.7/tests/test_rfc2315.py +166 -0
  232. pyasn1_alt_modules-0.4.7/tests/test_rfc2437.py +47 -0
  233. pyasn1_alt_modules-0.4.7/tests/test_rfc2459.py +143 -0
  234. pyasn1_alt_modules-0.4.7/tests/test_rfc2511.py +49 -0
  235. pyasn1_alt_modules-0.4.7/tests/test_rfc2528.py +82 -0
  236. pyasn1_alt_modules-0.4.7/tests/test_rfc2560.py +81 -0
  237. pyasn1_alt_modules-0.4.7/tests/test_rfc2631.py +41 -0
  238. pyasn1_alt_modules-0.4.7/tests/test_rfc2634.py +192 -0
  239. pyasn1_alt_modules-0.4.7/tests/test_rfc2743.py +43 -0
  240. pyasn1_alt_modules-0.4.7/tests/test_rfc2876.py +184 -0
  241. pyasn1_alt_modules-0.4.7/tests/test_rfc2898.py +58 -0
  242. pyasn1_alt_modules-0.4.7/tests/test_rfc2985.py +325 -0
  243. pyasn1_alt_modules-0.4.7/tests/test_rfc2986.py +91 -0
  244. pyasn1_alt_modules-0.4.7/tests/test_rfc3058.py +140 -0
  245. pyasn1_alt_modules-0.4.7/tests/test_rfc3114.py +242 -0
  246. pyasn1_alt_modules-0.4.7/tests/test_rfc3125.py +109 -0
  247. pyasn1_alt_modules-0.4.7/tests/test_rfc3161.py +81 -0
  248. pyasn1_alt_modules-0.4.7/tests/test_rfc3217.py +73 -0
  249. pyasn1_alt_modules-0.4.7/tests/test_rfc3274.py +81 -0
  250. pyasn1_alt_modules-0.4.7/tests/test_rfc3279.py +385 -0
  251. pyasn1_alt_modules-0.4.7/tests/test_rfc3280.py +79 -0
  252. pyasn1_alt_modules-0.4.7/tests/test_rfc3281.py +80 -0
  253. pyasn1_alt_modules-0.4.7/tests/test_rfc3370.py +237 -0
  254. pyasn1_alt_modules-0.4.7/tests/test_rfc3447.py +66 -0
  255. pyasn1_alt_modules-0.4.7/tests/test_rfc3537.py +71 -0
  256. pyasn1_alt_modules-0.4.7/tests/test_rfc3546.py +64 -0
  257. pyasn1_alt_modules-0.4.7/tests/test_rfc3560.py +68 -0
  258. pyasn1_alt_modules-0.4.7/tests/test_rfc3565.py +68 -0
  259. pyasn1_alt_modules-0.4.7/tests/test_rfc3657.py +166 -0
  260. pyasn1_alt_modules-0.4.7/tests/test_rfc3709.py +193 -0
  261. pyasn1_alt_modules-0.4.7/tests/test_rfc3739.py +126 -0
  262. pyasn1_alt_modules-0.4.7/tests/test_rfc3770.py +95 -0
  263. pyasn1_alt_modules-0.4.7/tests/test_rfc3779.py +96 -0
  264. pyasn1_alt_modules-0.4.7/tests/test_rfc3820.py +82 -0
  265. pyasn1_alt_modules-0.4.7/tests/test_rfc3852.py +128 -0
  266. pyasn1_alt_modules-0.4.7/tests/test_rfc3874.py +67 -0
  267. pyasn1_alt_modules-0.4.7/tests/test_rfc4010.py +136 -0
  268. pyasn1_alt_modules-0.4.7/tests/test_rfc4043.py +118 -0
  269. pyasn1_alt_modules-0.4.7/tests/test_rfc4055.py +174 -0
  270. pyasn1_alt_modules-0.4.7/tests/test_rfc4056.py +113 -0
  271. pyasn1_alt_modules-0.4.7/tests/test_rfc4059.py +70 -0
  272. pyasn1_alt_modules-0.4.7/tests/test_rfc4073.py +151 -0
  273. pyasn1_alt_modules-0.4.7/tests/test_rfc4108.py +117 -0
  274. pyasn1_alt_modules-0.4.7/tests/test_rfc4210.py +129 -0
  275. pyasn1_alt_modules-0.4.7/tests/test_rfc4211.py +76 -0
  276. pyasn1_alt_modules-0.4.7/tests/test_rfc4212.py +108 -0
  277. pyasn1_alt_modules-0.4.7/tests/test_rfc4231.py +78 -0
  278. pyasn1_alt_modules-0.4.7/tests/test_rfc4262.py +90 -0
  279. pyasn1_alt_modules-0.4.7/tests/test_rfc4334.py +83 -0
  280. pyasn1_alt_modules-0.4.7/tests/test_rfc4357.py +248 -0
  281. pyasn1_alt_modules-0.4.7/tests/test_rfc4366.py +64 -0
  282. pyasn1_alt_modules-0.4.7/tests/test_rfc4387.py +84 -0
  283. pyasn1_alt_modules-0.4.7/tests/test_rfc4476.py +141 -0
  284. pyasn1_alt_modules-0.4.7/tests/test_rfc4490.py +274 -0
  285. pyasn1_alt_modules-0.4.7/tests/test_rfc4491.py +156 -0
  286. pyasn1_alt_modules-0.4.7/tests/test_rfc4683.py +115 -0
  287. pyasn1_alt_modules-0.4.7/tests/test_rfc4985.py +111 -0
  288. pyasn1_alt_modules-0.4.7/tests/test_rfc4998.py +178 -0
  289. pyasn1_alt_modules-0.4.7/tests/test_rfc5035.py +197 -0
  290. pyasn1_alt_modules-0.4.7/tests/test_rfc5055.py +649 -0
  291. pyasn1_alt_modules-0.4.7/tests/test_rfc5083.py +99 -0
  292. pyasn1_alt_modules-0.4.7/tests/test_rfc5084.py +122 -0
  293. pyasn1_alt_modules-0.4.7/tests/test_rfc5126.py +103 -0
  294. pyasn1_alt_modules-0.4.7/tests/test_rfc5208.py +76 -0
  295. pyasn1_alt_modules-0.4.7/tests/test_rfc5275.py +190 -0
  296. pyasn1_alt_modules-0.4.7/tests/test_rfc5276.py +535 -0
  297. pyasn1_alt_modules-0.4.7/tests/test_rfc5280.py +253 -0
  298. pyasn1_alt_modules-0.4.7/tests/test_rfc5480.py +81 -0
  299. pyasn1_alt_modules-0.4.7/tests/test_rfc5544.py +209 -0
  300. pyasn1_alt_modules-0.4.7/tests/test_rfc5636.py +120 -0
  301. pyasn1_alt_modules-0.4.7/tests/test_rfc5639.py +80 -0
  302. pyasn1_alt_modules-0.4.7/tests/test_rfc5649.py +56 -0
  303. pyasn1_alt_modules-0.4.7/tests/test_rfc5652.py +172 -0
  304. pyasn1_alt_modules-0.4.7/tests/test_rfc5697.py +123 -0
  305. pyasn1_alt_modules-0.4.7/tests/test_rfc5698.py +83 -0
  306. pyasn1_alt_modules-0.4.7/tests/test_rfc5751.py +101 -0
  307. pyasn1_alt_modules-0.4.7/tests/test_rfc5752.py +206 -0
  308. pyasn1_alt_modules-0.4.7/tests/test_rfc5753.py +129 -0
  309. pyasn1_alt_modules-0.4.7/tests/test_rfc5755.py +205 -0
  310. pyasn1_alt_modules-0.4.7/tests/test_rfc5794.py +258 -0
  311. pyasn1_alt_modules-0.4.7/tests/test_rfc5913.py +121 -0
  312. pyasn1_alt_modules-0.4.7/tests/test_rfc5914.py +79 -0
  313. pyasn1_alt_modules-0.4.7/tests/test_rfc5915.py +45 -0
  314. pyasn1_alt_modules-0.4.7/tests/test_rfc5916.py +105 -0
  315. pyasn1_alt_modules-0.4.7/tests/test_rfc5917.py +111 -0
  316. pyasn1_alt_modules-0.4.7/tests/test_rfc5924.py +74 -0
  317. pyasn1_alt_modules-0.4.7/tests/test_rfc5934.py +297 -0
  318. pyasn1_alt_modules-0.4.7/tests/test_rfc5940.py +141 -0
  319. pyasn1_alt_modules-0.4.7/tests/test_rfc5958.py +83 -0
  320. pyasn1_alt_modules-0.4.7/tests/test_rfc5990.py +87 -0
  321. pyasn1_alt_modules-0.4.7/tests/test_rfc6010.py +103 -0
  322. pyasn1_alt_modules-0.4.7/tests/test_rfc6019.py +60 -0
  323. pyasn1_alt_modules-0.4.7/tests/test_rfc6031.py +91 -0
  324. pyasn1_alt_modules-0.4.7/tests/test_rfc6032.py +98 -0
  325. pyasn1_alt_modules-0.4.7/tests/test_rfc6066.py +86 -0
  326. pyasn1_alt_modules-0.4.7/tests/test_rfc6120.py +110 -0
  327. pyasn1_alt_modules-0.4.7/tests/test_rfc6170.py +42 -0
  328. pyasn1_alt_modules-0.4.7/tests/test_rfc6187.py +70 -0
  329. pyasn1_alt_modules-0.4.7/tests/test_rfc6210.py +74 -0
  330. pyasn1_alt_modules-0.4.7/tests/test_rfc6211.py +122 -0
  331. pyasn1_alt_modules-0.4.7/tests/test_rfc6402.py +157 -0
  332. pyasn1_alt_modules-0.4.7/tests/test_rfc6482.py +116 -0
  333. pyasn1_alt_modules-0.4.7/tests/test_rfc6484.py +77 -0
  334. pyasn1_alt_modules-0.4.7/tests/test_rfc6486.py +128 -0
  335. pyasn1_alt_modules-0.4.7/tests/test_rfc6487.py +146 -0
  336. pyasn1_alt_modules-0.4.7/tests/test_rfc6492.py +114 -0
  337. pyasn1_alt_modules-0.4.7/tests/test_rfc6493.py +97 -0
  338. pyasn1_alt_modules-0.4.7/tests/test_rfc6494.py +72 -0
  339. pyasn1_alt_modules-0.4.7/tests/test_rfc6664.py +115 -0
  340. pyasn1_alt_modules-0.4.7/tests/test_rfc6955.py +98 -0
  341. pyasn1_alt_modules-0.4.7/tests/test_rfc6960.py +168 -0
  342. pyasn1_alt_modules-0.4.7/tests/test_rfc6962.py +124 -0
  343. pyasn1_alt_modules-0.4.7/tests/test_rfc7030.py +87 -0
  344. pyasn1_alt_modules-0.4.7/tests/test_rfc7191.py +313 -0
  345. pyasn1_alt_modules-0.4.7/tests/test_rfc7229.py +93 -0
  346. pyasn1_alt_modules-0.4.7/tests/test_rfc7292.py +178 -0
  347. pyasn1_alt_modules-0.4.7/tests/test_rfc7296.py +160 -0
  348. pyasn1_alt_modules-0.4.7/tests/test_rfc7508.py +137 -0
  349. pyasn1_alt_modules-0.4.7/tests/test_rfc7585.py +126 -0
  350. pyasn1_alt_modules-0.4.7/tests/test_rfc7633.py +80 -0
  351. pyasn1_alt_modules-0.4.7/tests/test_rfc7693.py +63 -0
  352. pyasn1_alt_modules-0.4.7/tests/test_rfc7773.py +112 -0
  353. pyasn1_alt_modules-0.4.7/tests/test_rfc7836.py +61 -0
  354. pyasn1_alt_modules-0.4.7/tests/test_rfc7894.py +81 -0
  355. pyasn1_alt_modules-0.4.7/tests/test_rfc7906.py +165 -0
  356. pyasn1_alt_modules-0.4.7/tests/test_rfc7914.py +86 -0
  357. pyasn1_alt_modules-0.4.7/tests/test_rfc8017.py +123 -0
  358. pyasn1_alt_modules-0.4.7/tests/test_rfc8018.py +58 -0
  359. pyasn1_alt_modules-0.4.7/tests/test_rfc8103.py +53 -0
  360. pyasn1_alt_modules-0.4.7/tests/test_rfc8209.py +63 -0
  361. pyasn1_alt_modules-0.4.7/tests/test_rfc8226.py +96 -0
  362. pyasn1_alt_modules-0.4.7/tests/test_rfc8295.py +71 -0
  363. pyasn1_alt_modules-0.4.7/tests/test_rfc8358.py +195 -0
  364. pyasn1_alt_modules-0.4.7/tests/test_rfc8360.py +464 -0
  365. pyasn1_alt_modules-0.4.7/tests/test_rfc8398.py +65 -0
  366. pyasn1_alt_modules-0.4.7/tests/test_rfc8410.py +44 -0
  367. pyasn1_alt_modules-0.4.7/tests/test_rfc8418.py +43 -0
  368. pyasn1_alt_modules-0.4.7/tests/test_rfc8419.py +131 -0
  369. pyasn1_alt_modules-0.4.7/tests/test_rfc8479.py +105 -0
  370. pyasn1_alt_modules-0.4.7/tests/test_rfc8494.py +55 -0
  371. pyasn1_alt_modules-0.4.7/tests/test_rfc8520.py +116 -0
  372. pyasn1_alt_modules-0.4.7/tests/test_rfc8619.py +80 -0
  373. pyasn1_alt_modules-0.4.7/tests/test_rfc8649.py +59 -0
  374. pyasn1_alt_modules-0.4.7/tests/test_rfc8692.py +55 -0
  375. pyasn1_alt_modules-0.4.7/tests/test_rfc8696.py +196 -0
  376. pyasn1_alt_modules-0.4.7/tests/test_rfc8702.py +136 -0
  377. pyasn1_alt_modules-0.4.7/tests/test_rfc8708.py +127 -0
  378. pyasn1_alt_modules-0.4.7/tests/test_rfc8737.py +73 -0
  379. pyasn1_alt_modules-0.4.7/tests/test_rfc8769.py +134 -0
  380. pyasn1_alt_modules-0.4.7/tests/test_rfc8894.py +69 -0
  381. pyasn1_alt_modules-0.4.7/tests/test_rfc8951.py +91 -0
  382. pyasn1_alt_modules-0.4.7/tests/test_rfc8954.py +192 -0
  383. pyasn1_alt_modules-0.4.7/tests/test_rfc8994.py +65 -0
  384. pyasn1_alt_modules-0.4.7/tests/test_rfc8995.py +70 -0
  385. pyasn1_alt_modules-0.4.7/tests/test_rfc9044.py +93 -0
  386. pyasn1_alt_modules-0.4.7/tests/test_rfc9092.py +94 -0
  387. pyasn1_alt_modules-0.4.7/tests/test_rfc9118.py +82 -0
  388. pyasn1_alt_modules-0.4.7/tests/test_rfc9174.py +144 -0
  389. pyasn1_alt_modules-0.4.7/tests/test_rfc9189.py +99 -0
  390. pyasn1_alt_modules-0.4.7/tests/test_rfc9215.py +176 -0
  391. pyasn1_alt_modules-0.4.7/tests/test_rfc9286.py +122 -0
  392. pyasn1_alt_modules-0.4.7/tests/test_rfc9289.py +66 -0
  393. pyasn1_alt_modules-0.4.7/tests/test_rfc9310.py +70 -0
  394. pyasn1_alt_modules-0.4.7/tests/test_rfc9323.py +142 -0
  395. pyasn1_alt_modules-0.4.7/tests/test_rfc9336.py +67 -0
  396. pyasn1_alt_modules-0.4.7/tests/test_rfc9337.py +59 -0
  397. pyasn1_alt_modules-0.4.7/tests/test_rfc9345.py +95 -0
  398. pyasn1_alt_modules-0.4.7/tests/test_rfc9385.py +57 -0
  399. pyasn1_alt_modules-0.4.7/tests/test_rfc9399.py +514 -0
  400. pyasn1_alt_modules-0.4.7/tests/test_rfc9480.py +219 -0
  401. pyasn1_alt_modules-0.4.7/tests/test_rfc9481.py +58 -0
  402. pyasn1_alt_modules-0.4.7/tests/test_rfc9509.py +72 -0
  403. pyasn1_alt_modules-0.4.7/tests/test_rfc9548.py +56 -0
  404. pyasn1_alt_modules-0.4.7/tests/test_rfc9579.py +129 -0
  405. pyasn1_alt_modules-0.4.7/tests/test_rfc9582.py +117 -0
  406. pyasn1_alt_modules-0.4.7/tests/test_rfc9598.py +65 -0
  407. pyasn1_alt_modules-0.4.7/tests/test_rfc9608.py +65 -0
  408. pyasn1_alt_modules-0.4.7/tests/test_rfc9629.py +76 -0
  409. pyasn1_alt_modules-0.4.7/tests/test_rfc9632.py +94 -0
  410. pyasn1_alt_modules-0.4.7/tests/test_rfc9654.py +177 -0
  411. pyasn1_alt_modules-0.4.7/tests/test_rfc9688.py +81 -0
  412. pyasn1_alt_modules-0.4.7/tests/test_rfc9690.py +135 -0
  413. pyasn1_alt_modules-0.4.7/tests/test_rfc9691.py +165 -0
  414. pyasn1_alt_modules-0.4.7/tests/test_rfc9708.py +127 -0
  415. pyasn1_alt_modules-0.4.7/tests/test_rfc9709.py +107 -0
  416. pyasn1_alt_modules-0.4.7/tests/test_rfc9734.py +95 -0
  417. pyasn1_alt_modules-0.4.7/tests/test_rfc9763.py +137 -0
  418. pyasn1_alt_modules-0.4.7/tests/test_rfc9802.py +318 -0
  419. pyasn1_alt_modules-0.4.7/tests/test_rfc9809.py +70 -0
  420. pyasn1_alt_modules-0.4.7/tests/test_rfc9810.py +226 -0
  421. pyasn1_alt_modules-0.4.7/tests/test_rfc9814.py +1096 -0
  422. pyasn1_alt_modules-0.4.7/tests/test_rfc9879.py +129 -0
  423. pyasn1_alt_modules-0.4.7/tests/test_rfc9881.py +250 -0
  424. pyasn1_alt_modules-0.4.7/tests/test_rfc9882.py +113 -0
  425. pyasn1_alt_modules-0.4.7/tests/test_rfc9883.py +101 -0
  426. pyasn1_alt_modules-0.4.7/tests/test_rfc9908.py +269 -0
  427. pyasn1_alt_modules-0.4.7/tests/test_rfc9909.py +247 -0
@@ -0,0 +1,483 @@
1
+ Revision 0.4.7, released 22-DEC-2025
2
+ ------------------------------------
3
+ - Cleanup setup.cfg and setup.py
4
+ - Added RFC9763 for Related Certificates for Use in Multiple Authentications
5
+ within a Protocol
6
+ - Add RFC5794 providing the ARIA Encryption Algorithm, which is possible
7
+ since pyasn1 0.6.0 and later includes support for univ.RelativeOID
8
+ - Add RFC8295 providing Enrollment over Secure Transport (EST) Extensions
9
+ - Add RFC4212 providing Alternative Certificate Formats for the PKIX
10
+ Certificate Management Protocols
11
+ - Add RFC9802 providing HSS/LMS, XMSS, and XMSS^MT Hash-based Signature
12
+ Algorithms for X.509
13
+ - Add RFC9810 providing Certificate Management Protocol (CMP)
14
+ - Add RFC9814 providing SLH-DSA Signature Algorithm for the CMS
15
+ - Add RFC9809 providing X.509 Certificate Extended Key Usage (EKU) values
16
+ for configuration, updates, and safety communication
17
+ - Added RFC9879 for Use of PBMAC1 in the PKCS #12 Syntax, which updates RFC9579
18
+ - Added RFC9881 for Algorithm Identifiers for ML-DSA in Certificates and CRLs
19
+ - Dropped support for EOL Python 3.8, and 3.9; added support for Python 3.14
20
+ - Added RFC9882 for Algorithm Identifiers for ML-DSA in CMS
21
+ - Added RFC9883 for An Attribute for Statement of Possession of a Private Key
22
+ - Updated the link to the pyasn1 project in README.md
23
+ - Correct the URL to the license file in rfc8295.py
24
+ - Add RFC9632 providing CMS Content Type for Geofeed Data (replaces RFC9092)
25
+ - Add RFC9908 providing Clarification of RFC7030 CSR Attributes definition
26
+ - Add RFC9909 providing SLH-DSA Signature Algorithm for Certificates
27
+
28
+ Revision 0.4.6, released 25-MAR-2025
29
+ ------------------------------------
30
+ - Added RFC9688 for SHA3 One-way Hash Functions in the CMS
31
+ - Improve RFC9688 handling of KDF2 and KDF3 entries in algorithm identifier map
32
+ - Added RFC9691 for RPKI Signed Trust Anchor List
33
+ - Added RFC9708 for HSS/LMS Hash-based Signature Algorithm for CMS
34
+ - Update the copyright comment lines for 2025
35
+ - Added RFC9709 for Encryption Key Derivation in the CMS using HKDF with SHA-256
36
+ - Require pyasn1 0.6.0 so that RelativeOID can be used in the future.
37
+ - Added RFC9690 for KEM-RSA Algorithm with CMS KEMRecipientInfo
38
+ - Added RFC9734 for X.509 Certificate EKU for Instant Messaging URIs
39
+ - Added support for Python 3.13.
40
+
41
+ Revision 0.4.5, released 02-09-2024
42
+ -----------------------------------
43
+ - Require pyasn1 0.5.0 to force people to the maintained version
44
+ - Dropped support for EOL Python 2.7, 3.6, and 3.7
45
+ - Added RFC9598 for Internationalized Email Addresses in X.509 Certificates
46
+ - Added RFC9582 for RPKI Route Origin Authorizations (ROAs)
47
+ - Added RFC9579 for Use of PBMAC1 in the PKCS #12 Syntax
48
+ - Improve RFC9480 by updating the algorithm identifier map and fix typo
49
+ - Improve RFC8708 by addressing errata eid7963, which only changes a comment
50
+ - Added RFC9608 for the noRevAvail Certificate Extension
51
+ - Improve RFC6401 by addressing errata eid3943, eid5931, and eid6571
52
+ - Added RFC9629 for CMS KEMRecipientInfo
53
+ - Added RFC9654 for Online Certificate Status Protocol (OCSP) Nonce Extension
54
+
55
+ Revision 0.4.4, released 03-22-2024
56
+ -----------------------------------
57
+ - Added support for Python 3.12, and dropped support for Python 3.5.
58
+ - Added RFC9548 for Generating Transport Key Containers Using the GOST Algorithms
59
+ - Added RFC8964 for Online Certificate Status Protocol (OCSP) with Nonce constraints
60
+ - Modified RFC9480 (CMP updates) to make InfoTypeAndValue['infoType'] optional
61
+
62
+ Revision 0.4.3, released 08-02-2024
63
+ -----------------------------------
64
+ - Update the copyright comment lines for 2024
65
+ - Include support for Python 3.11 in setup.py
66
+ - Update RFC9215 to use OID names from RFC 9215 for GOST R 34.10-2012
67
+ - Added RFC9385 providing GOST R 34.10-2012 Algorithm for IKEv2
68
+ - Added RFC9345 providing Delegated Credentials for TLS and DTLS
69
+ - Added RFC3546 providing PkiPath as used in TLS Extensions
70
+ - Added RFC4366 providing PkiPath as used in TLS Extensions
71
+ - Added RFC9399 providing Logotypes in X.509 Certificates
72
+ - Dropped RFC5794 because the support for RELATIVE-OID is too fragile
73
+ - Added RFC9480 providing Certificate Management Protocol (CMP) updates
74
+ - Added RFC9481 providing Certificate Management Protocol (CMP) algorithms
75
+ - Update RFC5280 to add size constraint to policyQualifiers field of PolicyInformation
76
+ - Added RFC9509 providing Extended Key Usage (EKU) for 5G Network Functions
77
+ - Update RFC3739 to apply https://www.rfc-editor.org/errata/eid7802
78
+
79
+ Revision 0.4.2, released 09-01-2023
80
+ -----------------------------------
81
+ - Added RFC2898 providing PKCS #5, Version 2.0
82
+ - Added RFC9215 providing GOST R 34.10-2012 and GOST R 34.11-2012 Algorithms
83
+ - Added RFC5698 providing Data Structure for the Security Suitability of
84
+ Cryptographic Algorithms (DSSC)
85
+ - Added RFC9286 providing RPKI Manifests, which obsoletes RFC6484
86
+ - Improve tests for RFC2985, RFC370, RFC3657, RFC4010, RFC4055, RFC6494,
87
+ RFC7914, and RFC8692
88
+ - Added RFC9289 providing Extended Key Usage values for RPC over TLS
89
+ - Modified RFC9286 to apply https://www.rfc-editor.org/errata/eid7118
90
+ - Added RFC9323 providing RPKI Signed Checklist (RSC)
91
+ - Added RFC9336 providing Extended Key Usage (EKU) for Document Signing
92
+ - Added RFC9337 providing GOST Algorithms with PKCS#5
93
+ - Correct typo in a comment in RFC8708
94
+ - Added RFC9310 providing 5G NF Types certificate extension
95
+
96
+ Revision 0.4.1, released 16-02-2022
97
+ -----------------------------------
98
+ - Update RFC4210 to import from RFC 5280, RFC 4211, and RFC6402 instead of
99
+ earlier RFCs covering the same things
100
+ - Update RFC4211 to import from RFC 5280 and RFC5252 instead of earlier
101
+ RFCs covering the same things, and to include an opentype map for
102
+ AttributeTypeAndValue
103
+ - Add RFC9118 providing Enhanced JWT Claim Constraints certificate extension
104
+ - Add RFC2743 providing GSSAPI Tokens
105
+ - Add addon providing a place for features that are not supported by pyasn1;
106
+ addon.RelativeOID is the first add-on feature
107
+ - Add RFC5794 providing the ARIA Encryption Algorithm
108
+ - Add RFC9174 providing naming and extended key usage for the Delay-Tolerant
109
+ Networking TCP Convergence Layer Version 4
110
+ - Improve the test for RFC6486
111
+ - Improve the test for RFC9174
112
+ - Update the copyright lines for 2022
113
+ - Improve RFC3709 to enforce WITH COMPONENTS constraints
114
+ - Add RFC9189 providing GOST Cipher Suites for TLS 1.2
115
+ - Improve RFC5280 by adding defined policy qualifiers to map (CBonnell)
116
+
117
+ Revision 0.4.0, released 10-07-2021
118
+ -----------------------------------
119
+ - Added opentypemap to manage the open type maps for all modules
120
+ - Add RFC9092 providing CMS Content Type for Geofeed Data
121
+
122
+ Revision 0.3.2, released 14-06-2021
123
+ -----------------------------------
124
+ - Modified RFC5280 to use CRLNumber() in the extensions opentype map.
125
+
126
+ Revision 0.3.1, released 13-06-2021
127
+ -----------------------------------
128
+ - Add RFC4056 providing RSASSA-PSS Signature Algorithm in CMS
129
+ - Add RFC4059 providing Warranty Certificate Extension
130
+ - Add RFC4262 providing S/MIME Capabilities Certificate Extension
131
+ - Add RFC4998 providing Evidence Record Syntax (ERS)
132
+ - Add RFC5055 providing Server-Based Certificate Validation Protocol (SCVP)
133
+ - Add RFC5276 providing SCVP updates to convey Long-Term Evidence Records
134
+ - Add RFC5544 providing the TimeStampedData Content Type
135
+ - Add RFC6066 providing PkiPath for the pkix-pkipath media type
136
+ - Add RFC6492 providing a protocol for provisioning RPKI certificates
137
+ - Add RFC6962 providing Certificate Transparency
138
+ - Add RFC7693 providing BLAKE2 Cryptographic Hash and MAC
139
+ - Add RFC7836 providing algorithms identifiers and parameters for
140
+ GOST R 34.10-2012 and GOST R 34.11-2012
141
+ - Modified RFC4357 to support the new parameter set in RFC7836
142
+ - Add RFC8994 providing ACP Node Name in X.509 Certificates
143
+ - Add RFC8995 providing the masa-url certificate extension used by BRSKI
144
+ - Add RFC9044 providing algorithm identifiers for AES-GMAC
145
+ - Modified RFC4055 to include the PKCS#1 v1.5 algorithm identifiers
146
+ - Add RFC2040 providing identifiers for RC5
147
+ - Add RFC2528 providing identifiers for the Key Exchange Algorithm (KEA)
148
+ - Add RFC3217 providing identifiers for Triple-DES and RC2 Key Wrapping
149
+ - Add RFC3874 providing identifiers for SHA-224
150
+ - Add RFC4231 providing identifiers for HMAC-SHA-224, HMAC-SHA-256,
151
+ HMAC-SHA-384, and HMAC-SHA-512
152
+ - Add RFC6484 providing the RPKI Certificate Policy identifier
153
+ - Add RFC6493 providing the RPKI Ghostbusters Record
154
+ - Add RFC6494 providing the extended key usage identifiers for use with
155
+ SEcure Neighbor Discovery (SEND) certificate profile
156
+ - Add RFC8737 providing the ACME TLS ALPN Challenge Certificate Extension
157
+ - Add RFC8951 providing Enrollment over Secure Transport (EST) clarifications
158
+ - Add a simple test for the RFC6170 module
159
+ - Add RFC8894 providing Simple Certificate Enrolment Protocol (SCEP)
160
+ - Modified RFC5990 to update the S/MIME Capabilities map
161
+ - Improve test routines for RFC6664
162
+
163
+ Revision 0.3.0, released 08-06-2021
164
+ -----------------------------------
165
+ - Added support for Python 3.8
166
+ - Added tox runner with a handful of basic jobs
167
+ - Add RFC3125 providing Electronic Signature Policies
168
+ - Add RFC5126 providing CMS Advanced Electronic Signatures (CAdES)
169
+ - Removed support for EOL Pythons 2.4, 2.5, 2.6, 3.2, 3.3 and 3.4
170
+ - Improve test routines for RFC5126
171
+ - Add RFC4387 providing Certificate Store Access via HTTP
172
+ - Changed assertion in unit tests from Python built-in to `unittest`
173
+ provided
174
+ - Add RFC8692 providing Algorithm Identifiers for RSASSA-PSS and
175
+ ECDSA Using SHAKEs
176
+ - Add RFC5753 providing CMS Elliptic Curve Cryptography Algorithms
177
+ - Add RFC3820 providing Proxy Certificates
178
+ - Add RFC3370 providing Cryptographic Message Syntax (CMS) Algorithms
179
+ - Add RFC3537 providing HMAC Key Wrapping
180
+ - Add RFC3739 providing Qualified Certificates
181
+ - Add RFC2876 providing KEA and SKIPJACK for CMS
182
+ - Add RFC3058 providing IDEA Encryption Algorithm for CMS
183
+ - Add RFC3657 providing Camellia Encryption Algorithm for CMS
184
+ - Add RFC4010 providing SEED Encryption Algorithm for CMS
185
+ - Add RFC4357 providing Additional Cryptographic Algorithms for Use with
186
+ GOST 28147-89, GOST R 34.10-94, GOST R 34.10-2001, and GOST R 34.11-94
187
+ - Add RFC4490 providing GOST 28147-89, GOST R 34.11-94, GOST R 34.10-94,
188
+ and GOST R 34.10-2001 Algorithms for CMS
189
+ - Add RFC4491 providing GOST R 34.10-94, GOST R 34.10-2001, and
190
+ GOST R 34.11-94 Algorithms for certificates and CRLs
191
+ - Add RFC8696 providing using Pre-Shared Key (PSK) in the CMS
192
+ - Add RFC5639 providing identifiers for the Brainpool curves in
193
+ Elliptic Curve Cryptography
194
+ - Add RFC5697 providing Other Certificates Extension
195
+ - Add RFC4683 providing Subject Identification Method (SIM)
196
+ - Add RFC4476 providing Attribute Certificate Policies Extension
197
+ - Add RFC5636 providing Traceable Anonymous Certificate
198
+ - Add RFC5752 providing Multiple Signatures attribute for CMS
199
+ - Add RFC5275 providing CMS Symmetric Key Management and Distribution
200
+ - Add RFC8702 providing SHAKE One-way Hash Functions in the CMS
201
+ - Add RFC8708 providing HSS/LMS Hash-based Signature Algorithm for CMS
202
+ - Add RFC8769 providing CBOR and CBOR Sequence content types for CMS
203
+ - Improve the test routine for RFC4055
204
+ - Fork from pyasn1-modules to create pyasn1-alt-modules
205
+ - Advance copyright statement to year 2021
206
+ - Update pointer to license file
207
+
208
+ Revision 0.2.8, released 16-11-2019
209
+ -----------------------------------
210
+ - Improve test routines for modules that use certificate extensions
211
+ - Improve test for RFC3709 with a real world certificate
212
+ - Added RFC7633 providing TLS Features Certificate Extension
213
+ - Added RFC7229 providing OIDs for Test Certificate Policies
214
+ - Added tests for RFC3280, RFC3281, RFC3852, and RFC4211
215
+ - Added RFC6960 providing Online Certificate Status Protocol (OCSP)
216
+ - Added RFC6955 providing Diffie-Hellman Proof-of-Possession Algorithms
217
+ - Updated the handling of maps for use with openType for RFC 3279
218
+ - Added RFC6486 providing RPKI Manifests
219
+ - Added RFC6487 providing Profile for X.509 PKIX Resource Certificates
220
+ - Added RFC6170 providing Certificate Image in the Internet X.509 Public
221
+ Key Infrastructure, and import the object identifier into RFC3709.
222
+ - Added RFC6187 providing Certificates for Secure Shell Authentication
223
+ - Added RFC6482 providing RPKI Route Origin Authorizations (ROAs)
224
+ - Added RFC6664 providing S/MIME Capabilities for Public Keys
225
+ - Added RFC6120 providing Extensible Messaging and Presence Protocol
226
+ names in certificates
227
+ - Added RFC4985 providing Subject Alternative Name for expression of
228
+ service names in certificates
229
+ - Added RFC5924 providing Extended Key Usage for Session Initiation
230
+ Protocol (SIP) in X.509 certificates
231
+ - Added RFC5916 providing Device Owner Attribute
232
+ - Added RFC7508 providing Securing Header Fields with S/MIME
233
+ - Update RFC8226 to use ComponentPresentConstraint() instead of the
234
+ previous work around
235
+ - Add RFC2631 providing OtherInfo for Diffie-Hellman Key Agreement
236
+ - Add RFC3114 providing test values for the S/MIME Security Label
237
+ - Add RFC5755 providing Attribute Certificate Profile for Authorization
238
+ - Add RFC5913 providing Clearance Attribute and Authority Clearance
239
+ Constraints Certificate Extension
240
+ - Add RFC5917 providing Clearance Sponsor Attribute
241
+ - Add RFC4043 providing Internet X.509 PKI Permanent Identifier
242
+ - Add RFC7585 providing Network Access Identifier (NAI) Realm Name
243
+ for Certificates
244
+ - Update RFC3770 to support openType for attributes and reported errata
245
+ - Add RFC4334 providing Certificate Extensions and Attributes for
246
+ Authentication in PPP and Wireless LAN Networks
247
+
248
+ Revision 0.2.7, released 09-10-2019
249
+ -----------------------------------
250
+ - Added maps for use with openType to RFC 3565
251
+ - Added RFC2985 providing PKCS#9 Attributes
252
+ - Added RFC3770 providing Certificate Extensions and Attributes for
253
+ Authentication in PPP and Wireless LAN Networks
254
+ - Added RFC5914 providing Trust Anchor Format
255
+ - Added RFC6010 providing CMS Content Constraints (CCC) Extension
256
+ - Added RFC6031 providing CMS Symmetric Key Package Content Type
257
+ - Added RFC6032 providing CMS Encrypted Key Package Content Type
258
+ - Added RFC7030 providing Enrollment over Secure Transport (EST)
259
+ - Added RFC7292 providing PKCS #12, which is the Personal Information
260
+ Exchange Syntax v1.1
261
+ - Added RFC8018 providing PKCS #5, which is the Password-Based
262
+ Cryptography Specification, Version 2.1
263
+ - Automatically update the maps for use with openType for RFC3709,
264
+ RFC6402, RFC7191, and RFC8226 when the module is imported
265
+ - Added RFC6211 providing CMS Algorithm Identifier Protection Attribute
266
+ - Added RFC8449 providing Certificate Extension for Hash Of Root Key
267
+ - Updated RFC2459 and RFC5280 for TODO in the certificate extension map
268
+ - Added RFC7906 providing NSA's CMS Key Management Attributes
269
+ - Added RFC7894 providing EST Alternative Challenge Password Attributes
270
+ - Updated the handling of maps for use with openType so that just doing
271
+ an import of the modules is enough in most situations; updates to
272
+ RFC 2634, RFC 3274, RFC 3779, RFC 4073, RFC 4108, RFC 5035, RFC 5083,
273
+ RFC 5084, RFC 5480, RFC 5940, RFC 5958, RFC 6019, and RFC 8520
274
+ - Updated the handling of attribute maps for use with openType in
275
+ RFC 5958 to use the rfc5652.cmsAttributesMap
276
+ - Added RFC5990 providing RSA-KEM Key Transport Algorithm in the CMS
277
+ - Fixed malformed `rfc4210.RevRepContent` data structure layout
278
+ - Added RFC5934 providing Trust Anchor Management Protocol (TAMP)
279
+ - Added RFC6210 providing Experiment for Hash Functions with Parameters
280
+ - Added RFC5751 providing S/MIME Version 3.2 Message Specification
281
+ - Added RFC8494 providing Multicast Email (MULE) over ACP 142
282
+ - Added RFC8398 providing Internationalized Email Addresses in
283
+ X.509 Certificates
284
+ - Added RFC8419 providing Edwards-Curve Digital Signature Algorithm
285
+ (EdDSA) Signatures in the CMS
286
+ - Added RFC8479 providing Storing Validation Parameters in PKCS#8
287
+ - Added RFC8360 providing Resource Public Key Infrastructure (RPKI)
288
+ Validation Reconsidered
289
+ - Added RFC8358 providing Digital Signatures on Internet-Draft Documents
290
+ - Added RFC8209 providing BGPsec Router PKI Profile
291
+ - Added RFC8017 providing PKCS #1 Version 2.2
292
+ - Added RFC7914 providing scrypt Password-Based Key Derivation Function
293
+ - Added RFC7773 providing Authentication Context Certificate Extension
294
+
295
+ Revision 0.2.6, released 31-07-2019
296
+ -----------------------------------
297
+ - Added RFC3560 providing RSAES-OAEP Key Transport Algorithm
298
+ in CMS
299
+ - Added RFC6019 providing BinaryTime - an alternate format
300
+ for representing Date and Time
301
+ - RFC3565 superseded by RFC5649
302
+ - Added RFC5480 providng Elliptic Curve Cryptography Subject
303
+ Public Key Information
304
+ - Added RFC8520 providing X.509 Extensions for MUD URL and
305
+ MUD Signer
306
+ - Added RFC3161 providing Time-Stamp Protocol support
307
+ - Added RFC3709 providing Logotypes in X.509 Certificates
308
+ - Added RFC3274 providing CMS Compressed Data Content Type
309
+ - Added RFC4073 providing Multiple Contents protection with CMS
310
+ - Added RFC2634 providing Enhanced Security Services for S/MIME
311
+ - Added RFC5915 providing Elliptic Curve Private Key
312
+ - Added RFC5940 providing CMS Revocation Information Choices
313
+ - Added RFC7296 providing IKEv2 Certificate Bundle
314
+ - Added RFC8619 providing HKDF Algorithm Identifiers
315
+ - Added RFC7191 providing CMS Key Package Receipt and Error Content
316
+ Types
317
+ - Added openType support for ORAddress Extension Attributes and
318
+ Algorithm Identifiers in the RFC5280 module
319
+ - Added RFC5035 providing Update to Enhanced Security Services for
320
+ S/MIME
321
+ - Added openType support for CMS Content Types and CMS Attributes
322
+ in the RFC5652 module
323
+ - Added openType support to RFC 2986 by importing definitions from
324
+ the RFC 5280 module so that the same maps are used.
325
+ - Added maps for use with openType to RFC 2634, RFC 3274, RFC 3709,
326
+ RFC 3779, RFC 4055, RFC 4073, RFC 4108, RFC 5035, RFC 5083, RFC 5480,
327
+ RFC 5940, RFC 5958, RFC 6010, RFC 6019, RFC 6402, RFC 7191, RFC 8226,
328
+ and RFC 8520
329
+ - Changed `ValueSizeConstraint` erroneously applied to `SequenceOf`
330
+ and `SetOf` objects via `subtypeConstraint` attribute to be applied
331
+ via `sizeSpec` attribute. Although `sizeSpec` takes the same constraint
332
+ objects as `subtypeConstraint`, the former is only verified on
333
+ de/serialization i.e. when the [constructed] object at hand is fully
334
+ populated, while the latter is applied to [scalar] types at the moment
335
+ of instantiation.
336
+
337
+ Revision 0.2.5, released 24-04-2019
338
+ -----------------------------------
339
+ - Added module RFC5958 providing Asymmetric Key Packages,
340
+ which is essentially version 2 of the PrivateKeyInfo
341
+ structure in PKCS#8 in RFC 5208
342
+ - Added module RFC8410 providing algorithm Identifiers for
343
+ Ed25519, Ed448, X25519, and X448
344
+ - Added module RFC8418 providing Elliptic Curve Diffie-Hellman
345
+ (ECDH) Key Agreement Algorithm with X25519 and X448
346
+ - Added module RFC3565 providing Elliptic Curve Diffie-Hellman
347
+ Key Agreement Algorithm use with X25519 and X448 in the
348
+ Cryptographic Message Syntax (CMS)
349
+ - Added module RFC4108 providing CMS Firmware Wrapper
350
+ - Added module RFC3779 providing X.509 Extensions for IP
351
+ Addresses and AS Identifiers
352
+ - Added module RFC4055 providing additional Algorithms and
353
+ Identifiers for RSA Cryptography for use in Certificates
354
+ and CRLs
355
+
356
+ Revision 0.2.4, released 26-01-2018
357
+ -----------------------------------
358
+ - Added modules for RFC8226 implementing JWT Claim Constraints
359
+ and TN Authorization List for X.509 certificate extensions
360
+ - Fixed bug in `rfc5280.AlgorithmIdentifier` ANY type definition
361
+
362
+ Revision 0.2.3, released 30-12-2018
363
+ -----------------------------------
364
+ - Added modules for RFC5083 and RFC5084 (CMS)
365
+ - Copyright notice extended to the year 2019
366
+
367
+ Revision 0.2.2, released 28-06-2018
368
+ -----------------------------------
369
+ - Copyright notice extended to the year 2018
370
+ - Migrated references from SourceForge
371
+ - rfc2986 module added
372
+
373
+ Revision 0.2.1, released 23-11-2017
374
+ -----------------------------------
375
+ - Allow ANY DEFINED BY objects expanding automatically if requested
376
+ - Imports PEP8'ed
377
+
378
+ Revision 0.1.5, released 10-10-2017
379
+ -----------------------------------
380
+ - OCSP response blob fixed in test
381
+ - Fixed wrong OCSP ResponderID components tagging
382
+
383
+ Revision 0.1.4, released 07-09-2017
384
+ -----------------------------------
385
+ - Typo fixed in the dependency spec
386
+
387
+ Revision 0.1.3, released 07-09-2017
388
+ -----------------------------------
389
+ - Apparently, pip>=1.5.6 is still widely used and it is not PEP440
390
+ compliant. Had to replace the `~=` version dependency spec with a
391
+ sequence of simple comparisons to remain compatible with the aging pip.
392
+
393
+ Revision 0.1.2, released 07-09-2017
394
+ -----------------------------------
395
+ - Pinned to pyasn1 ~0.3.4
396
+
397
+ Revision 0.1.1, released 27-08-2017
398
+ -----------------------------------
399
+ - Tests refactored into proper unit tests
400
+ - pem.readBase64fromText() convenience function added
401
+ - Pinned to pyasn1 0.3.3
402
+
403
+ Revision 0.0.11, released 04-08-2017
404
+ ------------------------------------
405
+ - Fixed typo in ASN.1 definitions at rfc2315.py
406
+
407
+ Revision 0.0.10, released 27-07-2017
408
+ ------------------------------------
409
+ * Fixed SequenceOf initializer to pass now-mandatory componentType
410
+ keyword argument (since pyasn1 0.3.1)
411
+ * Temporarily fixed recursive ASN.1 type definition to work with
412
+ pyasn1 0.3.1+. This is going to be fixed properly shortly.
413
+
414
+ Revision 0.0.9, released 01-06-2017
415
+ -----------------------------------
416
+ * More CRL data structures added (RFC3279)
417
+ * Added X.509 certificate extensions map
418
+ * Added X.509 attribute type map
419
+ * Fix to __doc__ use in setup.py to make -O0 installation mode working
420
+ * Copyright added to source files
421
+ * More PEP-8'ing done on the code
422
+ * Author's e-mail changed
423
+
424
+ Revision 0.0.8, released 28-09-2015
425
+ -----------------------------------
426
+ - Wheel distribution format now supported
427
+ - Fix to misspelled rfc2459.id_at_sutname variable
428
+ - Fix to misspelled rfc2459.NameConstraints component tag ID
429
+ - Fix to misspelled rfc2459.GeneralSubtree component default status
430
+
431
+ Revision 0.0.7, released 01-08-2015
432
+ -----------------------------------
433
+ - Extensions added to text files, CVS attic flushed.
434
+ - Fix to rfc2459.BasicConstraints syntax.
435
+
436
+ Revision 0.0.6, released 21-06-2015
437
+ -----------------------------------
438
+ - Typo fix to id_kp_serverAuth object value
439
+ - A test case for indefinite length encoding eliminated as it's
440
+ forbidden in DER.
441
+
442
+ Revision 0.0.5
443
+ --------------
444
+ - License updated to vanilla BSD 2-Clause to ease package use
445
+ (http://opensource.org/licenses/BSD-2-Clause).
446
+ - Missing components added to rfc4210.PKIBody.
447
+ - Fix to rfc2459.CRLDistPointsSyntax typo.
448
+ - Fix to rfc2511.CertReqMsg typo.
449
+
450
+ Revision 0.0.4
451
+ --------------
452
+ - CMP structures (RFC4210), cmpdump.py tool and test case added.
453
+ - SNMPv2c Message syntax (RFC1901) properly defined.
454
+ - Package version established in form of __init__.__version__
455
+ which is in-sync with distutils.
456
+ - Package meta information and classifiers updated.
457
+
458
+ Revision 0.0.3
459
+ --------------
460
+ - Text cases implemented
461
+ - X.509 CRMF structures (RFC2511) and crmfdump.py tool added
462
+ - X.509 CRL structures and crldump.py tool added
463
+ - PKCS#10 structures and pkcs10dump.py tool added
464
+ - PKCS#8 structures and pkcs8dump.py tool added
465
+ - PKCS#1 (rfc3447) structures added
466
+ - OCSP request & response dumping tool added
467
+ - SNMPv2c & SNMPv3/USM structures added
468
+ - keydump.py moved into pkcs1dump.py
469
+ - PEM files read function generalized to be used more universally.
470
+ - complete PKIX1 '88 code implemented at rfc2459.py
471
+
472
+ Revision 0.0.2
473
+ --------------
474
+ - Require pyasn1 >= 0.1.1
475
+ - Fixes towards Py3K compatibility
476
+ + use either of existing urllib module
477
+ + adopt to the new bytes type
478
+ + print operator is now a function
479
+ + new exception syntax
480
+
481
+ Revision 0.0.1a
482
+ ---------------
483
+ - Initial revision, most code carried from pyasn1 examples.
@@ -0,0 +1,25 @@
1
+ Copyright (c) 2005-2020, Ilya Etingof <etingof@gmail.com>
2
+ Copyright (c) 2021-2025, Vigil Security, LLC <housley@vigilsec.com>
3
+ All rights reserved.
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ * Redistributions of source code must retain the above copyright notice,
9
+ this list of conditions and the following disclaimer.
10
+
11
+ * Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
19
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25
+ POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,3 @@
1
+ include *.txt *.md
2
+ recursive-include tests *.py
3
+ prune doc/build
@@ -0,0 +1,70 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyasn1_alt_modules
3
+ Version: 0.4.7
4
+ Summary: An alternative collection of ASN.1-based protocol modules
5
+ Home-page: https://github.com/russhousley/pyasn1-alt-modules
6
+ Author: Russ Housley
7
+ Author-email: housley@vigilsec.com
8
+ Maintainer: Russ Housley
9
+ Maintainer-email: housley@vigilsec.com
10
+ License: BSD
11
+ Project-URL: Source, https://github.com/russhousley/pyasn1-alt-modules
12
+ Project-URL: Issues, https://github.com/russhousley/pyasn1-alt-modules/issues
13
+ Project-URL: Changelog, https://github.com/russhousley/pyasn1-alt-modules/blob/master/CHANGES.txt
14
+ Platform: any
15
+ Classifier: Development Status :: 5 - Production/Stable
16
+ Classifier: Environment :: Console
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: Intended Audience :: Education
19
+ Classifier: Intended Audience :: Information Technology
20
+ Classifier: Intended Audience :: System Administrators
21
+ Classifier: Intended Audience :: Telecommunications Industry
22
+ Classifier: Natural Language :: English
23
+ Classifier: Operating System :: OS Independent
24
+ Classifier: Programming Language :: Python :: 3
25
+ Classifier: Programming Language :: Python :: 3.10
26
+ Classifier: Programming Language :: Python :: 3.11
27
+ Classifier: Programming Language :: Python :: 3.12
28
+ Classifier: Programming Language :: Python :: 3.13
29
+ Classifier: Programming Language :: Python :: 3.14
30
+ Requires-Python: >=3.10
31
+ Description-Content-Type: text/markdown
32
+ License-File: LICENSE.txt
33
+ Requires-Dist: pyasn1>=0.6.0
34
+ Dynamic: license-file
35
+
36
+
37
+ Alternative ASN.1 modules for pyasn1
38
+ ------------------------------------
39
+ [![PyPI](https://img.shields.io/pypi/v/pyasn1-alt-modules.svg?maxAge=2592000)](https://pypi.org/project/pyasn1-alt-modules)
40
+ [![Python Versions](https://img.shields.io/pypi/pyversions/pyasn1-alt-modules.svg)](https://pypi.org/project/pyasn1-alt-modules/)
41
+ [![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/russhousley/pyasn1-alt-modules/master/LICENSE.txt)
42
+
43
+ The `pyasn1-alt-modules` package contains a collection of
44
+ [ASN.1](https://www.itu.int/rec/dologin_pub.asp?lang=e&id=T-REC-X.208-198811-W!!PDF-E&type=items)
45
+ data structures expressed as Python classes based on [pyasn1](https://github.com/pyasn1/pyasn1)
46
+ data model.
47
+
48
+ Many years ago, maintenance of [pyasn1-modules](https://github.com/etingof/pyasn1-modules)
49
+ stopped. As a result, the `pyasn1-alt-modules` package was created to share new
50
+ module developments. Previous modules are included in the `pyasn1-alt-modules`
51
+ package so that both packages do not need to be installed.
52
+
53
+ However, the tools directory of the `pyasn1-modules` package is not included in
54
+ the `pyasn1-alt-modules` package.
55
+
56
+ If ASN.1 module you need is not present in this collection, try using
57
+ [Asn1ate](https://github.com/kimgr/asn1ate) tool that compiles (some)
58
+ ASN.1 modules into pyasn1 code.
59
+
60
+ Feedback
61
+ --------
62
+
63
+ If something does not work as expected,
64
+ [open an issue](https://github.com/russhousley/pyasn1-alt-modules/issues) on GitHub.
65
+
66
+ Additional module contributions are welcome via GitHub pull requests.
67
+
68
+ Copyright (c) 2005-2020, Ilya Etingof (deceased).<br/>
69
+ Copyright (c) 2021-2025, Vigil Security, LLC, (contact [Russ Housley](mailto:housley@vigilsec.com))<br/>
70
+ All rights reserved.
@@ -0,0 +1,35 @@
1
+
2
+ Alternative ASN.1 modules for pyasn1
3
+ ------------------------------------
4
+ [![PyPI](https://img.shields.io/pypi/v/pyasn1-alt-modules.svg?maxAge=2592000)](https://pypi.org/project/pyasn1-alt-modules)
5
+ [![Python Versions](https://img.shields.io/pypi/pyversions/pyasn1-alt-modules.svg)](https://pypi.org/project/pyasn1-alt-modules/)
6
+ [![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/russhousley/pyasn1-alt-modules/master/LICENSE.txt)
7
+
8
+ The `pyasn1-alt-modules` package contains a collection of
9
+ [ASN.1](https://www.itu.int/rec/dologin_pub.asp?lang=e&id=T-REC-X.208-198811-W!!PDF-E&type=items)
10
+ data structures expressed as Python classes based on [pyasn1](https://github.com/pyasn1/pyasn1)
11
+ data model.
12
+
13
+ Many years ago, maintenance of [pyasn1-modules](https://github.com/etingof/pyasn1-modules)
14
+ stopped. As a result, the `pyasn1-alt-modules` package was created to share new
15
+ module developments. Previous modules are included in the `pyasn1-alt-modules`
16
+ package so that both packages do not need to be installed.
17
+
18
+ However, the tools directory of the `pyasn1-modules` package is not included in
19
+ the `pyasn1-alt-modules` package.
20
+
21
+ If ASN.1 module you need is not present in this collection, try using
22
+ [Asn1ate](https://github.com/kimgr/asn1ate) tool that compiles (some)
23
+ ASN.1 modules into pyasn1 code.
24
+
25
+ Feedback
26
+ --------
27
+
28
+ If something does not work as expected,
29
+ [open an issue](https://github.com/russhousley/pyasn1-alt-modules/issues) on GitHub.
30
+
31
+ Additional module contributions are welcome via GitHub pull requests.
32
+
33
+ Copyright (c) 2005-2020, Ilya Etingof (deceased).<br/>
34
+ Copyright (c) 2021-2025, Vigil Security, LLC, (contact [Russ Housley](mailto:housley@vigilsec.com))<br/>
35
+ All rights reserved.
@@ -0,0 +1,2 @@
1
+ # http://www.python.org/dev/peps/pep-0396/
2
+ __version__ = '0.4.7'
@@ -0,0 +1,19 @@
1
+ #
2
+ # This file is part of pyasn1-alt-modules software.
3
+ #
4
+ # This very simple manager for opentype maps allows various related
5
+ # ASN.1 modules to share the same maps.
6
+ #
7
+ # Created by Russ Housley
8
+ # Copyright (c) 2021-2025, Vigil Security, LLC
9
+ # License: http://vigilsec.com/pyasn1-alt-modules-license.txt
10
+ #
11
+
12
+ from collections import defaultdict
13
+
14
+ map_of_opentype_maps = defaultdict(dict)
15
+
16
+
17
+ def get (map_name):
18
+ """Get the named opentype map, creating an empty one if needed."""
19
+ return map_of_opentype_maps[map_name]