@peculiar/certificates-viewer 3.2.1 → 3.3.0

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 (106) hide show
  1. package/dist/cjs/{certification_request-cde57123.js → certification_request-e1997ebf.js} +563 -133
  2. package/dist/cjs/crl-f1ee43bc.js +312 -0
  3. package/dist/cjs/{index-ff818d4d.js → download-a97f4cb2.js} +106 -2
  4. package/dist/cjs/index.cjs.js +1 -3
  5. package/dist/cjs/l10n-638a7577.js +167 -0
  6. package/dist/cjs/loader.cjs.js +1 -1
  7. package/dist/cjs/{peculiar-attribute-certificate-viewer_2.cjs.entry.js → peculiar-attribute-certificate-viewer_3.cjs.entry.js} +123 -21
  8. package/dist/cjs/peculiar-certificate-decoder.cjs.entry.js +25 -15
  9. package/dist/cjs/peculiar-certificate-summary_3.cjs.entry.js +2 -2
  10. package/dist/cjs/peculiar-certificate-viewer.cjs.entry.js +6 -25
  11. package/dist/cjs/peculiar-certificates-viewer.cjs.entry.js +6 -8
  12. package/dist/cjs/peculiar.cjs.js +1 -1
  13. package/dist/cjs/{public_key-2f5bd471.js → public_key-ba538d77.js} +80 -40
  14. package/dist/cjs/{x509_certificate-51a97033.js → x509_certificate-42b478d2.js} +13 -7
  15. package/dist/collection/collection-manifest.json +1 -0
  16. package/dist/collection/components/certificate-decoder/certificate-decoder.js +19 -6
  17. package/dist/collection/components/certificate-viewer/attributes/type_relationship_attribute.js +2 -1
  18. package/dist/collection/components/certificate-viewer/basic_information.js +3 -1
  19. package/dist/collection/components/certificate-viewer/extensions/basic_constraints_extension.js +2 -1
  20. package/dist/collection/components/certificate-viewer/extensions/basic_extension.js +2 -1
  21. package/dist/collection/components/certificate-viewer/extensions/crl_number_extension.js +19 -0
  22. package/dist/collection/components/certificate-viewer/extensions/index.js +9 -1
  23. package/dist/collection/components/certificate-viewer/extensions/issuing_distribution_point_extension.js +27 -0
  24. package/dist/collection/components/certificate-viewer/extensions/timestamp_extension.js +2 -1
  25. package/dist/collection/components/certificate-viewer/miscellaneous.js +2 -20
  26. package/dist/collection/components/certificates-viewer/certificates-viewer.js +2 -3
  27. package/dist/collection/components/crl-viewer/crl-viewer.js +234 -0
  28. package/dist/collection/components/crl-viewer/revoked_certificates.js +27 -0
  29. package/dist/collection/crypto/crl.js +82 -0
  30. package/dist/collection/crypto/csr.js +7 -0
  31. package/dist/collection/crypto/extension.js +10 -1
  32. package/dist/collection/crypto/index.js +1 -0
  33. package/dist/collection/crypto/x509_attribute_certificate.js +7 -1
  34. package/dist/collection/crypto/x509_certificate.js +7 -1
  35. package/dist/collection/locales/en.json +12 -1
  36. package/dist/collection/utils/download.js +18 -2
  37. package/dist/collection/utils/index.js +1 -0
  38. package/dist/collection/utils/validator.js +2 -0
  39. package/dist/esm/{certification_request-c0674647.js → certification_request-5d982d92.js} +493 -66
  40. package/dist/esm/crl-f2110716.js +308 -0
  41. package/dist/esm/{index-0ba131b0.js → download-67ac9120.js} +102 -2
  42. package/dist/esm/index.js +1 -3
  43. package/dist/esm/{l10n-ac28fa92.js → l10n-da0dd100.js} +24 -2
  44. package/dist/esm/loader.js +1 -1
  45. package/dist/esm/{peculiar-attribute-certificate-viewer_2.entry.js → peculiar-attribute-certificate-viewer_3.entry.js} +113 -12
  46. package/dist/esm/peculiar-certificate-decoder.entry.js +21 -11
  47. package/dist/esm/peculiar-certificate-summary_3.entry.js +2 -2
  48. package/dist/esm/peculiar-certificate-viewer.entry.js +6 -25
  49. package/dist/esm/peculiar-certificates-viewer.entry.js +6 -8
  50. package/dist/esm/peculiar.js +1 -1
  51. package/dist/esm/{public_key-38c9ddc8.js → public_key-0a3091a5.js} +67 -28
  52. package/dist/esm/{x509_certificate-12f6d344.js → x509_certificate-6b243207.js} +9 -3
  53. package/dist/peculiar/index.esm.js +1 -1
  54. package/dist/peculiar/locales/en.json +12 -1
  55. package/dist/peculiar/p-34e2d6be.entry.js +11 -0
  56. package/dist/peculiar/p-35e7a514.js +12 -0
  57. package/dist/peculiar/p-3aea9dde.js +32 -0
  58. package/dist/peculiar/{p-38635919.entry.js → p-49ab6f8c.entry.js} +1 -1
  59. package/dist/peculiar/p-86116b1f.entry.js +4 -0
  60. package/dist/peculiar/{p-464e0943.js → p-bce2bbe0.js} +9 -9
  61. package/dist/peculiar/p-ca0c34ca.entry.js +26 -0
  62. package/dist/peculiar/p-cff9655c.js +18 -0
  63. package/dist/peculiar/{p-17c4da7b.js → p-db6e24c6.js} +2 -2
  64. package/dist/peculiar/p-e535a666.entry.js +4 -0
  65. package/dist/peculiar/p-f8dc3232.js +63 -0
  66. package/dist/peculiar/peculiar.esm.js +1 -1
  67. package/dist/types/components/certificate-decoder/certificate-decoder.d.ts +3 -3
  68. package/dist/types/components/certificate-viewer/basic_information.d.ts +2 -0
  69. package/dist/types/components/certificate-viewer/extensions/crl_number_extension.d.ts +15 -0
  70. package/dist/types/components/certificate-viewer/extensions/issuing_distribution_point_extension.d.ts +15 -0
  71. package/dist/types/components/certificate-viewer/miscellaneous.d.ts +2 -2
  72. package/dist/types/components/certificate-viewer/row.d.ts +1 -1
  73. package/dist/types/components/crl-viewer/crl-viewer.d.ts +59 -0
  74. package/dist/types/components/crl-viewer/revoked_certificates.d.ts +14 -0
  75. package/dist/types/components.d.ts +66 -0
  76. package/dist/types/crypto/crl.d.ts +28 -0
  77. package/dist/types/crypto/csr.d.ts +2 -0
  78. package/dist/types/crypto/extension.d.ts +2 -2
  79. package/dist/types/crypto/index.d.ts +1 -0
  80. package/dist/types/crypto/x509_attribute_certificate.d.ts +2 -0
  81. package/dist/types/crypto/x509_certificate.d.ts +2 -0
  82. package/dist/types/utils/download.d.ts +10 -2
  83. package/dist/types/utils/index.d.ts +1 -0
  84. package/dist/types/utils/l10n.d.ts +11 -0
  85. package/dist/types/utils/validator.d.ts +1 -0
  86. package/package.json +19 -19
  87. package/dist/cjs/_commonjsHelpers-cb1f949a.js +0 -23
  88. package/dist/cjs/csr-78378ed0.js +0 -150
  89. package/dist/cjs/download-6724f3a7.js +0 -79
  90. package/dist/cjs/l10n-a048a686.js +0 -145
  91. package/dist/cjs/x509_attribute_certificate-cc325b70.js +0 -87
  92. package/dist/esm/_commonjsHelpers-bfbd2ad8.js +0 -20
  93. package/dist/esm/csr-c1b6a176.js +0 -147
  94. package/dist/esm/download-735fb2eb.js +0 -76
  95. package/dist/esm/x509_attribute_certificate-a6d4aa15.js +0 -85
  96. package/dist/peculiar/p-006865d7.js +0 -4
  97. package/dist/peculiar/p-3f8d1008.entry.js +0 -4
  98. package/dist/peculiar/p-42da7f97.js +0 -11
  99. package/dist/peculiar/p-4f4c1d30.js +0 -12
  100. package/dist/peculiar/p-6011646e.entry.js +0 -11
  101. package/dist/peculiar/p-6bfd077c.entry.js +0 -18
  102. package/dist/peculiar/p-6c510523.js +0 -18
  103. package/dist/peculiar/p-986cc770.entry.js +0 -11
  104. package/dist/peculiar/p-b765873e.js +0 -78
  105. package/dist/peculiar/p-d0b55fbb.js +0 -4
  106. package/dist/peculiar/p-d7a13cb4.js +0 -18
@@ -1,18 +1,18 @@
1
1
  /*!
2
2
  * © Peculiar Ventures https://peculiarventures.com/ - MIT License
3
3
  */
4
- import{b as t}from"./p-006865d7.js";import"./p-4f4c1d30.js";import{c as e,a as i}from"./p-d0b55fbb.js";
4
+ import{b as t,c as e,a as i}from"./p-cff9655c.js";import"./p-35e7a514.js";
5
5
  /**
6
6
  * @license
7
7
  * Copyright (c) Peculiar Ventures, LLC.
8
8
  *
9
9
  * This source code is licensed under the MIT license found in the
10
10
  * LICENSE file in the root directory of this source tree.
11
- */const r=t=>/-----BEGIN [^-]+-----([A-Za-z0-9+\/=\s]+)-----END [^-]+-----|begin-base64[^\n]+\n([A-Za-z0-9+\/=\s]+)====/.test(t),s=t=>/-----BEGIN CERTIFICATE-----([A-Za-z0-9+\/=\s]+)-----END CERTIFICATE-----/.test(t),n=t=>/-----BEGIN CERTIFICATE REQUEST-----([A-Za-z0-9+\/=\s]+)-----END CERTIFICATE REQUEST-----/.test(t),o=t=>/-----BEGIN ATTRIBUTE CERTIFICATE-----([A-Za-z0-9+\/=\s]+)-----END ATTRIBUTE CERTIFICATE-----/.test(t);
11
+ */const r=t=>/-----BEGIN [^-]+-----([A-Za-z0-9+\/=\s]+)-----END [^-]+-----|begin-base64[^\n]+\n([A-Za-z0-9+\/=\s]+)====/.test(t),s=t=>/-----BEGIN CERTIFICATE-----([A-Za-z0-9+\/=\s]+)-----END CERTIFICATE-----/.test(t),n=t=>/-----BEGIN X509 CRL-----([A-Za-z0-9+\/=\s]+)-----END X509 CRL-----/.test(t),o=t=>/-----BEGIN CERTIFICATE REQUEST-----([A-Za-z0-9+\/=\s]+)-----END CERTIFICATE REQUEST-----/.test(t),a=t=>/-----BEGIN ATTRIBUTE CERTIFICATE-----([A-Za-z0-9+\/=\s]+)-----END ATTRIBUTE CERTIFICATE-----/.test(t);
12
12
  /*!
13
13
  Copyright (c) Peculiar Ventures, LLC
14
14
  */
15
- function a(t,e){let i=0;if(1===t.length)return t[0];for(let r=t.length-1;r>=0;r--)i+=t[t.length-1-r]*Math.pow(2,e*r);return i}function c(t,e,i=-1){const r=i;let s=t,n=0,o=Math.pow(2,e);for(let i=1;i<8;i++){if(t<o){let t;if(r<0)t=new ArrayBuffer(i),n=i;else{if(r<i)return new ArrayBuffer(0);t=new ArrayBuffer(r),n=r}const o=new Uint8Array(t);for(let t=i-1;t>=0;t--){const i=Math.pow(2,t*e);o[n-t-1]=Math.floor(s/i),s-=o[n-t-1]*i}return t}o*=Math.pow(2,e)}return new ArrayBuffer(0)}function l(...t){let e=0,i=0;for(const i of t)e+=i.length;const r=new ArrayBuffer(e),s=new Uint8Array(r);for(const e of t)s.set(e,i),i+=e.length;return s}function u(){const t=new Uint8Array(this.valueHex);if(this.valueHex.byteLength>=2){const e=0===t[0]&&0==(128&t[1]);(255===t[0]&&128&t[1]||e)&&this.warnings.push("Needlessly long format")}const e=new ArrayBuffer(this.valueHex.byteLength),i=new Uint8Array(e);for(let t=0;t<this.valueHex.byteLength;t++)i[t]=0;i[0]=128&t[0];const r=a(i,8),s=new ArrayBuffer(this.valueHex.byteLength),n=new Uint8Array(s);for(let e=0;e<this.valueHex.byteLength;e++)n[e]=t[e];return n[0]&=127,a(n,8)-r}function h(t,e){const i=t.toString(10);if(e<i.length)return"";const r=e-i.length,s=new Array(r);for(let t=0;t<r;t++)s[t]="0";return s.join("").concat(i)}
15
+ function c(t,e){let i=0;if(1===t.length)return t[0];for(let r=t.length-1;r>=0;r--)i+=t[t.length-1-r]*Math.pow(2,e*r);return i}function l(t,e,i=-1){const r=i;let s=t,n=0,o=Math.pow(2,e);for(let i=1;i<8;i++){if(t<o){let t;if(r<0)t=new ArrayBuffer(i),n=i;else{if(r<i)return new ArrayBuffer(0);t=new ArrayBuffer(r),n=r}const o=new Uint8Array(t);for(let t=i-1;t>=0;t--){const i=Math.pow(2,t*e);o[n-t-1]=Math.floor(s/i),s-=o[n-t-1]*i}return t}o*=Math.pow(2,e)}return new ArrayBuffer(0)}function u(...t){let e=0,i=0;for(const i of t)e+=i.length;const r=new ArrayBuffer(e),s=new Uint8Array(r);for(const e of t)s.set(e,i),i+=e.length;return s}function h(){const t=new Uint8Array(this.valueHex);if(this.valueHex.byteLength>=2){const e=0===t[0]&&0==(128&t[1]);(255===t[0]&&128&t[1]||e)&&this.warnings.push("Needlessly long format")}const e=new ArrayBuffer(this.valueHex.byteLength),i=new Uint8Array(e);for(let t=0;t<this.valueHex.byteLength;t++)i[t]=0;i[0]=128&t[0];const r=c(i,8),s=new ArrayBuffer(this.valueHex.byteLength),n=new Uint8Array(s);for(let e=0;e<this.valueHex.byteLength;e++)n[e]=t[e];return n[0]&=127,c(n,8)-r}function p(t,e){const i=t.toString(10);if(e<i.length)return"";const r=e-i.length,s=new Array(r);for(let t=0;t<r;t++)s[t]="0";return s.join("").concat(i)}
16
16
  /*!
17
17
  * Copyright (c) 2014, GMO GlobalSign
18
18
  * Copyright (c) 2015-2022, Peculiar Ventures
@@ -45,7 +45,7 @@ function a(t,e){let i=0;if(1===t.length)return t[0];for(let r=t.length-1;r>=0;r-
45
45
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
46
46
  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
47
47
  *
48
- */function p(){if("undefined"==typeof BigInt)throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function d(t){let e=0,i=0;for(let i=0;i<t.length;i++)e+=t[i].byteLength;const r=new Uint8Array(e);for(let e=0;e<t.length;e++){const s=t[e];r.set(new Uint8Array(s),i),i+=s.byteLength}return r.buffer}function f(t,e,i,r){return e instanceof Uint8Array?e.byteLength?i<0?(t.error="Wrong parameter: inputOffset less than zero",!1):r<0?(t.error="Wrong parameter: inputLength less than zero",!1):!(e.byteLength-i-r<0&&(t.error="End of input reached before message was fully decoded (inconsistent offset and length values)",1)):(t.error="Wrong parameter: inputBuffer has zero length",!1):(t.error="Wrong parameter: inputBuffer must be 'Uint8Array'",!1)}class y{constructor(){this.items=[]}write(t){this.items.push(t)}final(){return d(this.items)}}const S=[new Uint8Array([1])],C=new ArrayBuffer(0),A=new Uint8Array(0);function m(e){var i;return(i=class extends e{constructor(...e){var i;super(...e);const r=e[0]||{};this.isHexOnly=null!==(i=r.isHexOnly)&&void 0!==i&&i,this.valueHexView=r.valueHex?t.BufferSourceConverter.toUint8Array(r.valueHex):A}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(t){this.valueHexView=new Uint8Array(t)}fromBER(t,e,i){const r=t instanceof ArrayBuffer?new Uint8Array(t):t;if(!f(this,r,e,i))return-1;const s=e+i;return this.valueHexView=r.subarray(e,s),this.valueHexView.length?(this.blockLength=i,s):(this.warnings.push("Zero buffer length"),e)}toBER(t=!1){return this.isHexOnly?t?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.byteLength===this.valueHexView.buffer.byteLength?this.valueHexView.buffer:this.valueHexView.slice().buffer:(this.error="Flag 'isHexOnly' is not set, abort",C)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:t.Convert.ToHex(this.valueHexView)}}}).NAME="hexBlock",i}class g{constructor({blockLength:e=0,error:i="",warnings:r=[],valueBeforeDecode:s=A}={}){this.blockLength=e,this.error=i,this.warnings=r,this.valueBeforeDecodeView=t.BufferSourceConverter.toUint8Array(s)}static blockName(){return this.NAME}get valueBeforeDecode(){return this.valueBeforeDecodeView.slice().buffer}set valueBeforeDecode(t){this.valueBeforeDecodeView=new Uint8Array(t)}toJSON(){return{blockName:this.constructor.NAME,blockLength:this.blockLength,error:this.error,warnings:this.warnings,valueBeforeDecode:t.Convert.ToHex(this.valueBeforeDecodeView)}}}g.NAME="baseBlock";class v extends g{fromBER(t,e,i){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}toBER(t,e){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}}v.NAME="valueBlock";class E extends(m(g)){constructor({idBlock:e={}}={}){var i,r,s,n;super(),e?(this.isHexOnly=null!==(i=e.isHexOnly)&&void 0!==i&&i,this.valueHexView=e.valueHex?t.BufferSourceConverter.toUint8Array(e.valueHex):A,this.tagClass=null!==(r=e.tagClass)&&void 0!==r?r:-1,this.tagNumber=null!==(s=e.tagNumber)&&void 0!==s?s:-1,this.isConstructed=null!==(n=e.isConstructed)&&void 0!==n&&n):(this.tagClass=-1,this.tagNumber=-1,this.isConstructed=!1)}toBER(t=!1){let e=0;switch(this.tagClass){case 1:e|=0;break;case 2:e|=64;break;case 3:e|=128;break;case 4:e|=192;break;default:return this.error="Unknown tag class",C}if(this.isConstructed&&(e|=32),this.tagNumber<31&&!this.isHexOnly){const i=new Uint8Array(1);if(!t){let t=this.tagNumber;t&=31,e|=t,i[0]=e}return i.buffer}if(!this.isHexOnly){const i=c(this.tagNumber,7),r=new Uint8Array(i),s=i.byteLength,n=new Uint8Array(s+1);if(n[0]=31|e,!t){for(let t=0;t<s-1;t++)n[t+1]=128|r[t];n[s]=r[s-1]}return n.buffer}const i=new Uint8Array(this.valueHexView.byteLength+1);if(i[0]=31|e,!t){const t=this.valueHexView;for(let e=0;e<t.length-1;e++)i[e+1]=128|t[e];i[this.valueHexView.byteLength]=t[t.length-1]}return i.buffer}fromBER(e,i,r){const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;const n=s.subarray(i,i+r);if(0===n.length)return this.error="Zero buffer length",-1;switch(192&n[0]){case 0:this.tagClass=1;break;case 64:this.tagClass=2;break;case 128:this.tagClass=3;break;case 192:this.tagClass=4;break;default:return this.error="Unknown tag class",-1}this.isConstructed=32==(32&n[0]),this.isHexOnly=!1;const o=31&n[0];if(31!==o)this.tagNumber=o,this.blockLength=1;else{let t=1,e=this.valueHexView=new Uint8Array(255),i=255;for(;128&n[t];){if(e[t-1]=127&n[t],t++,t>=n.length)return this.error="End of input reached before message was fully decoded",-1;if(t===i){i+=255;const t=new Uint8Array(i);for(let i=0;i<e.length;i++)t[i]=e[i];e=this.valueHexView=new Uint8Array(i)}}this.blockLength=t+1,e[t-1]=127&n[t];const r=new Uint8Array(t);for(let i=0;i<t;i++)r[i]=e[i];e=this.valueHexView=new Uint8Array(t),e.set(r),this.blockLength<=9?this.tagNumber=a(e,7):(this.isHexOnly=!0,this.warnings.push("Tag too long, represented as hex-coded"))}if(1===this.tagClass&&this.isConstructed)switch(this.tagNumber){case 1:case 2:case 5:case 6:case 9:case 13:case 14:case 23:case 24:case 31:case 32:case 33:case 34:return this.error="Constructed encoding used for primitive type",-1}return i+this.blockLength}toJSON(){return{...super.toJSON(),tagClass:this.tagClass,tagNumber:this.tagNumber,isConstructed:this.isConstructed}}}E.NAME="identificationBlock";class w extends g{constructor({lenBlock:t={}}={}){var e,i,r;super(),this.isIndefiniteForm=null!==(e=t.isIndefiniteForm)&&void 0!==e&&e,this.longFormUsed=null!==(i=t.longFormUsed)&&void 0!==i&&i,this.length=null!==(r=t.length)&&void 0!==r?r:0}fromBER(e,i,r){const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;const n=s.subarray(i,i+r);if(0===n.length)return this.error="Zero buffer length",-1;if(255===n[0])return this.error="Length block 0xFF is reserved by standard",-1;if(this.isIndefiniteForm=128===n[0],this.isIndefiniteForm)return this.blockLength=1,i+this.blockLength;if(this.longFormUsed=!!(128&n[0]),!1===this.longFormUsed)return this.length=n[0],this.blockLength=1,i+this.blockLength;const o=127&n[0];if(o>8)return this.error="Too big integer",-1;if(o+1>n.length)return this.error="End of input reached before message was fully decoded",-1;const c=i+1,l=s.subarray(c,c+o);return 0===l[o-1]&&this.warnings.push("Needlessly long encoded length"),this.length=a(l,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=o+1,i+this.blockLength}toBER(t=!1){let e,i;if(this.length>127&&(this.longFormUsed=!0),this.isIndefiniteForm)return e=new ArrayBuffer(1),!1===t&&(i=new Uint8Array(e),i[0]=128),e;if(this.longFormUsed){const r=c(this.length,8);if(r.byteLength>127)return this.error="Too big length",C;if(e=new ArrayBuffer(r.byteLength+1),t)return e;const s=new Uint8Array(r);i=new Uint8Array(e),i[0]=128|r.byteLength;for(let t=0;t<r.byteLength;t++)i[t+1]=s[t];return e}return e=new ArrayBuffer(1),!1===t&&(i=new Uint8Array(e),i[0]=this.length),e}toJSON(){return{...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,longFormUsed:this.longFormUsed,length:this.length}}}w.NAME="lengthBlock";const P={};class D extends g{constructor({name:t="",optional:e=!1,primitiveSchema:i,...r}={},s){super(r),this.name=t,this.optional=e,i&&(this.primitiveSchema=i),this.idBlock=new E(r),this.lenBlock=new w(r),this.valueBlock=s?new s(r):new v(r)}fromBER(t,e,i){const r=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?i:this.lenBlock.length);return-1===r?(this.error=this.valueBlock.error,r):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),r)}toBER(t,e){const i=e||new y;e||b(this);const r=this.idBlock.toBER(t);if(i.write(r),this.lenBlock.isIndefiniteForm)i.write(new Uint8Array([128]).buffer),this.valueBlock.toBER(t,i),i.write(new ArrayBuffer(2));else{const e=this.valueBlock.toBER(t);this.lenBlock.length=e.byteLength;const r=this.lenBlock.toBER(t);i.write(r),i.write(e)}return e?C:i.final()}toJSON(){const t={...super.toJSON(),idBlock:this.idBlock.toJSON(),lenBlock:this.lenBlock.toJSON(),valueBlock:this.valueBlock.toJSON(),name:this.name,optional:this.optional};return this.primitiveSchema&&(t.primitiveSchema=this.primitiveSchema.toJSON()),t}toString(e="ascii"){return"ascii"===e?this.onAsciiEncoding():t.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${t.Convert.ToHex(this.valueBlock.valueBeforeDecodeView)}`}isEqual(t){return this===t||t instanceof this.constructor&&function(t,e){if(t.byteLength!==e.byteLength)return!1;const i=new Uint8Array(t),r=new Uint8Array(e);for(let t=0;t<i.length;t++)if(i[t]!==r[t])return!1;return!0}(this.toBER(),t.toBER())}}function b(t){if(t instanceof P.Constructed)for(const e of t.valueBlock.value)b(e)&&(t.lenBlock.isIndefiniteForm=!0);return!!t.lenBlock.isIndefiniteForm}D.NAME="BaseBlock";class B extends D{constructor({value:t="",...e}={},i){super(e,i),t&&this.fromString(t)}getValue(){return this.valueBlock.value}setValue(t){this.valueBlock.value=t}fromBER(t,e,i){const r=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?i:this.lenBlock.length);return-1===r?(this.error=this.valueBlock.error,r):(this.fromBuffer(this.valueBlock.valueHexView),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),r)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}}B.NAME="BaseStringBlock";class I extends(m(v)){constructor({isHexOnly:t=!0,...e}={}){super(e),this.isHexOnly=t}}var T;I.NAME="PrimitiveValueBlock";class x extends D{constructor(t={}){super(t,I),this.idBlock.isConstructed=!1}}function R(t,e=0,i=t.length){const r=e;let s=new D({},v);const n=new g;if(!f(n,t,e,i))return s.error=n.error,{offset:-1,result:s};if(!t.subarray(e,e+i).length)return s.error="Zero buffer length",{offset:-1,result:s};let o=s.idBlock.fromBER(t,e,i);if(s.idBlock.warnings.length&&s.warnings.concat(s.idBlock.warnings),-1===o)return s.error=s.idBlock.error,{offset:-1,result:s};if(o=s.lenBlock.fromBER(t,e=o,i-=s.idBlock.blockLength),s.lenBlock.warnings.length&&s.warnings.concat(s.lenBlock.warnings),-1===o)return s.error=s.lenBlock.error,{offset:-1,result:s};if(e=o,i-=s.lenBlock.blockLength,!s.idBlock.isConstructed&&s.lenBlock.isIndefiniteForm)return s.error="Indefinite length form used for primitive encoding form",{offset:-1,result:s};let a=D;switch(s.idBlock.tagClass){case 1:if(s.idBlock.tagNumber>=37&&!1===s.idBlock.isHexOnly)return s.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:s};switch(s.idBlock.tagNumber){case 0:if(s.idBlock.isConstructed&&s.lenBlock.length>0)return s.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:s};a=P.EndOfContent;break;case 1:a=P.Boolean;break;case 2:a=P.Integer;break;case 3:a=P.BitString;break;case 4:a=P.OctetString;break;case 5:a=P.Null;break;case 6:a=P.ObjectIdentifier;break;case 10:a=P.Enumerated;break;case 12:a=P.Utf8String;break;case 13:a=P.RelativeObjectIdentifier;break;case 14:a=P.TIME;break;case 15:return s.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:s};case 16:a=P.Sequence;break;case 17:a=P.Set;break;case 18:a=P.NumericString;break;case 19:a=P.PrintableString;break;case 20:a=P.TeletexString;break;case 21:a=P.VideotexString;break;case 22:a=P.IA5String;break;case 23:a=P.UTCTime;break;case 24:a=P.GeneralizedTime;break;case 25:a=P.GraphicString;break;case 26:a=P.VisibleString;break;case 27:a=P.GeneralString;break;case 28:a=P.UniversalString;break;case 29:a=P.CharacterString;break;case 30:a=P.BmpString;break;case 31:a=P.DATE;break;case 32:a=P.TimeOfDay;break;case 33:a=P.DateTime;break;case 34:a=P.Duration;break;default:{const t=s.idBlock.isConstructed?new P.Constructed:new P.Primitive;t.idBlock=s.idBlock,t.lenBlock=s.lenBlock,t.warnings=s.warnings,s=t}}break;case 2:case 3:case 4:default:a=s.idBlock.isConstructed?P.Constructed:P.Primitive}return s=function(t,e){if(t instanceof e)return t;const i=new e;return i.idBlock=t.idBlock,i.lenBlock=t.lenBlock,i.warnings=t.warnings,i.valueBeforeDecodeView=t.valueBeforeDecodeView,i}(s,a),o=s.fromBER(t,e,s.lenBlock.isIndefiniteForm?i:s.lenBlock.length),s.valueBeforeDecodeView=t.subarray(r,r+s.blockLength),{offset:o,result:s}}function O(e){if(!e.byteLength){const t=new D({},v);return t.error="Input buffer has zero length",{offset:-1,result:t}}return R(t.BufferSourceConverter.toUint8Array(e).slice(),0,e.byteLength)}P.Primitive=x,x.NAME="PRIMITIVE";class N extends v{constructor({value:t=[],isIndefiniteForm:e=!1,...i}={}){super(i),this.value=t,this.isIndefiniteForm=e}fromBER(e,i,r){const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;if(this.valueBeforeDecodeView=s.subarray(i,i+r),0===this.valueBeforeDecodeView.length)return this.warnings.push("Zero buffer length"),i;let n=i;for(;(this.isIndefiniteForm?1:r)>0;){const t=R(s,n,r);if(-1===t.offset)return this.error=t.result.error,this.warnings.concat(t.result.warnings),-1;if(n=t.offset,this.blockLength+=t.result.blockLength,r-=t.result.blockLength,this.value.push(t.result),this.isIndefiniteForm&&"EndOfContent"===t.result.constructor.NAME)break}return this.isIndefiniteForm&&("EndOfContent"===this.value[this.value.length-1].constructor.NAME?this.value.pop():this.warnings.push("No EndOfContent block encoded")),n}toBER(t,e){const i=e||new y;for(let e=0;e<this.value.length;e++)this.value[e].toBER(t,i);return e?C:i.final()}toJSON(){const t={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(const e of this.value)t.value.push(e.toJSON());return t}}N.NAME="ConstructedValueBlock";class M extends D{constructor(t={}){super(t,N),this.idBlock.isConstructed=!0}fromBER(t,e,i){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;const r=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?i:this.lenBlock.length);return-1===r?(this.error=this.valueBlock.error,r):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),r)}onAsciiEncoding(){const t=[];for(const e of this.valueBlock.value)t.push(e.toString("ascii").split("\n").map((t=>` ${t}`)).join("\n"));const e=3===this.idBlock.tagClass?`[${this.idBlock.tagNumber}]`:this.constructor.NAME;return t.length?`${e} :\n${t.join("\n")}`:`${e} :`}}P.Constructed=M,M.NAME="CONSTRUCTED";class k extends v{fromBER(t,e,i){return e}toBER(t){return C}}k.override="EndOfContentValueBlock";class K extends D{constructor(t={}){super(t,k),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}}P.EndOfContent=K,K.NAME="EndOfContent";class H extends D{constructor(t={}){super(t,v),this.idBlock.tagClass=1,this.idBlock.tagNumber=5}fromBER(t,e,i){return this.lenBlock.length>0&&this.warnings.push("Non-zero length of value block for Null type"),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.blockLength+=i,e+i>t.byteLength?(this.error="End of input reached before message was fully decoded (inconsistent offset and length values)",-1):e+i}toBER(t,e){const i=new ArrayBuffer(2);if(!t){const t=new Uint8Array(i);t[0]=5,t[1]=0}return e&&e.write(i),i}onAsciiEncoding(){return`${this.constructor.NAME}`}}P.Null=H,H.NAME="NULL";class j extends(m(v)){constructor({value:e,...i}={}){super(i),this.valueHexView=i.valueHex?t.BufferSourceConverter.toUint8Array(i.valueHex):new Uint8Array(1),e&&(this.value=e)}get value(){for(const t of this.valueHexView)if(t>0)return!0;return!1}set value(t){this.valueHexView[0]=t?255:0}fromBER(e,i,r){const s=t.BufferSourceConverter.toUint8Array(e);return f(this,s,i,r)?(this.valueHexView=s.subarray(i,i+r),r>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,u.call(this),this.blockLength=r,i+r):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}}j.NAME="BooleanValueBlock";class _ extends D{constructor(t={}){super(t,j),this.idBlock.tagClass=1,this.idBlock.tagNumber=1}getValue(){return this.valueBlock.value}setValue(t){this.valueBlock.value=t}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.getValue}`}}P.Boolean=_,_.NAME="BOOLEAN";class U extends(m(N)){constructor({isConstructed:t=!1,...e}={}){super(e),this.isConstructed=t}fromBER(t,e,i){let r=0;if(this.isConstructed){if(this.isHexOnly=!1,r=N.prototype.fromBER.call(this,t,e,i),-1===r)return r;for(let t=0;t<this.value.length;t++){const e=this.value[t].constructor.NAME;if("EndOfContent"===e){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if("OCTET STRING"!==e)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,r=super.fromBER(t,e,i),this.blockLength=i;return r}toBER(t,e){return this.isConstructed?N.prototype.toBER.call(this,t,e):t?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}}U.NAME="OctetStringValueBlock";class F extends D{constructor({idBlock:t={},lenBlock:e={},...i}={}){var r,s;null!==(r=i.isConstructed)&&void 0!==r||(i.isConstructed=!!(null===(s=i.value)||void 0===s?void 0:s.length)),super({idBlock:{isConstructed:i.isConstructed,...t},lenBlock:{...e,isIndefiniteForm:!!i.isIndefiniteForm},...i},U),this.idBlock.tagClass=1,this.idBlock.tagNumber=4}fromBER(t,e,i){if(this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,0===i)return 0===this.idBlock.error.length&&(this.blockLength+=this.idBlock.blockLength),0===this.lenBlock.error.length&&(this.blockLength+=this.lenBlock.blockLength),e;if(!this.valueBlock.isConstructed){const r=(t instanceof ArrayBuffer?new Uint8Array(t):t).subarray(e,e+i);try{if(r.byteLength){const t=R(r,0,r.byteLength);-1!==t.offset&&t.offset===i&&(this.valueBlock.value=[t.result])}}catch(t){}}return super.fromBER(t,e,i)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?M.prototype.onAsciiEncoding.call(this):`${this.constructor.NAME} : ${t.Convert.ToHex(this.valueBlock.valueHexView)}`}getValue(){if(!this.idBlock.isConstructed)return this.valueBlock.valueHexView.slice().buffer;const e=[];for(const t of this.valueBlock.value)t instanceof F&&e.push(t.valueBlock.valueHexView);return t.BufferSourceConverter.concat(e)}}P.OctetString=F,F.NAME="OCTET STRING";class V extends(m(N)){constructor({unusedBits:t=0,isConstructed:e=!1,...i}={}){super(i),this.unusedBits=t,this.isConstructed=e,this.blockLength=this.valueHexView.byteLength}fromBER(e,i,r){if(!r)return i;let s=-1;if(this.isConstructed){if(s=N.prototype.fromBER.call(this,e,i,r),-1===s)return s;for(const t of this.value){const e=t.constructor.NAME;if("EndOfContent"===e){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if("BIT STRING"!==e)return this.error="BIT STRING may consists of BIT STRINGs only",-1;const i=t.valueBlock;if(this.unusedBits>0&&i.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=i.unusedBits}return s}const n=t.BufferSourceConverter.toUint8Array(e);if(!f(this,n,i,r))return-1;const o=n.subarray(i,i+r);if(this.unusedBits=o[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){const t=o.subarray(1);try{if(t.byteLength){const e=R(t,0,t.byteLength);-1!==e.offset&&e.offset===r-1&&(this.value=[e.result])}}catch(t){}}return this.valueHexView=o.subarray(1),this.blockLength=o.length,i+r}toBER(t,e){if(this.isConstructed)return N.prototype.toBER.call(this,t,e);if(t)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return C;const i=new Uint8Array(this.valueHexView.length+1);return i[0]=this.unusedBits,i.set(this.valueHexView,1),i.buffer}toJSON(){return{...super.toJSON(),unusedBits:this.unusedBits,isConstructed:this.isConstructed}}}V.NAME="BitStringValueBlock";class L extends D{constructor({idBlock:t={},lenBlock:e={},...i}={}){var r,s;null!==(r=i.isConstructed)&&void 0!==r||(i.isConstructed=!!(null===(s=i.value)||void 0===s?void 0:s.length)),super({idBlock:{isConstructed:i.isConstructed,...t},lenBlock:{...e,isIndefiniteForm:!!i.isIndefiniteForm},...i},V),this.idBlock.tagClass=1,this.idBlock.tagNumber=3}fromBER(t,e,i){return this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,super.fromBER(t,e,i)}onAsciiEncoding(){if(this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length)return M.prototype.onAsciiEncoding.call(this);{const t=[],e=this.valueBlock.valueHexView;for(const i of e)t.push(i.toString(2).padStart(8,"0"));const i=t.join("");return`${this.constructor.NAME} : ${i.substring(0,i.length-this.valueBlock.unusedBits)}`}}}function G(t,e){const i=new Uint8Array([0]),r=new Uint8Array(t),s=new Uint8Array(e);let n=r.slice(0);const o=n.length-1,a=s.slice(0),c=a.length-1;let u=0,h=0;for(let t=c<o?o:c;t>=0;t--,h++){switch(!0){case h<a.length:u=n[o-h]+a[c-h]+i[0];break;default:u=n[o-h]+i[0]}switch(i[0]=u/10,!0){case h>=n.length:n=l(new Uint8Array([u%10]),n);break;default:n[o-h]=u%10}}return i[0]>0&&(n=l(i,n)),n}function $(t){if(t>=S.length)for(let e=S.length;e<=t;e++){const t=new Uint8Array([0]);let i=S[e-1].slice(0);for(let e=i.length-1;e>=0;e--){const r=new Uint8Array([(i[e]<<1)+t[0]]);t[0]=r[0]/10,i[e]=r[0]%10}t[0]>0&&(i=l(t,i)),S.push(i)}return S[t]}function Q(t,e){let i=0;const r=new Uint8Array(t),s=new Uint8Array(e),n=r.slice(0),o=n.length-1,a=s.slice(0),c=a.length-1;let l,u=0;for(let t=c;t>=0;t--,u++)switch(l=n[o-u]-a[c-u]-i,!0){case l<0:i=1,n[o-u]=l+10;break;default:i=0,n[o-u]=l}if(i>0)for(let t=o-c+1;t>=0;t--,u++){if(l=n[o-u]-i,!(l<0)){i=0,n[o-u]=l;break}i=1,n[o-u]=l+10}return n.slice()}P.BitString=L,L.NAME="BIT STRING";class W extends(m(v)){constructor({value:t,...e}={}){super(e),this._valueDec=0,e.valueHex&&this.setValueHex(),void 0!==t&&(this.valueDec=t)}setValueHex(){this.valueHexView.length>=4?(this.warnings.push("Too big Integer for decoding, hex only"),this.isHexOnly=!0,this._valueDec=0):(this.isHexOnly=!1,this.valueHexView.length>0&&(this._valueDec=u.call(this)))}set valueDec(t){this._valueDec=t,this.isHexOnly=!1,this.valueHexView=new Uint8Array(function(t){const e=t<0?-1*t:t;let i=128;for(let r=1;r<8;r++){if(e<=i){if(t<0){const t=c(i-e,8,r);return new Uint8Array(t)[0]|=128,t}let s=c(e,8,r),n=new Uint8Array(s);if(128&n[0]){const t=s.slice(0),e=new Uint8Array(t);s=new ArrayBuffer(s.byteLength+1),n=new Uint8Array(s);for(let i=0;i<t.byteLength;i++)n[i+1]=e[i];n[0]=0}return s}i*=Math.pow(2,8)}return new ArrayBuffer(0)}(t))}get valueDec(){return this._valueDec}fromDER(t,e,i,r=0){const s=this.fromBER(t,e,i);if(-1===s)return s;const n=this.valueHexView;return 0===n[0]&&0!=(128&n[1])?this.valueHexView=n.subarray(1):0!==r&&n.length<r&&(r-n.length>1&&(r=n.length+1),this.valueHexView=n.subarray(r-n.length)),s}toDER(t=!1){const e=this.valueHexView;switch(!0){case 0!=(128&e[0]):{const t=new Uint8Array(this.valueHexView.length+1);t[0]=0,t.set(e,1),this.valueHexView=t}break;case 0===e[0]&&0==(128&e[1]):this.valueHexView=this.valueHexView.subarray(1)}return this.toBER(t)}fromBER(t,e,i){const r=super.fromBER(t,e,i);return-1===r||this.setValueHex(),r}toBER(t){return t?new ArrayBuffer(this.valueHexView.length):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}toString(){const t=8*this.valueHexView.length-1;let e,i=new Uint8Array(8*this.valueHexView.length/3),r=0;const s=this.valueHexView;let n="",o=!1;for(let o=s.byteLength-1;o>=0;o--){e=s[o];for(let s=0;s<8;s++){if(1==(1&e))switch(r){case t:i=Q($(r),i),n="-";break;default:i=G(i,$(r))}r++,e>>=1}}for(let t=0;t<i.length;t++)i[t]&&(o=!0),o&&(n+="0123456789".charAt(i[t]));return!1===o&&(n+="0123456789".charAt(0)),n}}T=W,W.NAME="IntegerValueBlock",Object.defineProperty(T.prototype,"valueHex",{set:function(t){this.valueHexView=new Uint8Array(t),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});class q extends D{constructor(t={}){super(t,W),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return p(),BigInt(this.valueBlock.toString())}static fromBigInt(e){p();const i=BigInt(e),r=new y,s=i.toString(16).replace(/^-/,""),n=new Uint8Array(t.Convert.FromHex(s));if(i<0){const e=new Uint8Array(n.length+(128&n[0]?1:0));e[0]|=128;const s=BigInt(`0x${t.Convert.ToHex(e)}`),o=t.BufferSourceConverter.toUint8Array(t.Convert.FromHex((s+i).toString(16)));o[0]|=128,r.write(o)}else 128&n[0]&&r.write(new Uint8Array([0])),r.write(n);return new q({valueHex:r.final()})}convertToDER(){const t=new q({valueHex:this.valueBlock.valueHexView});return t.valueBlock.toDER(),t}convertFromDER(){return new q({valueHex:0===this.valueBlock.valueHexView[0]?this.valueBlock.valueHexView.subarray(1):this.valueBlock.valueHexView})}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()}`}}P.Integer=q,q.NAME="INTEGER";class z extends q{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}}P.Enumerated=z,z.NAME="ENUMERATED";class J extends(m(v)){constructor({valueDec:t=-1,isFirstSid:e=!1,...i}={}){super(i),this.valueDec=t,this.isFirstSid=e}fromBER(e,i,r){if(!r)return i;const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;const n=s.subarray(i,i+r);this.valueHexView=new Uint8Array(r);for(let t=0;t<r&&(this.valueHexView[t]=127&n[t],this.blockLength++,0!=(128&n[t]));t++);const o=new Uint8Array(this.blockLength);for(let t=0;t<this.blockLength;t++)o[t]=this.valueHexView[t];return this.valueHexView=o,0!=(128&n[this.blockLength-1])?(this.error="End of input reached before message was fully decoded",-1):(0===this.valueHexView[0]&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=a(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),i+this.blockLength)}set valueBigInt(t){p();let e=BigInt(t).toString(2);for(;e.length%7;)e="0"+e;const i=new Uint8Array(e.length/7);for(let t=0;t<i.length;t++)i[t]=parseInt(e.slice(7*t,7*t+7),2)+(t+1<i.length?128:0);this.fromBER(i.buffer,0,i.length)}toBER(t){if(this.isHexOnly){if(t)return new ArrayBuffer(this.valueHexView.byteLength);const e=this.valueHexView,i=new Uint8Array(this.blockLength);for(let t=0;t<this.blockLength-1;t++)i[t]=128|e[t];return i[this.blockLength-1]=e[this.blockLength-1],i.buffer}const e=c(this.valueDec,7);if(0===e.byteLength)return this.error="Error during encoding SID value",C;const i=new Uint8Array(e.byteLength);if(!t){const t=new Uint8Array(e),r=e.byteLength-1;for(let e=0;e<r;e++)i[e]=128|t[e];i[r]=t[r]}return i}toString(){let e="";if(this.isHexOnly)e=t.Convert.ToHex(this.valueHexView);else if(this.isFirstSid){let t=this.valueDec;this.valueDec<=39?e="0.":this.valueDec<=79?(e="1.",t-=40):(e="2.",t-=80),e+=t.toString()}else e=this.valueDec.toString();return e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec,isFirstSid:this.isFirstSid}}}J.NAME="sidBlock";class Z extends v{constructor({value:t="",...e}={}){super(e),this.value=[],t&&this.fromString(t)}fromBER(t,e,i){let r=e;for(;i>0;){const e=new J;if(r=e.fromBER(t,r,i),-1===r)return this.blockLength=0,this.error=e.error,r;0===this.value.length&&(e.isFirstSid=!0),this.blockLength+=e.blockLength,i-=e.blockLength,this.value.push(e)}return r}toBER(t){const e=[];for(let i=0;i<this.value.length;i++){const r=this.value[i].toBER(t);if(0===r.byteLength)return this.error=this.value[i].error,C;e.push(r)}return d(e)}fromString(t){this.value=[];let e=0,i=0,r="",s=!1;do{if(i=t.indexOf(".",e),r=-1===i?t.substring(e):t.substring(e,i),e=i+1,s){const t=this.value[0];let e=0;switch(t.valueDec){case 0:break;case 1:e=40;break;case 2:e=80;break;default:return void(this.value=[])}const i=parseInt(r,10);if(isNaN(i))return;t.valueDec=i+e,s=!1}else{const t=new J;if(r>Number.MAX_SAFE_INTEGER){p();const e=BigInt(r);t.valueBigInt=e}else if(t.valueDec=parseInt(r,10),isNaN(t.valueDec))return;this.value.length||(t.isFirstSid=!0,s=!0),this.value.push(t)}}while(-1!==i)}toString(){let t="",e=!1;for(let i=0;i<this.value.length;i++){e=this.value[i].isHexOnly;let r=this.value[i].toString();0!==i&&(t=`${t}.`),e?(r=`{${r}}`,this.value[i].isFirstSid?t=`2.{${r} - 80}`:t+=r):t+=r}return t}toJSON(){const t={...super.toJSON(),value:this.toString(),sidArray:[]};for(let e=0;e<this.value.length;e++)t.sidArray.push(this.value[e].toJSON());return t}}Z.NAME="ObjectIdentifierValueBlock";class X extends D{constructor(t={}){super(t,Z),this.idBlock.tagClass=1,this.idBlock.tagNumber=6}getValue(){return this.valueBlock.toString()}setValue(t){this.valueBlock.fromString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}}P.ObjectIdentifier=X,X.NAME="OBJECT IDENTIFIER";class Y extends(m(g)){constructor({valueDec:t=0,...e}={}){super(e),this.valueDec=t}fromBER(e,i,r){if(0===r)return i;const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;const n=s.subarray(i,i+r);this.valueHexView=new Uint8Array(r);for(let t=0;t<r&&(this.valueHexView[t]=127&n[t],this.blockLength++,0!=(128&n[t]));t++);const o=new Uint8Array(this.blockLength);for(let t=0;t<this.blockLength;t++)o[t]=this.valueHexView[t];return this.valueHexView=o,0!=(128&n[this.blockLength-1])?(this.error="End of input reached before message was fully decoded",-1):(0===this.valueHexView[0]&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=a(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),i+this.blockLength)}toBER(t){if(this.isHexOnly){if(t)return new ArrayBuffer(this.valueHexView.byteLength);const e=this.valueHexView,i=new Uint8Array(this.blockLength);for(let t=0;t<this.blockLength-1;t++)i[t]=128|e[t];return i[this.blockLength-1]=e[this.blockLength-1],i.buffer}const e=c(this.valueDec,7);if(0===e.byteLength)return this.error="Error during encoding SID value",C;const i=new Uint8Array(e.byteLength);if(!t){const t=new Uint8Array(e),r=e.byteLength-1;for(let e=0;e<r;e++)i[e]=128|t[e];i[r]=t[r]}return i.buffer}toString(){let e="";return e=this.isHexOnly?t.Convert.ToHex(this.valueHexView):this.valueDec.toString(),e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}}Y.NAME="relativeSidBlock";class tt extends v{constructor({value:t="",...e}={}){super(e),this.value=[],t&&this.fromString(t)}fromBER(t,e,i){let r=e;for(;i>0;){const e=new Y;if(r=e.fromBER(t,r,i),-1===r)return this.blockLength=0,this.error=e.error,r;this.blockLength+=e.blockLength,i-=e.blockLength,this.value.push(e)}return r}toBER(t,e){const i=[];for(let e=0;e<this.value.length;e++){const r=this.value[e].toBER(t);if(0===r.byteLength)return this.error=this.value[e].error,C;i.push(r)}return d(i)}fromString(t){this.value=[];let e=0,i=0,r="";do{i=t.indexOf(".",e),r=-1===i?t.substring(e):t.substring(e,i),e=i+1;const s=new Y;if(s.valueDec=parseInt(r,10),isNaN(s.valueDec))return!0;this.value.push(s)}while(-1!==i);return!0}toString(){let t="",e=!1;for(let i=0;i<this.value.length;i++){e=this.value[i].isHexOnly;let r=this.value[i].toString();0!==i&&(t=`${t}.`),e?(r=`{${r}}`,t+=r):t+=r}return t}toJSON(){const t={...super.toJSON(),value:this.toString(),sidArray:[]};for(let e=0;e<this.value.length;e++)t.sidArray.push(this.value[e].toJSON());return t}}tt.NAME="RelativeObjectIdentifierValueBlock";class et extends D{constructor(t={}){super(t,tt),this.idBlock.tagClass=1,this.idBlock.tagNumber=13}getValue(){return this.valueBlock.toString()}setValue(t){this.valueBlock.fromString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}}P.RelativeObjectIdentifier=et,et.NAME="RelativeObjectIdentifier";class it extends M{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}}P.Sequence=it,it.NAME="SEQUENCE";class rt extends M{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}}P.Set=rt,rt.NAME="SET";class st extends(m(v)){constructor({...t}={}){super(t),this.isHexOnly=!0,this.value=""}toJSON(){return{...super.toJSON(),value:this.value}}}st.NAME="StringValueBlock";class nt extends st{}nt.NAME="SimpleStringValueBlock";class ot extends B{constructor({...t}={}){super(t,nt)}fromBuffer(e){this.valueBlock.value=String.fromCharCode.apply(null,t.BufferSourceConverter.toUint8Array(e))}fromString(t){const e=t.length,i=this.valueBlock.valueHexView=new Uint8Array(e);for(let r=0;r<e;r++)i[r]=t.charCodeAt(r);this.valueBlock.value=t}}ot.NAME="SIMPLE STRING";class at extends ot{fromBuffer(e){this.valueBlock.valueHexView=t.BufferSourceConverter.toUint8Array(e);try{this.valueBlock.value=t.Convert.ToUtf8String(e)}catch(i){this.warnings.push(`Error during "decodeURIComponent": ${i}, using raw string`),this.valueBlock.value=t.Convert.ToBinary(e)}}fromString(e){this.valueBlock.valueHexView=new Uint8Array(t.Convert.FromUtf8String(e)),this.valueBlock.value=e}}at.NAME="Utf8StringValueBlock";class ct extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}}P.Utf8String=ct,ct.NAME="UTF8String";class lt extends ot{fromBuffer(e){this.valueBlock.value=t.Convert.ToUtf16String(e),this.valueBlock.valueHexView=t.BufferSourceConverter.toUint8Array(e)}fromString(e){this.valueBlock.value=e,this.valueBlock.valueHexView=new Uint8Array(t.Convert.FromUtf16String(e))}}lt.NAME="BmpStringValueBlock";class ut extends lt{constructor({...t}={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}}P.BmpString=ut,ut.NAME="BMPString";class ht extends ot{fromBuffer(t){const e=ArrayBuffer.isView(t)?t.slice().buffer:t.slice(0),i=new Uint8Array(e);for(let t=0;t<i.length;t+=4)i[t]=i[t+3],i[t+1]=i[t+2],i[t+2]=0,i[t+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(e))}fromString(t){const e=t.length,i=this.valueBlock.valueHexView=new Uint8Array(4*e);for(let r=0;r<e;r++){const e=c(t.charCodeAt(r),8),s=new Uint8Array(e);if(s.length>4)continue;const n=4-s.length;for(let t=s.length-1;t>=0;t--)i[4*r+t+n]=s[t]}this.valueBlock.value=t}}ht.NAME="UniversalStringValueBlock";class pt extends ht{constructor({...t}={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}}P.UniversalString=pt,pt.NAME="UniversalString";class dt extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}}P.NumericString=dt,dt.NAME="NumericString";class ft extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}}P.PrintableString=ft,ft.NAME="PrintableString";class yt extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}}P.TeletexString=yt,yt.NAME="TeletexString";class St extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}}P.VideotexString=St,St.NAME="VideotexString";class Ct extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}}P.IA5String=Ct,Ct.NAME="IA5String";class At extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}}P.GraphicString=At,At.NAME="GraphicString";class mt extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}}P.VisibleString=mt,mt.NAME="VisibleString";class gt extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}}P.GeneralString=gt,gt.NAME="GeneralString";class vt extends ot{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}}P.CharacterString=vt,vt.NAME="CharacterString";class Et extends mt{constructor({value:t,valueDate:e,...i}={}){if(super(i),this.year=0,this.month=0,this.day=0,this.hour=0,this.minute=0,this.second=0,t){this.fromString(t),this.valueBlock.valueHexView=new Uint8Array(t.length);for(let e=0;e<t.length;e++)this.valueBlock.valueHexView[e]=t.charCodeAt(e)}e&&(this.fromDate(e),this.valueBlock.valueHexView=new Uint8Array(this.toBuffer())),this.idBlock.tagClass=1,this.idBlock.tagNumber=23}fromBuffer(e){this.fromString(String.fromCharCode.apply(null,t.BufferSourceConverter.toUint8Array(e)))}toBuffer(){const t=this.toString(),e=new ArrayBuffer(t.length),i=new Uint8Array(e);for(let e=0;e<t.length;e++)i[e]=t.charCodeAt(e);return e}fromDate(t){this.year=t.getUTCFullYear(),this.month=t.getUTCMonth()+1,this.day=t.getUTCDate(),this.hour=t.getUTCHours(),this.minute=t.getUTCMinutes(),this.second=t.getUTCSeconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second))}fromString(t){const e=/(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})Z/gi.exec(t);if(null===e)return void(this.error="Wrong input string for conversion");const i=parseInt(e[1],10);this.year=i>=50?1900+i:2e3+i,this.month=parseInt(e[2],10),this.day=parseInt(e[3],10),this.hour=parseInt(e[4],10),this.minute=parseInt(e[5],10),this.second=parseInt(e[6],10)}toString(t="iso"){if("iso"===t){const t=new Array(7);return t[0]=h(this.year<2e3?this.year-1900:this.year-2e3,2),t[1]=h(this.month,2),t[2]=h(this.day,2),t[3]=h(this.hour,2),t[4]=h(this.minute,2),t[5]=h(this.second,2),t[6]="Z",t.join("")}return super.toString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.toDate().toISOString()}`}toJSON(){return{...super.toJSON(),year:this.year,month:this.month,day:this.day,hour:this.hour,minute:this.minute,second:this.second}}}P.UTCTime=Et,Et.NAME="UTCTime";class wt extends Et{constructor(t={}){var e;super(t),null!==(e=this.millisecond)&&void 0!==e||(this.millisecond=0),this.idBlock.tagClass=1,this.idBlock.tagNumber=24}fromDate(t){super.fromDate(t),this.millisecond=t.getUTCMilliseconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second,this.millisecond))}fromString(t){let e,i=!1,r="",s="",n=0,o=0,a=0;if("Z"===t[t.length-1])r=t.substring(0,t.length-1),i=!0;else{const e=new Number(t[t.length-1]);if(isNaN(e.valueOf()))throw new Error("Wrong input string for conversion");r=t}if(i){if(-1!==r.indexOf("+"))throw new Error("Wrong input string for conversion");if(-1!==r.indexOf("-"))throw new Error("Wrong input string for conversion")}else{let t=1,e=r.indexOf("+"),i="";if(-1===e&&(e=r.indexOf("-"),t=-1),-1!==e){if(i=r.substring(e+1),r=r.substring(0,e),2!==i.length&&4!==i.length)throw new Error("Wrong input string for conversion");let s=parseInt(i.substring(0,2),10);if(isNaN(s.valueOf()))throw new Error("Wrong input string for conversion");if(o=t*s,4===i.length){if(s=parseInt(i.substring(2,4),10),isNaN(s.valueOf()))throw new Error("Wrong input string for conversion");a=t*s}}}let c=r.indexOf(".");if(-1===c&&(c=r.indexOf(",")),-1!==c){const t=new Number(`0${r.substring(c)}`);if(isNaN(t.valueOf()))throw new Error("Wrong input string for conversion");n=t.valueOf(),s=r.substring(0,c)}else s=r;switch(!0){case 8===s.length:if(e=/(\d{4})(\d{2})(\d{2})/gi,-1!==c)throw new Error("Wrong input string for conversion");break;case 10===s.length:if(e=/(\d{4})(\d{2})(\d{2})(\d{2})/gi,-1!==c){let t=60*n;this.minute=Math.floor(t),t=60*(t-this.minute),this.second=Math.floor(t),t=1e3*(t-this.second),this.millisecond=Math.floor(t)}break;case 12===s.length:if(e=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/gi,-1!==c){let t=60*n;this.second=Math.floor(t),t=1e3*(t-this.second),this.millisecond=Math.floor(t)}break;case 14===s.length:e=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/gi,-1!==c&&(this.millisecond=Math.floor(1e3*n));break;default:throw new Error("Wrong input string for conversion")}const l=e.exec(s);if(null===l)throw new Error("Wrong input string for conversion");for(let t=1;t<l.length;t++)switch(t){case 1:this.year=parseInt(l[t],10);break;case 2:this.month=parseInt(l[t],10);break;case 3:this.day=parseInt(l[t],10);break;case 4:this.hour=parseInt(l[t],10)+o;break;case 5:this.minute=parseInt(l[t],10)+a;break;case 6:this.second=parseInt(l[t],10);break;default:throw new Error("Wrong input string for conversion")}if(!1===i){const t=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=t.getUTCFullYear(),this.month=t.getUTCMonth(),this.day=t.getUTCDay(),this.hour=t.getUTCHours(),this.minute=t.getUTCMinutes(),this.second=t.getUTCSeconds(),this.millisecond=t.getUTCMilliseconds()}}toString(t="iso"){if("iso"===t){const t=[];return t.push(h(this.year,4)),t.push(h(this.month,2)),t.push(h(this.day,2)),t.push(h(this.hour,2)),t.push(h(this.minute,2)),t.push(h(this.second,2)),0!==this.millisecond&&(t.push("."),t.push(h(this.millisecond,3))),t.push("Z"),t.join("")}return super.toString(t)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}}P.GeneralizedTime=wt,wt.NAME="GeneralizedTime";class Pt extends ct{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}}P.DATE=Pt,Pt.NAME="DATE";class Dt extends ct{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}}P.TimeOfDay=Dt,Dt.NAME="TimeOfDay";class bt extends ct{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}}P.DateTime=bt,bt.NAME="DateTime";class Bt extends ct{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}}P.Duration=Bt,Bt.NAME="Duration";class It extends ct{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}}P.TIME=It,It.NAME="TIME";class Tt{constructor({name:t="",optional:e=!1}={}){this.name=t,this.optional=e}}class xt extends Tt{constructor({value:t=[],...e}={}){super(e),this.value=t}}class Rt extends Tt{constructor({value:t=new Tt,local:e=!1,...i}={}){super(i),this.value=t,this.local=e}}function Ot(t,e,i){if(i instanceof xt){for(let r=0;r<i.value.length;r++)if(Ot(t,e,i.value[r]).verified)return{verified:!0,result:t};{const t={verified:!1,result:{error:"Wrong values for Choice type"}};return i.hasOwnProperty("name")&&(t.name=i.name),t}}if(i instanceof Tt)return i.hasOwnProperty("name")&&(t[i.name]=e),{verified:!0,result:t};if(t instanceof Object==0)return{verified:!1,result:{error:"Wrong root object"}};if(e instanceof Object==0)return{verified:!1,result:{error:"Wrong ASN.1 data"}};if(i instanceof Object==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if("idBlock"in i==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if("fromBER"in i.idBlock==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if("toBER"in i.idBlock==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};const r=i.idBlock.toBER(!1);if(0===r.byteLength)return{verified:!1,result:{error:"Error encoding idBlock for ASN.1 schema"}};if(-1===i.idBlock.fromBER(r,0,r.byteLength))return{verified:!1,result:{error:"Error decoding idBlock for ASN.1 schema"}};if(!1===i.idBlock.hasOwnProperty("tagClass"))return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if(i.idBlock.tagClass!==e.idBlock.tagClass)return{verified:!1,result:t};if(!1===i.idBlock.hasOwnProperty("tagNumber"))return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if(i.idBlock.tagNumber!==e.idBlock.tagNumber)return{verified:!1,result:t};if(!1===i.idBlock.hasOwnProperty("isConstructed"))return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if(i.idBlock.isConstructed!==e.idBlock.isConstructed)return{verified:!1,result:t};if(!("isHexOnly"in i.idBlock))return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if(i.idBlock.isHexOnly!==e.idBlock.isHexOnly)return{verified:!1,result:t};if(i.idBlock.isHexOnly){if("valueHexView"in i.idBlock==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};const r=i.idBlock.valueHexView,s=e.idBlock.valueHexView;if(r.length!==s.length)return{verified:!1,result:t};for(let e=0;e<r.length;e++)if(r[e]!==s[1])return{verified:!1,result:t}}if(i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&(t[i.name]=e)),i instanceof P.Constructed){let r=0,s={verified:!1,result:{error:"Unknown error"}},n=i.valueBlock.value.length;if(n>0&&i.valueBlock.value[0]instanceof Rt&&(n=e.valueBlock.value.length),0===n)return{verified:!0,result:t};if(0===e.valueBlock.value.length&&0!==i.valueBlock.value.length){let e=!0;for(let t=0;t<i.valueBlock.value.length;t++)e=e&&(i.valueBlock.value[t].optional||!1);return e?{verified:!0,result:t}:(i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&delete t[i.name]),t.error="Inconsistent object length",{verified:!1,result:t})}for(let o=0;o<n;o++)if(o-r>=e.valueBlock.value.length){if(!1===i.valueBlock.value[o].optional){const e={verified:!1,result:t};return t.error="Inconsistent length between ASN.1 data and schema",i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&(delete t[i.name],e.name=i.name)),e}}else if(i.valueBlock.value[0]instanceof Rt){if(s=Ot(t,e.valueBlock.value[o],i.valueBlock.value[0].value),!1===s.verified){if(!i.valueBlock.value[0].optional)return i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&delete t[i.name]),s;r++}if("name"in i.valueBlock.value[0]&&i.valueBlock.value[0].name.length>0){let r={};r="local"in i.valueBlock.value[0]&&i.valueBlock.value[0].local?e:t,void 0===r[i.valueBlock.value[0].name]&&(r[i.valueBlock.value[0].name]=[]),r[i.valueBlock.value[0].name].push(e.valueBlock.value[o])}}else if(s=Ot(t,e.valueBlock.value[o-r],i.valueBlock.value[o]),!1===s.verified){if(!i.valueBlock.value[o].optional)return i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&delete t[i.name]),s;r++}if(!1===s.verified){const e={verified:!1,result:t};return i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&(delete t[i.name],e.name=i.name)),e}return{verified:!0,result:t}}if(i.primitiveSchema&&"valueHexView"in e.valueBlock){const r=R(e.valueBlock.valueHexView);if(-1===r.offset){const e={verified:!1,result:r.result};return i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&(delete t[i.name],e.name=i.name)),e}return Ot(t,r.result,i.primitiveSchema)}return{verified:!0,result:t}}const Nt=Object.freeze({__proto__:null,Any:Tt,BaseBlock:D,BaseStringBlock:B,BitString:L,BmpString:ut,Boolean:_,CharacterString:vt,Choice:xt,Constructed:M,DATE:Pt,DateTime:bt,Duration:Bt,EndOfContent:K,Enumerated:z,GeneralString:gt,GeneralizedTime:wt,GraphicString:At,HexBlock:m,IA5String:Ct,Integer:q,Null:H,NumericString:dt,ObjectIdentifier:X,OctetString:F,Primitive:x,PrintableString:ft,RawData:class{constructor({data:e=A}={}){this.dataView=t.BufferSourceConverter.toUint8Array(e)}get data(){return this.dataView.slice().buffer}set data(e){this.dataView=t.BufferSourceConverter.toUint8Array(e)}fromBER(e,i,r){const s=i+r;return this.dataView=t.BufferSourceConverter.toUint8Array(e).subarray(i,s),s}toBER(t){return this.dataView.slice().buffer}},RelativeObjectIdentifier:et,Repeated:Rt,Sequence:it,Set:rt,TIME:It,TeletexString:yt,TimeOfDay:Dt,UTCTime:Et,UniversalString:pt,Utf8String:ct,ValueBlock:v,VideotexString:St,ViewWriter:y,VisibleString:mt,compareSchema:Ot,fromBER:O,verifySchema:function(e,i){if(i instanceof Object==0)return{verified:!1,result:{error:"Wrong ASN.1 schema type"}};const r=R(t.BufferSourceConverter.toUint8Array(e));return-1===r.offset?{verified:!1,result:r.result}:Ot(r.result,r.result,i)}});var Mt,kt;!function(t){t[t.Sequence=0]="Sequence",t[t.Set=1]="Set",t[t.Choice=2]="Choice"}(Mt||(Mt={})),function(t){t[t.Any=1]="Any",t[t.Boolean=2]="Boolean",t[t.OctetString=3]="OctetString",t[t.BitString=4]="BitString",t[t.Integer=5]="Integer",t[t.Enumerated=6]="Enumerated",t[t.ObjectIdentifier=7]="ObjectIdentifier",t[t.Utf8String=8]="Utf8String",t[t.BmpString=9]="BmpString",t[t.UniversalString=10]="UniversalString",t[t.NumericString=11]="NumericString",t[t.PrintableString=12]="PrintableString",t[t.TeletexString=13]="TeletexString",t[t.VideotexString=14]="VideotexString",t[t.IA5String=15]="IA5String",t[t.GraphicString=16]="GraphicString",t[t.VisibleString=17]="VisibleString",t[t.GeneralString=18]="GeneralString",t[t.CharacterString=19]="CharacterString",t[t.UTCTime=20]="UTCTime",t[t.GeneralizedTime=21]="GeneralizedTime",t[t.DATE=22]="DATE",t[t.TimeOfDay=23]="TimeOfDay",t[t.DateTime=24]="DateTime",t[t.Duration=25]="Duration",t[t.TIME=26]="TIME",t[t.Null=27]="Null"}(kt||(kt={}));const Kt={fromASN:t=>t instanceof H?null:t.valueBeforeDecode,toASN:t=>{if(null===t)return new H;const e=O(t);if(e.result.error)throw new Error(e.result.error);return e.result}},Ht={fromASN:t=>t.valueBlock.valueHex.byteLength>4?t.valueBlock.toString():t.valueBlock.valueDec,toASN:t=>new q({value:t})},jt={fromASN:t=>t.valueBlock.valueDec,toASN:t=>new z({value:t})},_t={fromASN:t=>t.valueBlock.valueHex,toASN:t=>new q({valueHex:t})},Ut={fromASN:t=>t.valueBlock.valueHex,toASN:t=>new L({valueHex:t})},Ft={fromASN:t=>t.valueBlock.toString(),toASN:t=>new X({value:t})},Vt={fromASN:t=>t.valueBlock.value,toASN:t=>new _({value:t})},Lt={fromASN:t=>t.valueBlock.valueHex,toASN:t=>new F({valueHex:t})};function Gt(t){return{fromASN:t=>t.valueBlock.value,toASN:e=>new t({value:e})}}const $t=Gt(ct),Qt=Gt(ut),Wt=Gt(pt),qt=Gt(dt),zt=Gt(ft),Jt=Gt(yt),Zt=Gt(St),Xt=Gt(Ct),Yt=Gt(At),te=Gt(mt),ee=Gt(gt),ie=Gt(vt),re={fromASN:t=>t.toDate(),toASN:t=>new Et({valueDate:t})},se={fromASN:t=>t.toDate(),toASN:t=>new wt({valueDate:t})},ne={fromASN:()=>null,toASN:()=>new H};function oe(t){switch(t){case kt.Any:return Kt;case kt.BitString:return Ut;case kt.BmpString:return Qt;case kt.Boolean:return Vt;case kt.CharacterString:return ie;case kt.Enumerated:return jt;case kt.GeneralString:return ee;case kt.GeneralizedTime:return se;case kt.GraphicString:return Yt;case kt.IA5String:return Xt;case kt.Integer:return Ht;case kt.Null:return ne;case kt.NumericString:return qt;case kt.ObjectIdentifier:return Ft;case kt.OctetString:return Lt;case kt.PrintableString:return zt;case kt.TeletexString:return Jt;case kt.UTCTime:return re;case kt.UniversalString:return Wt;case kt.Utf8String:return $t;case kt.VideotexString:return Zt;case kt.VisibleString:return te;default:return null}}class ae{constructor(e,i=0){if(this.unusedBits=0,this.value=new ArrayBuffer(0),e)if("number"==typeof e)this.fromNumber(e);else{if(!t.BufferSourceConverter.isBufferSource(e))throw TypeError("Unsupported type of 'params' argument for BitString");this.unusedBits=i,this.value=t.BufferSourceConverter.toArrayBuffer(e)}}fromASN(t){if(!(t instanceof L))throw new TypeError("Argument 'asn' is not instance of ASN.1 BitString");return this.unusedBits=t.valueBlock.unusedBits,this.value=t.valueBlock.valueHex,this}toASN(){return new L({unusedBits:this.unusedBits,valueHex:this.value})}toSchema(t){return new L({name:t})}toNumber(){let t="";const e=new Uint8Array(this.value);for(const i of e)t+=i.toString(2).padStart(8,"0");return t=t.split("").reverse().join(""),this.unusedBits&&(t=t.slice(this.unusedBits).padStart(this.unusedBits,"0")),parseInt(t,2)}fromNumber(t){let e=t.toString(2);const i=e.length+7>>3;this.unusedBits=(i<<3)-e.length;const r=new Uint8Array(i);e=e.padStart(i<<3,"0").split("").reverse().join("");let s=0;for(;s<i;)r[s]=parseInt(e.slice(s<<3,8+(s<<3)),2),s++;this.value=r.buffer}}class ce{constructor(e){this.buffer="number"==typeof e?new ArrayBuffer(e):t.BufferSourceConverter.isBufferSource(e)?t.BufferSourceConverter.toArrayBuffer(e):Array.isArray(e)?new Uint8Array(e):new ArrayBuffer(0)}get byteLength(){return this.buffer.byteLength}get byteOffset(){return 0}fromASN(t){if(!(t instanceof F))throw new TypeError("Argument 'asn' is not instance of ASN.1 OctetString");return this.buffer=t.valueBlock.valueHex,this}toASN(){return new F({valueHex:this.buffer})}toSchema(t){return new F({name:t})}}function le(t){return t&&t.prototype?!(!t.prototype.toASN||!t.prototype.fromASN)||le(t.prototype):!!(t&&t.toASN&&t.fromASN)}function ue(t){var e;if(t){const i=Object.getPrototypeOf(t);return(null===(e=null==i?void 0:i.prototype)||void 0===e?void 0:e.constructor)===Array||ue(i)}return!1}function he(t,e){if(!t||!e)return!1;if(t.byteLength!==e.byteLength)return!1;const i=new Uint8Array(t),r=new Uint8Array(e);for(let e=0;e<t.byteLength;e++)if(i[e]!==r[e])return!1;return!0}const pe=new class{constructor(){this.items=new WeakMap}has(t){return this.items.has(t)}get(t){var e,i,r;const s=this.items.get(t);if(!s)throw new Error(`Cannot get schema for '${null!==(r=null===(i=null===(e=null==t?void 0:t.prototype)||void 0===e?void 0:e.constructor)||void 0===i?void 0:i.name)&&void 0!==r?r:t}' target`);return s}cache(t){const e=this.get(t);e.schema||(e.schema=this.create(t,!0))}createDefault(t){const e={type:Mt.Sequence,items:{}},i=this.findParentSchema(t);return i&&(Object.assign(e,i),e.items=Object.assign({},e.items,i.items)),e}create(t,e){const i=this.items.get(t)||this.createDefault(t),r=[];for(const t in i.items){const s=i.items[t],n=e?t:"";let o;if("number"==typeof s.type){const t=kt[s.type],e=Nt[t];if(!e)throw new Error(`Cannot get ASN1 class by name '${t}'`);o=new e({name:n})}else le(s.type)?o=(new s.type).toSchema(n):s.optional?this.get(s.type).type===Mt.Choice?o=new Tt({name:n}):(o=this.create(s.type,!1),o.name=n):o=new Tt({name:n});const a=!!s.optional||void 0!==s.defaultValue;if(s.repeated&&(o.name="",o=new("set"===s.repeated?rt:it)({name:"",value:[new Rt({name:n,value:o})]})),null!=s.context)if(s.implicit)if("number"==typeof s.type||le(s.type))r.push(new(s.repeated?M:x)({name:n,optional:a,idBlock:{tagClass:3,tagNumber:s.context}}));else{this.cache(s.type);const t=!!s.repeated;let e=t?o:this.get(s.type).schema;e=e.valueBlock?e.valueBlock.value:e.value,r.push(new M({name:t?"":n,optional:a,idBlock:{tagClass:3,tagNumber:s.context},value:e}))}else r.push(new M({optional:a,idBlock:{tagClass:3,tagNumber:s.context},value:[o]}));else o.optional=a,r.push(o)}switch(i.type){case Mt.Sequence:return new it({value:r,name:""});case Mt.Set:return new rt({value:r,name:""});case Mt.Choice:return new xt({value:r,name:""});default:throw new Error("Unsupported ASN1 type in use")}}set(t,e){return this.items.set(t,e),this}findParentSchema(t){const e=t.__proto__;return e?this.items.get(e)||this.findParentSchema(e):null}},de=t=>e=>{let i;pe.has(e)?i=pe.get(e):(i=pe.createDefault(e),pe.set(e,i)),Object.assign(i,t)},fe=t=>(e,i)=>{let r;pe.has(e.constructor)?r=pe.get(e.constructor):(r=pe.createDefault(e.constructor),pe.set(e.constructor,r));const s=Object.assign({},t);if("number"==typeof s.type&&!s.converter){const r=oe(t.type);if(!r)throw new Error(`Cannot get default converter for property '${i}' of ${e.constructor.name}`);s.converter=r}r.items[i]=s};class ye extends Error{constructor(){super(...arguments),this.schemas=[]}}class Se{static parse(t,e){const i=O(t);if(i.result.error)throw new Error(i.result.error);return this.fromASN(i.result,e)}static fromASN(t,e){var i;try{if(le(e))return(new e).fromASN(t);const r=pe.get(e);pe.cache(e);let s=r.schema;if(t.constructor===M&&r.type!==Mt.Choice){s=new M({idBlock:{tagClass:3,tagNumber:t.idBlock.tagNumber},value:r.schema.valueBlock.value});for(const e in r.items)delete t[e]}const n=Ot({},t,s);if(!n.verified)throw new ye(`Data does not match to ${e.name} ASN1 schema. ${n.result.error}`);const o=new e;if(ue(e)){if("number"==typeof r.itemType){const i=oe(r.itemType);if(!i)throw new Error(`Cannot get default converter for array item of ${e.name} ASN1 schema`);return e.from(t.valueBlock.value,(t=>i.fromASN(t)))}return e.from(t.valueBlock.value,(t=>this.fromASN(t,r.itemType)))}for(const t in r.items){const e=n.result[t];if(!e)continue;const s=r.items[t];if("number"==typeof s.type||le(s.type)){const r=null!==(i=s.converter)&&void 0!==i?i:le(s.type)?new s.type:null;if(!r)throw new Error("Converter is empty");if(s.repeated)if(s.implicit){const i=new("sequence"===s.repeated?it:rt);i.valueBlock=e.valueBlock;const n=O(i.toBER(!1)).result.valueBlock.value;o[t]=Array.from(n,(t=>r.fromASN(t)))}else o[t]=Array.from(e,(t=>r.fromASN(t)));else{let i=e;if(s.implicit){let t;if(le(s.type))t=(new s.type).toSchema("");else{const e=kt[s.type],i=Nt[e];if(!i)throw new Error(`Cannot get '${e}' class from asn1js module`);t=new i}t.valueBlock=i.valueBlock,i=O(t.toBER(!1)).result}o[t]=r.fromASN(i)}}else o[t]=s.repeated?Array.from(e,(t=>this.fromASN(t,s.type))):this.fromASN(e,s.type)}return o}catch(t){throw t instanceof ye&&t.schemas.push(e.name),t}}}class Ce{static serialize(t){return t instanceof D?t.toBER(!1):this.toASN(t).toBER(!1)}static toASN(t){if(t&&le(t.constructor))return t.toASN();const e=t.constructor,i=pe.get(e);pe.cache(e);let r,s=[];if(i.itemType)if("number"==typeof i.itemType){const r=oe(i.itemType);if(!r)throw new Error(`Cannot get default converter for array item of ${e.name} ASN1 schema`);s=t.map((t=>r.toASN(t)))}else s=t.map((t=>this.toAsnItem({type:i.itemType},"[]",e,t)));else for(const r in i.items){const n=i.items[r],o=t[r];if(void 0===o||n.defaultValue===o||"object"==typeof n.defaultValue&&"object"==typeof o&&he(this.serialize(n.defaultValue),this.serialize(o)))continue;let a=Ce.toAsnItem(n,r,e,o);if("number"==typeof n.context)if(n.implicit)if(n.repeated||"number"!=typeof n.type&&!le(n.type))s.push(new M({optional:n.optional,idBlock:{tagClass:3,tagNumber:n.context},value:a.valueBlock.value}));else{const t={};t.valueHex=a instanceof H?a.valueBeforeDecode:a.valueBlock.toBER(),s.push(new x({optional:n.optional,idBlock:{tagClass:3,tagNumber:n.context},...t}))}else s.push(new M({optional:n.optional,idBlock:{tagClass:3,tagNumber:n.context},value:[a]}));else n.repeated?s=s.concat(a):s.push(a)}switch(i.type){case Mt.Sequence:r=new it({value:s});break;case Mt.Set:r=new rt({value:s});break;case Mt.Choice:if(!s[0])throw new Error(`Schema '${e.name}' has wrong data. Choice cannot be empty.`);r=s[0]}return r}static toAsnItem(t,e,i,r){let s;if("number"==typeof t.type){const n=t.converter;if(!n)throw new Error(`Property '${e}' doesn't have converter for type ${kt[t.type]} in schema '${i.name}'`);if(t.repeated){const e=Array.from(r,(t=>n.toASN(t)));s=new("sequence"===t.repeated?it:rt)({value:e})}else s=n.toASN(r)}else if(t.repeated){const e=Array.from(r,(t=>this.toASN(t)));s=new("sequence"===t.repeated?it:rt)({value:e})}else s=this.toASN(r);return s}}class Ae extends Array{constructor(t=[]){if("number"==typeof t)super(t);else{super();for(const e of t)this.push(e)}}}class me{static serialize(t){return Ce.serialize(t)}static parse(t,e){return Se.parse(t,e)}static toString(e){const i=O(t.BufferSourceConverter.isBufferSource(e)?t.BufferSourceConverter.toArrayBuffer(e):me.serialize(e));if(-1===i.offset)throw new Error(`Cannot decode ASN.1 data. ${i.result.error}`);return i.result.toString()}}function ge(t,e,i,r){var s,n=arguments.length,o=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,i,r);else for(var a=t.length-1;a>=0;a--)(s=t[a])&&(o=(n<3?s(o):n>3?s(e,i,o):s(e,i))||o);return n>3&&o&&Object.defineProperty(e,i,o),o}var ve,Ee,we,Pe=e((function(t){!function(e){const i="(0?\\d+|0x[a-f0-9]+)",r={fourOctet:new RegExp(`^${i}\\.${i}\\.${i}\\.${i}$`,"i"),threeOctet:new RegExp(`^${i}\\.${i}\\.${i}$`,"i"),twoOctet:new RegExp(`^${i}\\.${i}$`,"i"),longValue:new RegExp(`^${i}$`,"i")},s=new RegExp("^0[0-7]+$","i"),n=new RegExp("^0x[a-f0-9]+$","i"),o="%[0-9a-z]{1,}",a="(?:[0-9a-f]+::?)+",c={zoneIndex:new RegExp(o,"i"),native:new RegExp(`^(::)?(${a})?([0-9a-f]+)?(::)?(${o})?$`,"i"),deprecatedTransitional:new RegExp(`^(?:::)(${i}\\.${i}\\.${i}\\.${i}(${o})?)$`,"i"),transitional:new RegExp(`^((?:${a})|(?:::)(?:${a})?)${i}\\.${i}\\.${i}\\.${i}(${o})?$`,"i")};function l(t,e){if(t.indexOf("::")!==t.lastIndexOf("::"))return null;let i,r,s=0,n=-1,o=(t.match(c.zoneIndex)||[])[0];for(o&&(o=o.substring(1),t=t.replace(/%.+$/,""));(n=t.indexOf(":",n+1))>=0;)s++;if("::"===t.substr(0,2)&&s--,"::"===t.substr(-2,2)&&s--,s>e)return null;for(r=e-s,i=":";r--;)i+="0:";return":"===(t=t.replace("::",i))[0]&&(t=t.slice(1)),":"===t[t.length-1]&&(t=t.slice(0,-1)),{parts:e=function(){const e=t.split(":"),i=[];for(let t=0;t<e.length;t++)i.push(parseInt(e[t],16));return i}(),zoneId:o}}function u(t,e,i,r){if(t.length!==e.length)throw new Error("ipaddr: cannot match CIDR for objects with different lengths");let s,n=0;for(;r>0;){if(s=i-r,s<0&&(s=0),t[n]>>s!=e[n]>>s)return!1;r-=i,n+=1}return!0}function h(t){if(n.test(t))return parseInt(t,16);if("0"===t[0]&&!isNaN(parseInt(t[1],10))){if(s.test(t))return parseInt(t,8);throw new Error(`ipaddr: cannot parse ${t} as octal`)}return parseInt(t,10)}function p(t,e){for(;t.length<e;)t=`0${t}`;return t}const d={};d.IPv4=function(){function t(t){if(4!==t.length)throw new Error("ipaddr: ipv4 octet count should be 4");let e,i;for(e=0;e<t.length;e++)if(i=t[e],!(0<=i&&i<=255))throw new Error("ipaddr: ipv4 octet should fit in 8 bits");this.octets=t}return t.prototype.SpecialRanges={unspecified:[[new t([0,0,0,0]),8]],broadcast:[[new t([255,255,255,255]),32]],multicast:[[new t([224,0,0,0]),4]],linkLocal:[[new t([169,254,0,0]),16]],loopback:[[new t([127,0,0,0]),8]],carrierGradeNat:[[new t([100,64,0,0]),10]],private:[[new t([10,0,0,0]),8],[new t([172,16,0,0]),12],[new t([192,168,0,0]),16]],reserved:[[new t([192,0,0,0]),24],[new t([192,0,2,0]),24],[new t([192,88,99,0]),24],[new t([198,51,100,0]),24],[new t([203,0,113,0]),24],[new t([240,0,0,0]),4]]},t.prototype.kind=function(){return"ipv4"},t.prototype.match=function(t,e){let i;if(void 0===e&&(i=t,t=i[0],e=i[1]),"ipv4"!==t.kind())throw new Error("ipaddr: cannot match ipv4 address with non-ipv4 one");return u(this.octets,t.octets,8,e)},t.prototype.prefixLengthFromSubnetMask=function(){let t=0,e=!1;const i={0:8,128:7,192:6,224:5,240:4,248:3,252:2,254:1,255:0};let r,s,n;for(r=3;r>=0;r-=1){if(s=this.octets[r],!(s in i))return null;if(n=i[s],e&&0!==n)return null;8!==n&&(e=!0),t+=n}return 32-t},t.prototype.range=function(){return d.subnetMatch(this,this.SpecialRanges)},t.prototype.toByteArray=function(){return this.octets.slice(0)},t.prototype.toIPv4MappedAddress=function(){return d.IPv6.parse(`::ffff:${this.toString()}`)},t.prototype.toNormalizedString=function(){return this.toString()},t.prototype.toString=function(){return this.octets.join(".")},t}(),d.IPv4.broadcastAddressFromCIDR=function(t){try{const e=this.parseCIDR(t),i=e[0].toByteArray(),r=this.subnetMaskFromPrefixLength(e[1]).toByteArray(),s=[];let n=0;for(;n<4;)s.push(parseInt(i[n],10)|255^parseInt(r[n],10)),n++;return new this(s)}catch(t){throw new Error("ipaddr: the address does not have IPv4 CIDR format")}},d.IPv4.isIPv4=function(t){return null!==this.parser(t)},d.IPv4.isValid=function(t){try{return new this(this.parser(t)),!0}catch(t){return!1}},d.IPv4.isValidFourPartDecimal=function(t){return!(!d.IPv4.isValid(t)||!t.match(/^(0|[1-9]\d*)(\.(0|[1-9]\d*)){3}$/))},d.IPv4.networkAddressFromCIDR=function(t){let e,i,r,s,n;try{for(e=this.parseCIDR(t),r=e[0].toByteArray(),n=this.subnetMaskFromPrefixLength(e[1]).toByteArray(),s=[],i=0;i<4;)s.push(parseInt(r[i],10)&parseInt(n[i],10)),i++;return new this(s)}catch(t){throw new Error("ipaddr: the address does not have IPv4 CIDR format")}},d.IPv4.parse=function(t){const e=this.parser(t);if(null===e)throw new Error("ipaddr: string is not formatted like an IPv4 Address");return new this(e)},d.IPv4.parseCIDR=function(t){let e;if(e=t.match(/^(.+)\/(\d+)$/)){const t=parseInt(e[2]);if(t>=0&&t<=32){const i=[this.parse(e[1]),t];return Object.defineProperty(i,"toString",{value:function(){return this.join("/")}}),i}}throw new Error("ipaddr: string is not formatted like an IPv4 CIDR range")},d.IPv4.parser=function(t){let e,i,s;if(e=t.match(r.fourOctet))return function(){const t=e.slice(1,6),r=[];for(let e=0;e<t.length;e++)i=t[e],r.push(h(i));return r}();if(e=t.match(r.longValue)){if(s=h(e[1]),s>4294967295||s<0)throw new Error("ipaddr: address outside defined range");return function(){const t=[];let e;for(e=0;e<=24;e+=8)t.push(s>>e&255);return t}().reverse()}return(e=t.match(r.twoOctet))?function(){const t=e.slice(1,4),i=[];if(s=h(t[1]),s>16777215||s<0)throw new Error("ipaddr: address outside defined range");return i.push(h(t[0])),i.push(s>>16&255),i.push(s>>8&255),i.push(255&s),i}():(e=t.match(r.threeOctet))?function(){const t=e.slice(1,5),i=[];if(s=h(t[2]),s>65535||s<0)throw new Error("ipaddr: address outside defined range");return i.push(h(t[0])),i.push(h(t[1])),i.push(s>>8&255),i.push(255&s),i}():null},d.IPv4.subnetMaskFromPrefixLength=function(t){if((t=parseInt(t))<0||t>32)throw new Error("ipaddr: invalid IPv4 prefix length");const e=[0,0,0,0];let i=0;const r=Math.floor(t/8);for(;i<r;)e[i]=255,i++;return r<4&&(e[r]=Math.pow(2,t%8)-1<<8-t%8),new this(e)},d.IPv6=function(){function t(t,e){let i,r;if(16===t.length)for(this.parts=[],i=0;i<=14;i+=2)this.parts.push(t[i]<<8|t[i+1]);else{if(8!==t.length)throw new Error("ipaddr: ipv6 part count should be 8 or 16");this.parts=t}for(i=0;i<this.parts.length;i++)if(r=this.parts[i],!(0<=r&&r<=65535))throw new Error("ipaddr: ipv6 part should fit in 16 bits");e&&(this.zoneId=e)}return t.prototype.SpecialRanges={unspecified:[new t([0,0,0,0,0,0,0,0]),128],linkLocal:[new t([65152,0,0,0,0,0,0,0]),10],multicast:[new t([65280,0,0,0,0,0,0,0]),8],loopback:[new t([0,0,0,0,0,0,0,1]),128],uniqueLocal:[new t([64512,0,0,0,0,0,0,0]),7],ipv4Mapped:[new t([0,0,0,0,0,65535,0,0]),96],rfc6145:[new t([0,0,0,0,65535,0,0,0]),96],rfc6052:[new t([100,65435,0,0,0,0,0,0]),96],"6to4":[new t([8194,0,0,0,0,0,0,0]),16],teredo:[new t([8193,0,0,0,0,0,0,0]),32],reserved:[[new t([8193,3512,0,0,0,0,0,0]),32]]},t.prototype.isIPv4MappedAddress=function(){return"ipv4Mapped"===this.range()},t.prototype.kind=function(){return"ipv6"},t.prototype.match=function(t,e){let i;if(void 0===e&&(i=t,t=i[0],e=i[1]),"ipv6"!==t.kind())throw new Error("ipaddr: cannot match ipv6 address with non-ipv6 one");return u(this.parts,t.parts,16,e)},t.prototype.prefixLengthFromSubnetMask=function(){let t=0,e=!1;const i={0:16,32768:15,49152:14,57344:13,61440:12,63488:11,64512:10,65024:9,65280:8,65408:7,65472:6,65504:5,65520:4,65528:3,65532:2,65534:1,65535:0};let r,s;for(let n=7;n>=0;n-=1){if(r=this.parts[n],!(r in i))return null;if(s=i[r],e&&0!==s)return null;16!==s&&(e=!0),t+=s}return 128-t},t.prototype.range=function(){return d.subnetMatch(this,this.SpecialRanges)},t.prototype.toByteArray=function(){let t;const e=[],i=this.parts;for(let r=0;r<i.length;r++)t=i[r],e.push(t>>8),e.push(255&t);return e},t.prototype.toFixedLengthString=function(){const t=function(){const t=[];for(let e=0;e<this.parts.length;e++)t.push(p(this.parts[e].toString(16),4));return t}.call(this).join(":");let e="";return this.zoneId&&(e=`%${this.zoneId}`),t+e},t.prototype.toIPv4Address=function(){if(!this.isIPv4MappedAddress())throw new Error("ipaddr: trying to convert a generic ipv6 address to ipv4");const t=this.parts.slice(-2),e=t[0],i=t[1];return new d.IPv4([e>>8,255&e,i>>8,255&i])},t.prototype.toNormalizedString=function(){const t=function(){const t=[];for(let e=0;e<this.parts.length;e++)t.push(this.parts[e].toString(16));return t}.call(this).join(":");let e="";return this.zoneId&&(e=`%${this.zoneId}`),t+e},t.prototype.toRFC5952String=function(){const t=/((^|:)(0(:|$)){2,})/g,e=this.toNormalizedString();let i,r=0,s=-1;for(;i=t.exec(e);)i[0].length>s&&(r=i.index,s=i[0].length);return s<0?e:`${e.substring(0,r)}::${e.substring(r+s)}`},t.prototype.toString=function(){return this.toNormalizedString().replace(/((^|:)(0(:|$))+)/,"::")},t}(),d.IPv6.broadcastAddressFromCIDR=function(t){try{const e=this.parseCIDR(t),i=e[0].toByteArray(),r=this.subnetMaskFromPrefixLength(e[1]).toByteArray(),s=[];let n=0;for(;n<16;)s.push(parseInt(i[n],10)|255^parseInt(r[n],10)),n++;return new this(s)}catch(t){throw new Error(`ipaddr: the address does not have IPv6 CIDR format (${t})`)}},d.IPv6.isIPv6=function(t){return null!==this.parser(t)},d.IPv6.isValid=function(t){if("string"==typeof t&&-1===t.indexOf(":"))return!1;try{const e=this.parser(t);return new this(e.parts,e.zoneId),!0}catch(t){return!1}},d.IPv6.networkAddressFromCIDR=function(t){let e,i,r,s,n;try{for(e=this.parseCIDR(t),r=e[0].toByteArray(),n=this.subnetMaskFromPrefixLength(e[1]).toByteArray(),s=[],i=0;i<16;)s.push(parseInt(r[i],10)&parseInt(n[i],10)),i++;return new this(s)}catch(t){throw new Error(`ipaddr: the address does not have IPv6 CIDR format (${t})`)}},d.IPv6.parse=function(t){const e=this.parser(t);if(null===e.parts)throw new Error("ipaddr: string is not formatted like an IPv6 Address");return new this(e.parts,e.zoneId)},d.IPv6.parseCIDR=function(t){let e,i,r;if((i=t.match(/^(.+)\/(\d+)$/))&&(e=parseInt(i[2]),e>=0&&e<=128))return r=[this.parse(i[1]),e],Object.defineProperty(r,"toString",{value:function(){return this.join("/")}}),r;throw new Error("ipaddr: string is not formatted like an IPv6 CIDR range")},d.IPv6.parser=function(t){let e,i,r,s,n,o;if(r=t.match(c.deprecatedTransitional))return this.parser(`::ffff:${r[1]}`);if(c.native.test(t))return l(t,8);if((r=t.match(c.transitional))&&(o=r[6]||"",e=l(r[1].slice(0,-1)+o,6),e.parts)){for(n=[parseInt(r[2]),parseInt(r[3]),parseInt(r[4]),parseInt(r[5])],i=0;i<n.length;i++)if(s=n[i],!(0<=s&&s<=255))return null;return e.parts.push(n[0]<<8|n[1]),e.parts.push(n[2]<<8|n[3]),{parts:e.parts,zoneId:e.zoneId}}return null},d.IPv6.subnetMaskFromPrefixLength=function(t){if((t=parseInt(t))<0||t>128)throw new Error("ipaddr: invalid IPv6 prefix length");const e=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];let i=0;const r=Math.floor(t/8);for(;i<r;)e[i]=255,i++;return r<16&&(e[r]=Math.pow(2,t%8)-1<<8-t%8),new this(e)},d.fromByteArray=function(t){const e=t.length;if(4===e)return new d.IPv4(t);if(16===e)return new d.IPv6(t);throw new Error("ipaddr: the binary input is neither an IPv6 nor IPv4 address")},d.isValid=function(t){return d.IPv6.isValid(t)||d.IPv4.isValid(t)},d.parse=function(t){if(d.IPv6.isValid(t))return d.IPv6.parse(t);if(d.IPv4.isValid(t))return d.IPv4.parse(t);throw new Error("ipaddr: the address has neither IPv6 nor IPv4 format")},d.parseCIDR=function(t){try{return d.IPv6.parseCIDR(t)}catch(e){try{return d.IPv4.parseCIDR(t)}catch(t){throw new Error("ipaddr: the address has neither IPv6 nor IPv4 CIDR format")}}},d.process=function(t){const e=this.parse(t);return"ipv6"===e.kind()&&e.isIPv4MappedAddress()?e.toIPv4Address():e},d.subnetMatch=function(t,e,i){let r,s,n,o;for(s in null==i&&(i="unicast"),e)if(Object.prototype.hasOwnProperty.call(e,s))for(n=e[s],!n[0]||n[0]instanceof Array||(n=[n]),r=0;r<n.length;r++)if(o=n[r],t.kind()===o[0].kind()&&t.match.apply(t,o))return s;return i},t.exports?t.exports=d:e.ipaddr=d}(i)}));class De{static decodeIP(t){if(64===t.length&&0===parseInt(t,16))return"::/0";if(16!==t.length)return t;const e=parseInt(t.slice(8),16).toString(2).split("").reduce(((t,e)=>t+ +e),0);let i=t.slice(0,8).replace(/(.{2})/g,(t=>`${parseInt(t,16)}.`));return i=i.slice(0,-1),`${i}/${e}`}static toString(e){if(4===e.byteLength||16===e.byteLength){const t=new Uint8Array(e);return Pe.fromByteArray(Array.from(t)).toString()}return this.decodeIP(t.Convert.ToHex(e))}static fromString(t){const e=Pe.parse(t);return new Uint8Array(e.toByteArray()).buffer}}let be=class{constructor(t={}){Object.assign(this,t)}toString(){return this.bmpString||this.printableString||this.teletexString||this.universalString||this.utf8String||""}};ge([fe({type:kt.TeletexString})],be.prototype,"teletexString",void 0),ge([fe({type:kt.PrintableString})],be.prototype,"printableString",void 0),ge([fe({type:kt.UniversalString})],be.prototype,"universalString",void 0),ge([fe({type:kt.Utf8String})],be.prototype,"utf8String",void 0),ge([fe({type:kt.BmpString})],be.prototype,"bmpString",void 0),be=ge([de({type:Mt.Choice})],be);let Be=class extends be{constructor(t={}){super(t),Object.assign(this,t)}toString(){return this.ia5String||(this.anyValue?t.Convert.ToHex(this.anyValue):super.toString())}};ge([fe({type:kt.IA5String})],Be.prototype,"ia5String",void 0),ge([fe({type:kt.Any})],Be.prototype,"anyValue",void 0),Be=ge([de({type:Mt.Choice})],Be);class Ie{constructor(t={}){this.type="",this.value=new Be,Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],Ie.prototype,"type",void 0),ge([fe({type:Be})],Ie.prototype,"value",void 0);let Te=ve=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,ve.prototype)}};Te=ve=ge([de({type:Mt.Set,itemType:Ie})],Te);let xe=Ee=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Ee.prototype)}};xe=Ee=ge([de({type:Mt.Sequence,itemType:Te})],xe);let Re=we=class extends xe{constructor(t){super(t),Object.setPrototypeOf(this,we.prototype)}};Re=we=ge([de({type:Mt.Sequence})],Re);const Oe={fromASN:t=>De.toString(Lt.fromASN(t)),toASN:t=>Lt.toASN(De.fromString(t))};class Ne{constructor(t={}){this.typeId="",this.value=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],Ne.prototype,"typeId",void 0),ge([fe({type:kt.Any,context:0})],Ne.prototype,"value",void 0);class Me{constructor(t={}){this.partyName=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:be,optional:!0,context:0,implicit:!0})],Me.prototype,"nameAssigner",void 0),ge([fe({type:be,context:1,implicit:!0})],Me.prototype,"partyName",void 0);let ke=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:Ne,context:0,implicit:!0})],ke.prototype,"otherName",void 0),ge([fe({type:kt.IA5String,context:1,implicit:!0})],ke.prototype,"rfc822Name",void 0),ge([fe({type:kt.IA5String,context:2,implicit:!0})],ke.prototype,"dNSName",void 0),ge([fe({type:kt.Any,context:3,implicit:!0})],ke.prototype,"x400Address",void 0),ge([fe({type:Re,context:4,implicit:!1})],ke.prototype,"directoryName",void 0),ge([fe({type:Me,context:5})],ke.prototype,"ediPartyName",void 0),ge([fe({type:kt.IA5String,context:6,implicit:!0})],ke.prototype,"uniformResourceIdentifier",void 0),ge([fe({type:kt.OctetString,context:7,implicit:!0,converter:Oe})],ke.prototype,"iPAddress",void 0),ge([fe({type:kt.ObjectIdentifier,context:8,implicit:!0})],ke.prototype,"registeredID",void 0),ke=ge([de({type:Mt.Choice})],ke);const Ke="1.3.6.1.5.5.7.1";var He;const je=`${Ke}.1`;class _e{constructor(t={}){this.accessMethod="",this.accessLocation=new ke,Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],_e.prototype,"accessMethod",void 0),ge([fe({type:ke})],_e.prototype,"accessLocation",void 0);let Ue=He=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,He.prototype)}};Ue=He=ge([de({type:Mt.Sequence,itemType:_e})],Ue);class Fe extends ce{}class Ve{constructor(t={}){t&&Object.assign(this,t)}}ge([fe({type:Fe,context:0,optional:!0,implicit:!0})],Ve.prototype,"keyIdentifier",void 0),ge([fe({type:ke,context:1,optional:!0,implicit:!0,repeated:"sequence"})],Ve.prototype,"authorityCertIssuer",void 0),ge([fe({type:kt.Integer,context:2,optional:!0,implicit:!0,converter:_t})],Ve.prototype,"authorityCertSerialNumber",void 0);class Le{constructor(t={}){this.cA=!1,Object.assign(this,t)}}var Ge;ge([fe({type:kt.Boolean,defaultValue:!1})],Le.prototype,"cA",void 0),ge([fe({type:kt.Integer,optional:!0})],Le.prototype,"pathLenConstraint",void 0);let $e=Ge=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Ge.prototype)}};var Qe;$e=Ge=ge([de({type:Mt.Sequence,itemType:ke})],$e);let We=Qe=class extends $e{constructor(t){super(t),Object.setPrototypeOf(this,Qe.prototype)}};var qe;We=Qe=ge([de({type:Mt.Sequence})],We);let ze=class{constructor(t={}){Object.assign(this,t)}toString(){return this.ia5String||this.visibleString||this.bmpString||this.utf8String}};ge([fe({type:kt.IA5String})],ze.prototype,"ia5String",void 0),ge([fe({type:kt.VisibleString})],ze.prototype,"visibleString",void 0),ge([fe({type:kt.BmpString})],ze.prototype,"bmpString",void 0),ge([fe({type:kt.Utf8String})],ze.prototype,"utf8String",void 0),ze=ge([de({type:Mt.Choice})],ze);class Je{constructor(t={}){this.organization=new ze,this.noticeNumbers=[],Object.assign(this,t)}}ge([fe({type:ze})],Je.prototype,"organization",void 0),ge([fe({type:kt.Integer,repeated:"sequence"})],Je.prototype,"noticeNumbers",void 0);class Ze{constructor(t={}){Object.assign(this,t)}}ge([fe({type:Je,optional:!0})],Ze.prototype,"noticeRef",void 0),ge([fe({type:ze,optional:!0})],Ze.prototype,"explicitText",void 0);let Xe=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:kt.IA5String})],Xe.prototype,"cPSuri",void 0),ge([fe({type:Ze})],Xe.prototype,"userNotice",void 0),Xe=ge([de({type:Mt.Choice})],Xe);class Ye{constructor(t={}){this.policyQualifierId="",this.qualifier=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],Ye.prototype,"policyQualifierId",void 0),ge([fe({type:kt.Any})],Ye.prototype,"qualifier",void 0);class ti{constructor(t={}){this.policyIdentifier="",Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],ti.prototype,"policyIdentifier",void 0),ge([fe({type:Ye,repeated:"sequence",optional:!0})],ti.prototype,"policyQualifiers",void 0);let ei=qe=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,qe.prototype)}};ei=qe=ge([de({type:Mt.Sequence,itemType:ti})],ei);let ii=class{constructor(t=0){this.value=t}};ge([fe({type:kt.Integer})],ii.prototype,"value",void 0),ii=ge([de({type:Mt.Choice})],ii);let ri=class extends ii{};var si,ni;ri=ge([de({type:Mt.Choice})],ri),function(t){t[t.unused=1]="unused",t[t.keyCompromise=2]="keyCompromise",t[t.cACompromise=4]="cACompromise",t[t.affiliationChanged=8]="affiliationChanged",t[t.superseded=16]="superseded",t[t.cessationOfOperation=32]="cessationOfOperation",t[t.certificateHold=64]="certificateHold",t[t.privilegeWithdrawn=128]="privilegeWithdrawn",t[t.aACompromise=256]="aACompromise"}(ni||(ni={}));class oi extends ae{toJSON(){const t=[],e=this.toNumber();return e&ni.aACompromise&&t.push("aACompromise"),e&ni.affiliationChanged&&t.push("affiliationChanged"),e&ni.cACompromise&&t.push("cACompromise"),e&ni.certificateHold&&t.push("certificateHold"),e&ni.cessationOfOperation&&t.push("cessationOfOperation"),e&ni.keyCompromise&&t.push("keyCompromise"),e&ni.privilegeWithdrawn&&t.push("privilegeWithdrawn"),e&ni.superseded&&t.push("superseded"),e&ni.unused&&t.push("unused"),t}toString(){return`[${this.toJSON().join(", ")}]`}}let ai=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:ke,context:0,repeated:"sequence",implicit:!0})],ai.prototype,"fullName",void 0),ge([fe({type:Te,context:1,implicit:!0})],ai.prototype,"nameRelativeToCRLIssuer",void 0),ai=ge([de({type:Mt.Choice})],ai);class ci{constructor(t={}){Object.assign(this,t)}}ge([fe({type:ai,context:0,optional:!0})],ci.prototype,"distributionPoint",void 0),ge([fe({type:oi,context:1,optional:!0,implicit:!0})],ci.prototype,"reasons",void 0),ge([fe({type:ke,context:2,optional:!0,repeated:"sequence",implicit:!0})],ci.prototype,"cRLIssuer",void 0);let li=si=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,si.prototype)}};var ui;li=si=ge([de({type:Mt.Sequence,itemType:ci})],li);let hi=ui=class extends li{constructor(t){super(t),Object.setPrototypeOf(this,ui.prototype)}};hi=ui=ge([de({type:Mt.Sequence,itemType:ci})],hi);class pi{constructor(t={}){this.onlyContainsUserCerts=pi.ONLY,this.onlyContainsCACerts=pi.ONLY,this.indirectCRL=pi.ONLY,this.onlyContainsAttributeCerts=pi.ONLY,Object.assign(this,t)}}var di;pi.ONLY=!1,ge([fe({type:ai,context:0,optional:!0})],pi.prototype,"distributionPoint",void 0),ge([fe({type:kt.Boolean,context:1,defaultValue:pi.ONLY})],pi.prototype,"onlyContainsUserCerts",void 0),ge([fe({type:kt.Boolean,context:2,defaultValue:pi.ONLY})],pi.prototype,"onlyContainsCACerts",void 0),ge([fe({type:oi,context:3,optional:!0})],pi.prototype,"onlySomeReasons",void 0),ge([fe({type:kt.Boolean,context:4,defaultValue:pi.ONLY})],pi.prototype,"indirectCRL",void 0),ge([fe({type:kt.Boolean,context:5,defaultValue:pi.ONLY})],pi.prototype,"onlyContainsAttributeCerts",void 0),function(t){t[t.unspecified=0]="unspecified",t[t.keyCompromise=1]="keyCompromise",t[t.cACompromise=2]="cACompromise",t[t.affiliationChanged=3]="affiliationChanged",t[t.superseded=4]="superseded",t[t.cessationOfOperation=5]="cessationOfOperation",t[t.certificateHold=6]="certificateHold",t[t.removeFromCRL=8]="removeFromCRL",t[t.privilegeWithdrawn=9]="privilegeWithdrawn",t[t.aACompromise=10]="aACompromise"}(di||(di={}));let fi=class{constructor(t=di.unspecified){this.reason=di.unspecified,this.reason=t}toJSON(){return di[this.reason]}toString(){return this.toJSON()}};var yi;ge([fe({type:kt.Enumerated})],fi.prototype,"reason",void 0),fi=ge([de({type:Mt.Choice})],fi);let Si=yi=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,yi.prototype)}};Si=yi=ge([de({type:Mt.Sequence,itemType:kt.ObjectIdentifier})],Si);let Ci=class{constructor(t=new ArrayBuffer(0)){this.value=t}};ge([fe({type:kt.Integer,converter:_t})],Ci.prototype,"value",void 0),Ci=ge([de({type:Mt.Choice})],Ci);let Ai=class{constructor(t){this.value=new Date,t&&(this.value=t)}};var mi;ge([fe({type:kt.GeneralizedTime})],Ai.prototype,"value",void 0),Ai=ge([de({type:Mt.Choice})],Ai);let gi=mi=class extends $e{constructor(t){super(t),Object.setPrototypeOf(this,mi.prototype)}};var vi,Ei;gi=mi=ge([de({type:Mt.Sequence})],gi),function(t){t[t.digitalSignature=1]="digitalSignature",t[t.nonRepudiation=2]="nonRepudiation",t[t.keyEncipherment=4]="keyEncipherment",t[t.dataEncipherment=8]="dataEncipherment",t[t.keyAgreement=16]="keyAgreement",t[t.keyCertSign=32]="keyCertSign",t[t.cRLSign=64]="cRLSign",t[t.encipherOnly=128]="encipherOnly",t[t.decipherOnly=256]="decipherOnly"}(vi||(vi={}));class wi extends ae{toJSON(){const t=this.toNumber(),e=[];return t&vi.cRLSign&&e.push("crlSign"),t&vi.dataEncipherment&&e.push("dataEncipherment"),t&vi.decipherOnly&&e.push("decipherOnly"),t&vi.digitalSignature&&e.push("digitalSignature"),t&vi.encipherOnly&&e.push("encipherOnly"),t&vi.keyAgreement&&e.push("keyAgreement"),t&vi.keyCertSign&&e.push("keyCertSign"),t&vi.keyEncipherment&&e.push("keyEncipherment"),t&vi.nonRepudiation&&e.push("nonRepudiation"),e}toString(){return`[${this.toJSON().join(", ")}]`}}class Pi{constructor(t={}){this.base=new ke,this.minimum=0,Object.assign(this,t)}}ge([fe({type:ke})],Pi.prototype,"base",void 0),ge([fe({type:kt.Integer,context:0,defaultValue:0,implicit:!0})],Pi.prototype,"minimum",void 0),ge([fe({type:kt.Integer,context:1,optional:!0,implicit:!0})],Pi.prototype,"maximum",void 0);let Di=Ei=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Ei.prototype)}};Di=Ei=ge([de({type:Mt.Sequence,itemType:Pi})],Di);class bi{constructor(t={}){Object.assign(this,t)}}ge([fe({type:Di,context:0,optional:!0,implicit:!0})],bi.prototype,"permittedSubtrees",void 0),ge([fe({type:Di,context:1,optional:!0,implicit:!0})],bi.prototype,"excludedSubtrees",void 0);class Bi{constructor(t={}){Object.assign(this,t)}}var Ii;ge([fe({type:kt.Integer,context:0,implicit:!0,optional:!0,converter:_t})],Bi.prototype,"requireExplicitPolicy",void 0),ge([fe({type:kt.Integer,context:1,implicit:!0,optional:!0,converter:_t})],Bi.prototype,"inhibitPolicyMapping",void 0);class Ti{constructor(t={}){this.issuerDomainPolicy="",this.subjectDomainPolicy="",Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],Ti.prototype,"issuerDomainPolicy",void 0),ge([fe({type:kt.ObjectIdentifier})],Ti.prototype,"subjectDomainPolicy",void 0);let xi=Ii=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Ii.prototype)}};var Ri;xi=Ii=ge([de({type:Mt.Sequence,itemType:Ti})],xi);let Oi=Ri=class extends $e{constructor(t){super(t),Object.setPrototypeOf(this,Ri.prototype)}};Oi=Ri=ge([de({type:Mt.Sequence})],Oi);class Ni{constructor(t={}){this.type="",this.values=[],Object.assign(this,t)}}var Mi;ge([fe({type:kt.ObjectIdentifier})],Ni.prototype,"type",void 0),ge([fe({type:kt.Any,repeated:"set"})],Ni.prototype,"values",void 0);let ki=Mi=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Mi.prototype)}};ki=Mi=ge([de({type:Mt.Sequence,itemType:Ni})],ki);class Ki extends Fe{}class Hi{constructor(t={}){Object.assign(this,t)}}var ji,_i;ge([fe({type:kt.GeneralizedTime,context:0,implicit:!0,optional:!0})],Hi.prototype,"notBefore",void 0),ge([fe({type:kt.GeneralizedTime,context:1,implicit:!0,optional:!0})],Hi.prototype,"notAfter",void 0),function(t){t[t.keyUpdateAllowed=1]="keyUpdateAllowed",t[t.newExtensions=2]="newExtensions",t[t.pKIXCertificate=4]="pKIXCertificate"}(ji||(ji={}));class Ui extends ae{toJSON(){const t=[],e=this.toNumber();return e&ji.pKIXCertificate&&t.push("pKIXCertificate"),e&ji.newExtensions&&t.push("newExtensions"),e&ji.keyUpdateAllowed&&t.push("keyUpdateAllowed"),t}toString(){return`[${this.toJSON().join(", ")}]`}}class Fi{constructor(t={}){this.entrustVers="",this.entrustInfoFlags=new Ui,Object.assign(this,t)}}ge([fe({type:kt.GeneralString})],Fi.prototype,"entrustVers",void 0),ge([fe({type:Ui})],Fi.prototype,"entrustInfoFlags",void 0);const Vi=`${Ke}.11`;let Li=_i=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,_i.prototype)}};Li=_i=ge([de({type:Mt.Sequence,itemType:_e})],Li);class Gi{constructor(t={}){this.algorithm="",Object.assign(this,t)}isEqual(e){return e instanceof Gi&&e.algorithm==this.algorithm&&(e.parameters&&this.parameters&&t.isEqual(e.parameters,this.parameters)||e.parameters===this.parameters)}}ge([fe({type:kt.ObjectIdentifier})],Gi.prototype,"algorithm",void 0),ge([fe({type:kt.Any,optional:!0})],Gi.prototype,"parameters",void 0);class $i{constructor(t={}){this.algorithm=new Gi,this.subjectPublicKey=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:Gi})],$i.prototype,"algorithm",void 0),ge([fe({type:kt.BitString})],$i.prototype,"subjectPublicKey",void 0);let Qi=class{constructor(t){t&&("string"==typeof t||"number"==typeof t?this.utcTime=new Date(t):t instanceof Date?this.utcTime=t:Object.assign(this,t))}getTime(){const t=this.utcTime||this.generalTime;if(!t)throw new Error("Cannot get time from CHOICE object");return t}};ge([fe({type:kt.UTCTime})],Qi.prototype,"utcTime",void 0),ge([fe({type:kt.GeneralizedTime})],Qi.prototype,"generalTime",void 0),Qi=ge([de({type:Mt.Choice})],Qi);class Wi{constructor(t){this.notBefore=new Qi(new Date),this.notAfter=new Qi(new Date),t&&(this.notBefore=new Qi(t.notBefore),this.notAfter=new Qi(t.notAfter))}}var qi;ge([fe({type:Qi})],Wi.prototype,"notBefore",void 0),ge([fe({type:Qi})],Wi.prototype,"notAfter",void 0);class zi{constructor(t={}){this.extnID="",this.critical=zi.CRITICAL,this.extnValue=new ce,Object.assign(this,t)}}zi.CRITICAL=!1,ge([fe({type:kt.ObjectIdentifier})],zi.prototype,"extnID",void 0),ge([fe({type:kt.Boolean,defaultValue:zi.CRITICAL})],zi.prototype,"critical",void 0),ge([fe({type:ce})],zi.prototype,"extnValue",void 0);let Ji=qi=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,qi.prototype)}};var Zi;Ji=qi=ge([de({type:Mt.Sequence,itemType:zi})],Ji),function(t){t[t.v1=0]="v1",t[t.v2=1]="v2",t[t.v3=2]="v3"}(Zi||(Zi={}));class Xi{constructor(t={}){this.version=Zi.v1,this.serialNumber=new ArrayBuffer(0),this.signature=new Gi,this.issuer=new Re,this.validity=new Wi,this.subject=new Re,this.subjectPublicKeyInfo=new $i,Object.assign(this,t)}}ge([fe({type:kt.Integer,context:0,defaultValue:Zi.v1})],Xi.prototype,"version",void 0),ge([fe({type:kt.Integer,converter:_t})],Xi.prototype,"serialNumber",void 0),ge([fe({type:Gi})],Xi.prototype,"signature",void 0),ge([fe({type:Re})],Xi.prototype,"issuer",void 0),ge([fe({type:Wi})],Xi.prototype,"validity",void 0),ge([fe({type:Re})],Xi.prototype,"subject",void 0),ge([fe({type:$i})],Xi.prototype,"subjectPublicKeyInfo",void 0),ge([fe({type:kt.BitString,context:1,implicit:!0,optional:!0})],Xi.prototype,"issuerUniqueID",void 0),ge([fe({type:kt.BitString,context:2,implicit:!0,optional:!0})],Xi.prototype,"subjectUniqueID",void 0),ge([fe({type:Ji,context:3,optional:!0})],Xi.prototype,"extensions",void 0);class Yi{constructor(t={}){this.tbsCertificate=new Xi,this.signatureAlgorithm=new Gi,this.signatureValue=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:Xi})],Yi.prototype,"tbsCertificate",void 0),ge([fe({type:Gi})],Yi.prototype,"signatureAlgorithm",void 0),ge([fe({type:kt.BitString})],Yi.prototype,"signatureValue",void 0);class tr{constructor(t={}){this.userCertificate=new ArrayBuffer(0),this.revocationDate=new Qi,Object.assign(this,t)}}ge([fe({type:kt.Integer,converter:_t})],tr.prototype,"userCertificate",void 0),ge([fe({type:Qi})],tr.prototype,"revocationDate",void 0),ge([fe({type:zi,optional:!0,repeated:"sequence"})],tr.prototype,"crlEntryExtensions",void 0);class er{constructor(t={}){this.signature=new Gi,this.issuer=new Re,this.thisUpdate=new Qi,Object.assign(this,t)}}ge([fe({type:kt.Integer,optional:!0})],er.prototype,"version",void 0),ge([fe({type:Gi})],er.prototype,"signature",void 0),ge([fe({type:Re})],er.prototype,"issuer",void 0),ge([fe({type:Qi})],er.prototype,"thisUpdate",void 0),ge([fe({type:Qi,optional:!0})],er.prototype,"nextUpdate",void 0),ge([fe({type:tr,repeated:"sequence",optional:!0})],er.prototype,"revokedCertificates",void 0),ge([fe({type:zi,optional:!0,context:0,repeated:"sequence"})],er.prototype,"crlExtensions",void 0);class ir{constructor(t={}){this.tbsCertList=new er,this.signatureAlgorithm=new Gi,this.signature=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:er})],ir.prototype,"tbsCertList",void 0),ge([fe({type:Gi})],ir.prototype,"signatureAlgorithm",void 0),ge([fe({type:kt.BitString})],ir.prototype,"signature",void 0);const rr="1.2.840.10045.2.1";function sr(t){return new Gi({algorithm:t})}sr("1.2.840.10045.4.1"),sr("1.2.840.10045.4.3.1"),sr("1.2.840.10045.4.3.2"),sr("1.2.840.10045.4.3.3"),sr("1.2.840.10045.4.3.4");let nr=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:kt.ObjectIdentifier})],nr.prototype,"namedCurve",void 0),nr=ge([de({type:Mt.Choice})],nr);class or{constructor(t={}){this.version=1,this.privateKey=new ce,Object.assign(this,t)}}ge([fe({type:kt.Integer})],or.prototype,"version",void 0),ge([fe({type:ce})],or.prototype,"privateKey",void 0),ge([fe({type:nr,context:0,optional:!0})],or.prototype,"parameters",void 0),ge([fe({type:kt.BitString,context:1,optional:!0})],or.prototype,"publicKey",void 0);class ar{constructor(t={}){this.r=new ArrayBuffer(0),this.s=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.Integer,converter:_t})],ar.prototype,"r",void 0),ge([fe({type:kt.Integer,converter:_t})],ar.prototype,"s",void 0);const cr="1.2.840.113549.1.1",lr=`${cr}.1`,ur=`${cr}.7`,hr=`${cr}.9`,pr=`${cr}.10`,dr=`${cr}.2`,fr=`${cr}.4`,yr=`${cr}.5`,Sr=`${cr}.12`,Cr=`${cr}.13`,Ar=`${cr}.15`,mr=`${cr}.16`,gr=`${cr}.8`;function vr(t){return new Gi({algorithm:t,parameters:null})}vr("1.2.840.113549.2.2"),vr("1.2.840.113549.2.5");const Er=vr("1.3.14.3.2.26");vr("2.16.840.1.101.3.4.2.4"),vr("2.16.840.1.101.3.4.2.1"),vr("2.16.840.1.101.3.4.2.2"),vr("2.16.840.1.101.3.4.2.3"),vr("2.16.840.1.101.3.4.2.5"),vr("2.16.840.1.101.3.4.2.6");const wr=new Gi({algorithm:gr,parameters:me.serialize(Er)}),Pr=new Gi({algorithm:hr,parameters:me.serialize(Lt.toASN(new Uint8Array([218,57,163,238,94,107,75,13,50,85,191,239,149,96,24,144,175,216,7,9]).buffer))});vr(lr),vr(dr),vr(fr),vr(yr),vr(Ar),vr(mr),vr(Sr),vr(Cr),vr(Ar),vr(mr);class Dr{constructor(t={}){this.hashAlgorithm=new Gi(Er),this.maskGenAlgorithm=new Gi({algorithm:gr,parameters:me.serialize(Er)}),this.pSourceAlgorithm=new Gi(Pr),Object.assign(this,t)}}ge([fe({type:Gi,context:0,defaultValue:Er})],Dr.prototype,"hashAlgorithm",void 0),ge([fe({type:Gi,context:1,defaultValue:wr})],Dr.prototype,"maskGenAlgorithm",void 0),ge([fe({type:Gi,context:2,defaultValue:Pr})],Dr.prototype,"pSourceAlgorithm",void 0),new Gi({algorithm:ur,parameters:me.serialize(new Dr)});class br{constructor(t={}){this.hashAlgorithm=new Gi(Er),this.maskGenAlgorithm=new Gi({algorithm:gr,parameters:me.serialize(Er)}),this.saltLength=20,this.trailerField=1,Object.assign(this,t)}}ge([fe({type:Gi,context:0,defaultValue:Er})],br.prototype,"hashAlgorithm",void 0),ge([fe({type:Gi,context:1,defaultValue:wr})],br.prototype,"maskGenAlgorithm",void 0),ge([fe({type:kt.Integer,context:2,defaultValue:20})],br.prototype,"saltLength",void 0),ge([fe({type:kt.Integer,context:3,defaultValue:1})],br.prototype,"trailerField",void 0),new Gi({algorithm:pr,parameters:me.serialize(new br)});class Br{constructor(t={}){this.digestAlgorithm=new Gi,this.digest=new ce,Object.assign(this,t)}}var Ir;ge([fe({type:Gi})],Br.prototype,"digestAlgorithm",void 0),ge([fe({type:ce})],Br.prototype,"digest",void 0);class Tr{constructor(t={}){this.prime=new ArrayBuffer(0),this.exponent=new ArrayBuffer(0),this.coefficient=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.Integer,converter:_t})],Tr.prototype,"prime",void 0),ge([fe({type:kt.Integer,converter:_t})],Tr.prototype,"exponent",void 0),ge([fe({type:kt.Integer,converter:_t})],Tr.prototype,"coefficient",void 0);let xr=Ir=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Ir.prototype)}};xr=Ir=ge([de({type:Mt.Sequence,itemType:Tr})],xr);class Rr{constructor(t={}){this.version=0,this.modulus=new ArrayBuffer(0),this.publicExponent=new ArrayBuffer(0),this.privateExponent=new ArrayBuffer(0),this.prime1=new ArrayBuffer(0),this.prime2=new ArrayBuffer(0),this.exponent1=new ArrayBuffer(0),this.exponent2=new ArrayBuffer(0),this.coefficient=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.Integer})],Rr.prototype,"version",void 0),ge([fe({type:kt.Integer,converter:_t})],Rr.prototype,"modulus",void 0),ge([fe({type:kt.Integer,converter:_t})],Rr.prototype,"publicExponent",void 0),ge([fe({type:kt.Integer,converter:_t})],Rr.prototype,"privateExponent",void 0),ge([fe({type:kt.Integer,converter:_t})],Rr.prototype,"prime1",void 0),ge([fe({type:kt.Integer,converter:_t})],Rr.prototype,"prime2",void 0),ge([fe({type:kt.Integer,converter:_t})],Rr.prototype,"exponent1",void 0),ge([fe({type:kt.Integer,converter:_t})],Rr.prototype,"exponent2",void 0),ge([fe({type:kt.Integer,converter:_t})],Rr.prototype,"coefficient",void 0),ge([fe({type:xr,optional:!0})],Rr.prototype,"otherPrimeInfos",void 0);class Or{constructor(t={}){this.modulus=new ArrayBuffer(0),this.publicExponent=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.Integer,converter:_t})],Or.prototype,"modulus",void 0),ge([fe({type:kt.Integer,converter:_t})],Or.prototype,"publicExponent",void 0);
48
+ */function d(){if("undefined"==typeof BigInt)throw new Error("BigInt is not defined. Your environment doesn't implement BigInt.")}function y(t){let e=0,i=0;for(let i=0;i<t.length;i++)e+=t[i].byteLength;const r=new Uint8Array(e);for(let e=0;e<t.length;e++){const s=t[e];r.set(new Uint8Array(s),i),i+=s.byteLength}return r.buffer}function f(t,e,i,r){return e instanceof Uint8Array?e.byteLength?i<0?(t.error="Wrong parameter: inputOffset less than zero",!1):r<0?(t.error="Wrong parameter: inputLength less than zero",!1):!(e.byteLength-i-r<0&&(t.error="End of input reached before message was fully decoded (inconsistent offset and length values)",1)):(t.error="Wrong parameter: inputBuffer has zero length",!1):(t.error="Wrong parameter: inputBuffer must be 'Uint8Array'",!1)}class S{constructor(){this.items=[]}write(t){this.items.push(t)}final(){return y(this.items)}}const C=[new Uint8Array([1])],A=new ArrayBuffer(0),m=new Uint8Array(0);function g(e){var i;return(i=class extends e{constructor(...e){var i;super(...e);const r=e[0]||{};this.isHexOnly=null!==(i=r.isHexOnly)&&void 0!==i&&i,this.valueHexView=r.valueHex?t.BufferSourceConverter.toUint8Array(r.valueHex):m}get valueHex(){return this.valueHexView.slice().buffer}set valueHex(t){this.valueHexView=new Uint8Array(t)}fromBER(t,e,i){const r=t instanceof ArrayBuffer?new Uint8Array(t):t;if(!f(this,r,e,i))return-1;const s=e+i;return this.valueHexView=r.subarray(e,s),this.valueHexView.length?(this.blockLength=i,s):(this.warnings.push("Zero buffer length"),e)}toBER(t=!1){return this.isHexOnly?t?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.byteLength===this.valueHexView.buffer.byteLength?this.valueHexView.buffer:this.valueHexView.slice().buffer:(this.error="Flag 'isHexOnly' is not set, abort",A)}toJSON(){return{...super.toJSON(),isHexOnly:this.isHexOnly,valueHex:t.Convert.ToHex(this.valueHexView)}}}).NAME="hexBlock",i}class v{constructor({blockLength:e=0,error:i="",warnings:r=[],valueBeforeDecode:s=m}={}){this.blockLength=e,this.error=i,this.warnings=r,this.valueBeforeDecodeView=t.BufferSourceConverter.toUint8Array(s)}static blockName(){return this.NAME}get valueBeforeDecode(){return this.valueBeforeDecodeView.slice().buffer}set valueBeforeDecode(t){this.valueBeforeDecodeView=new Uint8Array(t)}toJSON(){return{blockName:this.constructor.NAME,blockLength:this.blockLength,error:this.error,warnings:this.warnings,valueBeforeDecode:t.Convert.ToHex(this.valueBeforeDecodeView)}}}v.NAME="baseBlock";class E extends v{fromBER(t,e,i){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}toBER(t,e){throw TypeError("User need to make a specific function in a class which extends 'ValueBlock'")}}E.NAME="valueBlock";class w extends(g(v)){constructor({idBlock:e={}}={}){var i,r,s,n;super(),e?(this.isHexOnly=null!==(i=e.isHexOnly)&&void 0!==i&&i,this.valueHexView=e.valueHex?t.BufferSourceConverter.toUint8Array(e.valueHex):m,this.tagClass=null!==(r=e.tagClass)&&void 0!==r?r:-1,this.tagNumber=null!==(s=e.tagNumber)&&void 0!==s?s:-1,this.isConstructed=null!==(n=e.isConstructed)&&void 0!==n&&n):(this.tagClass=-1,this.tagNumber=-1,this.isConstructed=!1)}toBER(t=!1){let e=0;switch(this.tagClass){case 1:e|=0;break;case 2:e|=64;break;case 3:e|=128;break;case 4:e|=192;break;default:return this.error="Unknown tag class",A}if(this.isConstructed&&(e|=32),this.tagNumber<31&&!this.isHexOnly){const i=new Uint8Array(1);if(!t){let t=this.tagNumber;t&=31,e|=t,i[0]=e}return i.buffer}if(!this.isHexOnly){const i=l(this.tagNumber,7),r=new Uint8Array(i),s=i.byteLength,n=new Uint8Array(s+1);if(n[0]=31|e,!t){for(let t=0;t<s-1;t++)n[t+1]=128|r[t];n[s]=r[s-1]}return n.buffer}const i=new Uint8Array(this.valueHexView.byteLength+1);if(i[0]=31|e,!t){const t=this.valueHexView;for(let e=0;e<t.length-1;e++)i[e+1]=128|t[e];i[this.valueHexView.byteLength]=t[t.length-1]}return i.buffer}fromBER(e,i,r){const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;const n=s.subarray(i,i+r);if(0===n.length)return this.error="Zero buffer length",-1;switch(192&n[0]){case 0:this.tagClass=1;break;case 64:this.tagClass=2;break;case 128:this.tagClass=3;break;case 192:this.tagClass=4;break;default:return this.error="Unknown tag class",-1}this.isConstructed=32==(32&n[0]),this.isHexOnly=!1;const o=31&n[0];if(31!==o)this.tagNumber=o,this.blockLength=1;else{let t=1,e=this.valueHexView=new Uint8Array(255),i=255;for(;128&n[t];){if(e[t-1]=127&n[t],t++,t>=n.length)return this.error="End of input reached before message was fully decoded",-1;if(t===i){i+=255;const t=new Uint8Array(i);for(let i=0;i<e.length;i++)t[i]=e[i];e=this.valueHexView=new Uint8Array(i)}}this.blockLength=t+1,e[t-1]=127&n[t];const r=new Uint8Array(t);for(let i=0;i<t;i++)r[i]=e[i];e=this.valueHexView=new Uint8Array(t),e.set(r),this.blockLength<=9?this.tagNumber=c(e,7):(this.isHexOnly=!0,this.warnings.push("Tag too long, represented as hex-coded"))}if(1===this.tagClass&&this.isConstructed)switch(this.tagNumber){case 1:case 2:case 5:case 6:case 9:case 13:case 14:case 23:case 24:case 31:case 32:case 33:case 34:return this.error="Constructed encoding used for primitive type",-1}return i+this.blockLength}toJSON(){return{...super.toJSON(),tagClass:this.tagClass,tagNumber:this.tagNumber,isConstructed:this.isConstructed}}}w.NAME="identificationBlock";class P extends v{constructor({lenBlock:t={}}={}){var e,i,r;super(),this.isIndefiniteForm=null!==(e=t.isIndefiniteForm)&&void 0!==e&&e,this.longFormUsed=null!==(i=t.longFormUsed)&&void 0!==i&&i,this.length=null!==(r=t.length)&&void 0!==r?r:0}fromBER(e,i,r){const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;const n=s.subarray(i,i+r);if(0===n.length)return this.error="Zero buffer length",-1;if(255===n[0])return this.error="Length block 0xFF is reserved by standard",-1;if(this.isIndefiniteForm=128===n[0],this.isIndefiniteForm)return this.blockLength=1,i+this.blockLength;if(this.longFormUsed=!!(128&n[0]),!1===this.longFormUsed)return this.length=n[0],this.blockLength=1,i+this.blockLength;const o=127&n[0];if(o>8)return this.error="Too big integer",-1;if(o+1>n.length)return this.error="End of input reached before message was fully decoded",-1;const a=i+1,l=s.subarray(a,a+o);return 0===l[o-1]&&this.warnings.push("Needlessly long encoded length"),this.length=c(l,8),this.longFormUsed&&this.length<=127&&this.warnings.push("Unnecessary usage of long length form"),this.blockLength=o+1,i+this.blockLength}toBER(t=!1){let e,i;if(this.length>127&&(this.longFormUsed=!0),this.isIndefiniteForm)return e=new ArrayBuffer(1),!1===t&&(i=new Uint8Array(e),i[0]=128),e;if(this.longFormUsed){const r=l(this.length,8);if(r.byteLength>127)return this.error="Too big length",A;if(e=new ArrayBuffer(r.byteLength+1),t)return e;const s=new Uint8Array(r);i=new Uint8Array(e),i[0]=128|r.byteLength;for(let t=0;t<r.byteLength;t++)i[t+1]=s[t];return e}return e=new ArrayBuffer(1),!1===t&&(i=new Uint8Array(e),i[0]=this.length),e}toJSON(){return{...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,longFormUsed:this.longFormUsed,length:this.length}}}P.NAME="lengthBlock";const b={};class D extends v{constructor({name:t="",optional:e=!1,primitiveSchema:i,...r}={},s){super(r),this.name=t,this.optional=e,i&&(this.primitiveSchema=i),this.idBlock=new w(r),this.lenBlock=new P(r),this.valueBlock=s?new s(r):new E(r)}fromBER(t,e,i){const r=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?i:this.lenBlock.length);return-1===r?(this.error=this.valueBlock.error,r):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),r)}toBER(t,e){const i=e||new S;e||I(this);const r=this.idBlock.toBER(t);if(i.write(r),this.lenBlock.isIndefiniteForm)i.write(new Uint8Array([128]).buffer),this.valueBlock.toBER(t,i),i.write(new ArrayBuffer(2));else{const e=this.valueBlock.toBER(t);this.lenBlock.length=e.byteLength;const r=this.lenBlock.toBER(t);i.write(r),i.write(e)}return e?A:i.final()}toJSON(){const t={...super.toJSON(),idBlock:this.idBlock.toJSON(),lenBlock:this.lenBlock.toJSON(),valueBlock:this.valueBlock.toJSON(),name:this.name,optional:this.optional};return this.primitiveSchema&&(t.primitiveSchema=this.primitiveSchema.toJSON()),t}toString(e="ascii"){return"ascii"===e?this.onAsciiEncoding():t.Convert.ToHex(this.toBER())}onAsciiEncoding(){return`${this.constructor.NAME} : ${t.Convert.ToHex(this.valueBlock.valueBeforeDecodeView)}`}isEqual(t){return this===t||t instanceof this.constructor&&function(t,e){if(t.byteLength!==e.byteLength)return!1;const i=new Uint8Array(t),r=new Uint8Array(e);for(let t=0;t<i.length;t++)if(i[t]!==r[t])return!1;return!0}(this.toBER(),t.toBER())}}function I(t){if(t instanceof b.Constructed)for(const e of t.valueBlock.value)I(e)&&(t.lenBlock.isIndefiniteForm=!0);return!!t.lenBlock.isIndefiniteForm}D.NAME="BaseBlock";class B extends D{constructor({value:t="",...e}={},i){super(e,i),t&&this.fromString(t)}getValue(){return this.valueBlock.value}setValue(t){this.valueBlock.value=t}fromBER(t,e,i){const r=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?i:this.lenBlock.length);return-1===r?(this.error=this.valueBlock.error,r):(this.fromBuffer(this.valueBlock.valueHexView),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),r)}onAsciiEncoding(){return`${this.constructor.NAME} : '${this.valueBlock.value}'`}}B.NAME="BaseStringBlock";class T extends(g(E)){constructor({isHexOnly:t=!0,...e}={}){super(e),this.isHexOnly=t}}var x;T.NAME="PrimitiveValueBlock";class O extends D{constructor(t={}){super(t,T),this.idBlock.isConstructed=!1}}function R(t,e=0,i=t.length){const r=e;let s=new D({},E);const n=new v;if(!f(n,t,e,i))return s.error=n.error,{offset:-1,result:s};if(!t.subarray(e,e+i).length)return s.error="Zero buffer length",{offset:-1,result:s};let o=s.idBlock.fromBER(t,e,i);if(s.idBlock.warnings.length&&s.warnings.concat(s.idBlock.warnings),-1===o)return s.error=s.idBlock.error,{offset:-1,result:s};if(o=s.lenBlock.fromBER(t,e=o,i-=s.idBlock.blockLength),s.lenBlock.warnings.length&&s.warnings.concat(s.lenBlock.warnings),-1===o)return s.error=s.lenBlock.error,{offset:-1,result:s};if(e=o,i-=s.lenBlock.blockLength,!s.idBlock.isConstructed&&s.lenBlock.isIndefiniteForm)return s.error="Indefinite length form used for primitive encoding form",{offset:-1,result:s};let a=D;switch(s.idBlock.tagClass){case 1:if(s.idBlock.tagNumber>=37&&!1===s.idBlock.isHexOnly)return s.error="UNIVERSAL 37 and upper tags are reserved by ASN.1 standard",{offset:-1,result:s};switch(s.idBlock.tagNumber){case 0:if(s.idBlock.isConstructed&&s.lenBlock.length>0)return s.error="Type [UNIVERSAL 0] is reserved",{offset:-1,result:s};a=b.EndOfContent;break;case 1:a=b.Boolean;break;case 2:a=b.Integer;break;case 3:a=b.BitString;break;case 4:a=b.OctetString;break;case 5:a=b.Null;break;case 6:a=b.ObjectIdentifier;break;case 10:a=b.Enumerated;break;case 12:a=b.Utf8String;break;case 13:a=b.RelativeObjectIdentifier;break;case 14:a=b.TIME;break;case 15:return s.error="[UNIVERSAL 15] is reserved by ASN.1 standard",{offset:-1,result:s};case 16:a=b.Sequence;break;case 17:a=b.Set;break;case 18:a=b.NumericString;break;case 19:a=b.PrintableString;break;case 20:a=b.TeletexString;break;case 21:a=b.VideotexString;break;case 22:a=b.IA5String;break;case 23:a=b.UTCTime;break;case 24:a=b.GeneralizedTime;break;case 25:a=b.GraphicString;break;case 26:a=b.VisibleString;break;case 27:a=b.GeneralString;break;case 28:a=b.UniversalString;break;case 29:a=b.CharacterString;break;case 30:a=b.BmpString;break;case 31:a=b.DATE;break;case 32:a=b.TimeOfDay;break;case 33:a=b.DateTime;break;case 34:a=b.Duration;break;default:{const t=s.idBlock.isConstructed?new b.Constructed:new b.Primitive;t.idBlock=s.idBlock,t.lenBlock=s.lenBlock,t.warnings=s.warnings,s=t}}break;case 2:case 3:case 4:default:a=s.idBlock.isConstructed?b.Constructed:b.Primitive}return s=function(t,e){if(t instanceof e)return t;const i=new e;return i.idBlock=t.idBlock,i.lenBlock=t.lenBlock,i.warnings=t.warnings,i.valueBeforeDecodeView=t.valueBeforeDecodeView,i}(s,a),o=s.fromBER(t,e,s.lenBlock.isIndefiniteForm?i:s.lenBlock.length),s.valueBeforeDecodeView=t.subarray(r,r+s.blockLength),{offset:o,result:s}}function N(e){if(!e.byteLength){const t=new D({},E);return t.error="Input buffer has zero length",{offset:-1,result:t}}return R(t.BufferSourceConverter.toUint8Array(e).slice(),0,e.byteLength)}b.Primitive=O,O.NAME="PRIMITIVE";class k extends E{constructor({value:t=[],isIndefiniteForm:e=!1,...i}={}){super(i),this.value=t,this.isIndefiniteForm=e}fromBER(e,i,r){const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;if(this.valueBeforeDecodeView=s.subarray(i,i+r),0===this.valueBeforeDecodeView.length)return this.warnings.push("Zero buffer length"),i;let n=i;for(;(this.isIndefiniteForm?1:r)>0;){const t=R(s,n,r);if(-1===t.offset)return this.error=t.result.error,this.warnings.concat(t.result.warnings),-1;if(n=t.offset,this.blockLength+=t.result.blockLength,r-=t.result.blockLength,this.value.push(t.result),this.isIndefiniteForm&&"EndOfContent"===t.result.constructor.NAME)break}return this.isIndefiniteForm&&("EndOfContent"===this.value[this.value.length-1].constructor.NAME?this.value.pop():this.warnings.push("No EndOfContent block encoded")),n}toBER(t,e){const i=e||new S;for(let e=0;e<this.value.length;e++)this.value[e].toBER(t,i);return e?A:i.final()}toJSON(){const t={...super.toJSON(),isIndefiniteForm:this.isIndefiniteForm,value:[]};for(const e of this.value)t.value.push(e.toJSON());return t}}k.NAME="ConstructedValueBlock";class M extends D{constructor(t={}){super(t,k),this.idBlock.isConstructed=!0}fromBER(t,e,i){this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm;const r=this.valueBlock.fromBER(t,e,this.lenBlock.isIndefiniteForm?i:this.lenBlock.length);return-1===r?(this.error=this.valueBlock.error,r):(this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.valueBlock.error.length||(this.blockLength+=this.valueBlock.blockLength),r)}onAsciiEncoding(){const t=[];for(const e of this.valueBlock.value)t.push(e.toString("ascii").split("\n").map((t=>` ${t}`)).join("\n"));const e=3===this.idBlock.tagClass?`[${this.idBlock.tagNumber}]`:this.constructor.NAME;return t.length?`${e} :\n${t.join("\n")}`:`${e} :`}}b.Constructed=M,M.NAME="CONSTRUCTED";class K extends E{fromBER(t,e,i){return e}toBER(t){return A}}K.override="EndOfContentValueBlock";class j extends D{constructor(t={}){super(t,K),this.idBlock.tagClass=1,this.idBlock.tagNumber=0}}b.EndOfContent=j,j.NAME="EndOfContent";class H extends D{constructor(t={}){super(t,E),this.idBlock.tagClass=1,this.idBlock.tagNumber=5}fromBER(t,e,i){return this.lenBlock.length>0&&this.warnings.push("Non-zero length of value block for Null type"),this.idBlock.error.length||(this.blockLength+=this.idBlock.blockLength),this.lenBlock.error.length||(this.blockLength+=this.lenBlock.blockLength),this.blockLength+=i,e+i>t.byteLength?(this.error="End of input reached before message was fully decoded (inconsistent offset and length values)",-1):e+i}toBER(t,e){const i=new ArrayBuffer(2);if(!t){const t=new Uint8Array(i);t[0]=5,t[1]=0}return e&&e.write(i),i}onAsciiEncoding(){return`${this.constructor.NAME}`}}b.Null=H,H.NAME="NULL";class _ extends(g(E)){constructor({value:e,...i}={}){super(i),this.valueHexView=i.valueHex?t.BufferSourceConverter.toUint8Array(i.valueHex):new Uint8Array(1),e&&(this.value=e)}get value(){for(const t of this.valueHexView)if(t>0)return!0;return!1}set value(t){this.valueHexView[0]=t?255:0}fromBER(e,i,r){const s=t.BufferSourceConverter.toUint8Array(e);return f(this,s,i,r)?(this.valueHexView=s.subarray(i,i+r),r>1&&this.warnings.push("Boolean value encoded in more then 1 octet"),this.isHexOnly=!0,h.call(this),this.blockLength=r,i+r):-1}toBER(){return this.valueHexView.slice()}toJSON(){return{...super.toJSON(),value:this.value}}}_.NAME="BooleanValueBlock";class U extends D{constructor(t={}){super(t,_),this.idBlock.tagClass=1,this.idBlock.tagNumber=1}getValue(){return this.valueBlock.value}setValue(t){this.valueBlock.value=t}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.getValue}`}}b.Boolean=U,U.NAME="BOOLEAN";class F extends(g(k)){constructor({isConstructed:t=!1,...e}={}){super(e),this.isConstructed=t}fromBER(t,e,i){let r=0;if(this.isConstructed){if(this.isHexOnly=!1,r=k.prototype.fromBER.call(this,t,e,i),-1===r)return r;for(let t=0;t<this.value.length;t++){const e=this.value[t].constructor.NAME;if("EndOfContent"===e){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, OCTET STRING may consists of OCTET STRINGs only",-1}if("OCTET STRING"!==e)return this.error="OCTET STRING may consists of OCTET STRINGs only",-1}}else this.isHexOnly=!0,r=super.fromBER(t,e,i),this.blockLength=i;return r}toBER(t,e){return this.isConstructed?k.prototype.toBER.call(this,t,e):t?new ArrayBuffer(this.valueHexView.byteLength):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),isConstructed:this.isConstructed}}}F.NAME="OctetStringValueBlock";class V extends D{constructor({idBlock:t={},lenBlock:e={},...i}={}){var r,s;null!==(r=i.isConstructed)&&void 0!==r||(i.isConstructed=!!(null===(s=i.value)||void 0===s?void 0:s.length)),super({idBlock:{isConstructed:i.isConstructed,...t},lenBlock:{...e,isIndefiniteForm:!!i.isIndefiniteForm},...i},F),this.idBlock.tagClass=1,this.idBlock.tagNumber=4}fromBER(t,e,i){if(this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,0===i)return 0===this.idBlock.error.length&&(this.blockLength+=this.idBlock.blockLength),0===this.lenBlock.error.length&&(this.blockLength+=this.lenBlock.blockLength),e;if(!this.valueBlock.isConstructed){const r=(t instanceof ArrayBuffer?new Uint8Array(t):t).subarray(e,e+i);try{if(r.byteLength){const t=R(r,0,r.byteLength);-1!==t.offset&&t.offset===i&&(this.valueBlock.value=[t.result])}}catch(t){}}return super.fromBER(t,e,i)}onAsciiEncoding(){return this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length?M.prototype.onAsciiEncoding.call(this):`${this.constructor.NAME} : ${t.Convert.ToHex(this.valueBlock.valueHexView)}`}getValue(){if(!this.idBlock.isConstructed)return this.valueBlock.valueHexView.slice().buffer;const e=[];for(const t of this.valueBlock.value)t instanceof V&&e.push(t.valueBlock.valueHexView);return t.BufferSourceConverter.concat(e)}}b.OctetString=V,V.NAME="OCTET STRING";class L extends(g(k)){constructor({unusedBits:t=0,isConstructed:e=!1,...i}={}){super(i),this.unusedBits=t,this.isConstructed=e,this.blockLength=this.valueHexView.byteLength}fromBER(e,i,r){if(!r)return i;let s=-1;if(this.isConstructed){if(s=k.prototype.fromBER.call(this,e,i,r),-1===s)return s;for(const t of this.value){const e=t.constructor.NAME;if("EndOfContent"===e){if(this.isIndefiniteForm)break;return this.error="EndOfContent is unexpected, BIT STRING may consists of BIT STRINGs only",-1}if("BIT STRING"!==e)return this.error="BIT STRING may consists of BIT STRINGs only",-1;const i=t.valueBlock;if(this.unusedBits>0&&i.unusedBits>0)return this.error='Using of "unused bits" inside constructive BIT STRING allowed for least one only',-1;this.unusedBits=i.unusedBits}return s}const n=t.BufferSourceConverter.toUint8Array(e);if(!f(this,n,i,r))return-1;const o=n.subarray(i,i+r);if(this.unusedBits=o[0],this.unusedBits>7)return this.error="Unused bits for BitString must be in range 0-7",-1;if(!this.unusedBits){const t=o.subarray(1);try{if(t.byteLength){const e=R(t,0,t.byteLength);-1!==e.offset&&e.offset===r-1&&(this.value=[e.result])}}catch(t){}}return this.valueHexView=o.subarray(1),this.blockLength=o.length,i+r}toBER(t,e){if(this.isConstructed)return k.prototype.toBER.call(this,t,e);if(t)return new ArrayBuffer(this.valueHexView.byteLength+1);if(!this.valueHexView.byteLength)return A;const i=new Uint8Array(this.valueHexView.length+1);return i[0]=this.unusedBits,i.set(this.valueHexView,1),i.buffer}toJSON(){return{...super.toJSON(),unusedBits:this.unusedBits,isConstructed:this.isConstructed}}}L.NAME="BitStringValueBlock";class G extends D{constructor({idBlock:t={},lenBlock:e={},...i}={}){var r,s;null!==(r=i.isConstructed)&&void 0!==r||(i.isConstructed=!!(null===(s=i.value)||void 0===s?void 0:s.length)),super({idBlock:{isConstructed:i.isConstructed,...t},lenBlock:{...e,isIndefiniteForm:!!i.isIndefiniteForm},...i},L),this.idBlock.tagClass=1,this.idBlock.tagNumber=3}fromBER(t,e,i){return this.valueBlock.isConstructed=this.idBlock.isConstructed,this.valueBlock.isIndefiniteForm=this.lenBlock.isIndefiniteForm,super.fromBER(t,e,i)}onAsciiEncoding(){if(this.valueBlock.isConstructed||this.valueBlock.value&&this.valueBlock.value.length)return M.prototype.onAsciiEncoding.call(this);{const t=[],e=this.valueBlock.valueHexView;for(const i of e)t.push(i.toString(2).padStart(8,"0"));const i=t.join("");return`${this.constructor.NAME} : ${i.substring(0,i.length-this.valueBlock.unusedBits)}`}}}function $(t,e){const i=new Uint8Array([0]),r=new Uint8Array(t),s=new Uint8Array(e);let n=r.slice(0);const o=n.length-1,a=s.slice(0),c=a.length-1;let l=0,h=0;for(let t=c<o?o:c;t>=0;t--,h++){switch(!0){case h<a.length:l=n[o-h]+a[c-h]+i[0];break;default:l=n[o-h]+i[0]}switch(i[0]=l/10,!0){case h>=n.length:n=u(new Uint8Array([l%10]),n);break;default:n[o-h]=l%10}}return i[0]>0&&(n=u(i,n)),n}function Q(t){if(t>=C.length)for(let e=C.length;e<=t;e++){const t=new Uint8Array([0]);let i=C[e-1].slice(0);for(let e=i.length-1;e>=0;e--){const r=new Uint8Array([(i[e]<<1)+t[0]]);t[0]=r[0]/10,i[e]=r[0]%10}t[0]>0&&(i=u(t,i)),C.push(i)}return C[t]}function W(t,e){let i=0;const r=new Uint8Array(t),s=new Uint8Array(e),n=r.slice(0),o=n.length-1,a=s.slice(0),c=a.length-1;let l,u=0;for(let t=c;t>=0;t--,u++)switch(l=n[o-u]-a[c-u]-i,!0){case l<0:i=1,n[o-u]=l+10;break;default:i=0,n[o-u]=l}if(i>0)for(let t=o-c+1;t>=0;t--,u++){if(l=n[o-u]-i,!(l<0)){i=0,n[o-u]=l;break}i=1,n[o-u]=l+10}return n.slice()}b.BitString=G,G.NAME="BIT STRING";class q extends(g(E)){constructor({value:t,...e}={}){super(e),this._valueDec=0,e.valueHex&&this.setValueHex(),void 0!==t&&(this.valueDec=t)}setValueHex(){this.valueHexView.length>=4?(this.warnings.push("Too big Integer for decoding, hex only"),this.isHexOnly=!0,this._valueDec=0):(this.isHexOnly=!1,this.valueHexView.length>0&&(this._valueDec=h.call(this)))}set valueDec(t){this._valueDec=t,this.isHexOnly=!1,this.valueHexView=new Uint8Array(function(t){const e=t<0?-1*t:t;let i=128;for(let r=1;r<8;r++){if(e<=i){if(t<0){const t=l(i-e,8,r);return new Uint8Array(t)[0]|=128,t}let s=l(e,8,r),n=new Uint8Array(s);if(128&n[0]){const t=s.slice(0),e=new Uint8Array(t);s=new ArrayBuffer(s.byteLength+1),n=new Uint8Array(s);for(let i=0;i<t.byteLength;i++)n[i+1]=e[i];n[0]=0}return s}i*=Math.pow(2,8)}return new ArrayBuffer(0)}(t))}get valueDec(){return this._valueDec}fromDER(t,e,i,r=0){const s=this.fromBER(t,e,i);if(-1===s)return s;const n=this.valueHexView;return 0===n[0]&&0!=(128&n[1])?this.valueHexView=n.subarray(1):0!==r&&n.length<r&&(r-n.length>1&&(r=n.length+1),this.valueHexView=n.subarray(r-n.length)),s}toDER(t=!1){const e=this.valueHexView;switch(!0){case 0!=(128&e[0]):{const t=new Uint8Array(this.valueHexView.length+1);t[0]=0,t.set(e,1),this.valueHexView=t}break;case 0===e[0]&&0==(128&e[1]):this.valueHexView=this.valueHexView.subarray(1)}return this.toBER(t)}fromBER(t,e,i){const r=super.fromBER(t,e,i);return-1===r||this.setValueHex(),r}toBER(t){return t?new ArrayBuffer(this.valueHexView.length):this.valueHexView.slice().buffer}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}toString(){const t=8*this.valueHexView.length-1;let e,i=new Uint8Array(8*this.valueHexView.length/3),r=0;const s=this.valueHexView;let n="",o=!1;for(let o=s.byteLength-1;o>=0;o--){e=s[o];for(let s=0;s<8;s++){if(1==(1&e))switch(r){case t:i=W(Q(r),i),n="-";break;default:i=$(i,Q(r))}r++,e>>=1}}for(let t=0;t<i.length;t++)i[t]&&(o=!0),o&&(n+="0123456789".charAt(i[t]));return!1===o&&(n+="0123456789".charAt(0)),n}}x=q,q.NAME="IntegerValueBlock",Object.defineProperty(x.prototype,"valueHex",{set:function(t){this.valueHexView=new Uint8Array(t),this.setValueHex()},get:function(){return this.valueHexView.slice().buffer}});class z extends D{constructor(t={}){super(t,q),this.idBlock.tagClass=1,this.idBlock.tagNumber=2}toBigInt(){return d(),BigInt(this.valueBlock.toString())}static fromBigInt(e){d();const i=BigInt(e),r=new S,s=i.toString(16).replace(/^-/,""),n=new Uint8Array(t.Convert.FromHex(s));if(i<0){const e=new Uint8Array(n.length+(128&n[0]?1:0));e[0]|=128;const s=BigInt(`0x${t.Convert.ToHex(e)}`),o=t.BufferSourceConverter.toUint8Array(t.Convert.FromHex((s+i).toString(16)));o[0]|=128,r.write(o)}else 128&n[0]&&r.write(new Uint8Array([0])),r.write(n);return new z({valueHex:r.final()})}convertToDER(){const t=new z({valueHex:this.valueBlock.valueHexView});return t.valueBlock.toDER(),t}convertFromDER(){return new z({valueHex:0===this.valueBlock.valueHexView[0]?this.valueBlock.valueHexView.subarray(1):this.valueBlock.valueHexView})}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()}`}}b.Integer=z,z.NAME="INTEGER";class J extends z{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=10}}b.Enumerated=J,J.NAME="ENUMERATED";class Z extends(g(E)){constructor({valueDec:t=-1,isFirstSid:e=!1,...i}={}){super(i),this.valueDec=t,this.isFirstSid=e}fromBER(e,i,r){if(!r)return i;const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;const n=s.subarray(i,i+r);this.valueHexView=new Uint8Array(r);for(let t=0;t<r&&(this.valueHexView[t]=127&n[t],this.blockLength++,0!=(128&n[t]));t++);const o=new Uint8Array(this.blockLength);for(let t=0;t<this.blockLength;t++)o[t]=this.valueHexView[t];return this.valueHexView=o,0!=(128&n[this.blockLength-1])?(this.error="End of input reached before message was fully decoded",-1):(0===this.valueHexView[0]&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=c(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),i+this.blockLength)}set valueBigInt(t){d();let e=BigInt(t).toString(2);for(;e.length%7;)e="0"+e;const i=new Uint8Array(e.length/7);for(let t=0;t<i.length;t++)i[t]=parseInt(e.slice(7*t,7*t+7),2)+(t+1<i.length?128:0);this.fromBER(i.buffer,0,i.length)}toBER(t){if(this.isHexOnly){if(t)return new ArrayBuffer(this.valueHexView.byteLength);const e=this.valueHexView,i=new Uint8Array(this.blockLength);for(let t=0;t<this.blockLength-1;t++)i[t]=128|e[t];return i[this.blockLength-1]=e[this.blockLength-1],i.buffer}const e=l(this.valueDec,7);if(0===e.byteLength)return this.error="Error during encoding SID value",A;const i=new Uint8Array(e.byteLength);if(!t){const t=new Uint8Array(e),r=e.byteLength-1;for(let e=0;e<r;e++)i[e]=128|t[e];i[r]=t[r]}return i}toString(){let e="";if(this.isHexOnly)e=t.Convert.ToHex(this.valueHexView);else if(this.isFirstSid){let t=this.valueDec;this.valueDec<=39?e="0.":this.valueDec<=79?(e="1.",t-=40):(e="2.",t-=80),e+=t.toString()}else e=this.valueDec.toString();return e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec,isFirstSid:this.isFirstSid}}}Z.NAME="sidBlock";class X extends E{constructor({value:t="",...e}={}){super(e),this.value=[],t&&this.fromString(t)}fromBER(t,e,i){let r=e;for(;i>0;){const e=new Z;if(r=e.fromBER(t,r,i),-1===r)return this.blockLength=0,this.error=e.error,r;0===this.value.length&&(e.isFirstSid=!0),this.blockLength+=e.blockLength,i-=e.blockLength,this.value.push(e)}return r}toBER(t){const e=[];for(let i=0;i<this.value.length;i++){const r=this.value[i].toBER(t);if(0===r.byteLength)return this.error=this.value[i].error,A;e.push(r)}return y(e)}fromString(t){this.value=[];let e=0,i=0,r="",s=!1;do{if(i=t.indexOf(".",e),r=-1===i?t.substring(e):t.substring(e,i),e=i+1,s){const t=this.value[0];let e=0;switch(t.valueDec){case 0:break;case 1:e=40;break;case 2:e=80;break;default:return void(this.value=[])}const i=parseInt(r,10);if(isNaN(i))return;t.valueDec=i+e,s=!1}else{const t=new Z;if(r>Number.MAX_SAFE_INTEGER){d();const e=BigInt(r);t.valueBigInt=e}else if(t.valueDec=parseInt(r,10),isNaN(t.valueDec))return;this.value.length||(t.isFirstSid=!0,s=!0),this.value.push(t)}}while(-1!==i)}toString(){let t="",e=!1;for(let i=0;i<this.value.length;i++){e=this.value[i].isHexOnly;let r=this.value[i].toString();0!==i&&(t=`${t}.`),e?(r=`{${r}}`,this.value[i].isFirstSid?t=`2.{${r} - 80}`:t+=r):t+=r}return t}toJSON(){const t={...super.toJSON(),value:this.toString(),sidArray:[]};for(let e=0;e<this.value.length;e++)t.sidArray.push(this.value[e].toJSON());return t}}X.NAME="ObjectIdentifierValueBlock";class Y extends D{constructor(t={}){super(t,X),this.idBlock.tagClass=1,this.idBlock.tagNumber=6}getValue(){return this.valueBlock.toString()}setValue(t){this.valueBlock.fromString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}}b.ObjectIdentifier=Y,Y.NAME="OBJECT IDENTIFIER";class tt extends(g(v)){constructor({valueDec:t=0,...e}={}){super(e),this.valueDec=t}fromBER(e,i,r){if(0===r)return i;const s=t.BufferSourceConverter.toUint8Array(e);if(!f(this,s,i,r))return-1;const n=s.subarray(i,i+r);this.valueHexView=new Uint8Array(r);for(let t=0;t<r&&(this.valueHexView[t]=127&n[t],this.blockLength++,0!=(128&n[t]));t++);const o=new Uint8Array(this.blockLength);for(let t=0;t<this.blockLength;t++)o[t]=this.valueHexView[t];return this.valueHexView=o,0!=(128&n[this.blockLength-1])?(this.error="End of input reached before message was fully decoded",-1):(0===this.valueHexView[0]&&this.warnings.push("Needlessly long format of SID encoding"),this.blockLength<=8?this.valueDec=c(this.valueHexView,7):(this.isHexOnly=!0,this.warnings.push("Too big SID for decoding, hex only")),i+this.blockLength)}toBER(t){if(this.isHexOnly){if(t)return new ArrayBuffer(this.valueHexView.byteLength);const e=this.valueHexView,i=new Uint8Array(this.blockLength);for(let t=0;t<this.blockLength-1;t++)i[t]=128|e[t];return i[this.blockLength-1]=e[this.blockLength-1],i.buffer}const e=l(this.valueDec,7);if(0===e.byteLength)return this.error="Error during encoding SID value",A;const i=new Uint8Array(e.byteLength);if(!t){const t=new Uint8Array(e),r=e.byteLength-1;for(let e=0;e<r;e++)i[e]=128|t[e];i[r]=t[r]}return i.buffer}toString(){let e="";return e=this.isHexOnly?t.Convert.ToHex(this.valueHexView):this.valueDec.toString(),e}toJSON(){return{...super.toJSON(),valueDec:this.valueDec}}}tt.NAME="relativeSidBlock";class et extends E{constructor({value:t="",...e}={}){super(e),this.value=[],t&&this.fromString(t)}fromBER(t,e,i){let r=e;for(;i>0;){const e=new tt;if(r=e.fromBER(t,r,i),-1===r)return this.blockLength=0,this.error=e.error,r;this.blockLength+=e.blockLength,i-=e.blockLength,this.value.push(e)}return r}toBER(t,e){const i=[];for(let e=0;e<this.value.length;e++){const r=this.value[e].toBER(t);if(0===r.byteLength)return this.error=this.value[e].error,A;i.push(r)}return y(i)}fromString(t){this.value=[];let e=0,i=0,r="";do{i=t.indexOf(".",e),r=-1===i?t.substring(e):t.substring(e,i),e=i+1;const s=new tt;if(s.valueDec=parseInt(r,10),isNaN(s.valueDec))return!0;this.value.push(s)}while(-1!==i);return!0}toString(){let t="",e=!1;for(let i=0;i<this.value.length;i++){e=this.value[i].isHexOnly;let r=this.value[i].toString();0!==i&&(t=`${t}.`),e?(r=`{${r}}`,t+=r):t+=r}return t}toJSON(){const t={...super.toJSON(),value:this.toString(),sidArray:[]};for(let e=0;e<this.value.length;e++)t.sidArray.push(this.value[e].toJSON());return t}}et.NAME="RelativeObjectIdentifierValueBlock";class it extends D{constructor(t={}){super(t,et),this.idBlock.tagClass=1,this.idBlock.tagNumber=13}getValue(){return this.valueBlock.toString()}setValue(t){this.valueBlock.fromString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.valueBlock.toString()||"empty"}`}toJSON(){return{...super.toJSON(),value:this.getValue()}}}b.RelativeObjectIdentifier=it,it.NAME="RelativeObjectIdentifier";class rt extends M{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=16}}b.Sequence=rt,rt.NAME="SEQUENCE";class st extends M{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=17}}b.Set=st,st.NAME="SET";class nt extends(g(E)){constructor({...t}={}){super(t),this.isHexOnly=!0,this.value=""}toJSON(){return{...super.toJSON(),value:this.value}}}nt.NAME="StringValueBlock";class ot extends nt{}ot.NAME="SimpleStringValueBlock";class at extends B{constructor({...t}={}){super(t,ot)}fromBuffer(e){this.valueBlock.value=String.fromCharCode.apply(null,t.BufferSourceConverter.toUint8Array(e))}fromString(t){const e=t.length,i=this.valueBlock.valueHexView=new Uint8Array(e);for(let r=0;r<e;r++)i[r]=t.charCodeAt(r);this.valueBlock.value=t}}at.NAME="SIMPLE STRING";class ct extends at{fromBuffer(e){this.valueBlock.valueHexView=t.BufferSourceConverter.toUint8Array(e);try{this.valueBlock.value=t.Convert.ToUtf8String(e)}catch(i){this.warnings.push(`Error during "decodeURIComponent": ${i}, using raw string`),this.valueBlock.value=t.Convert.ToBinary(e)}}fromString(e){this.valueBlock.valueHexView=new Uint8Array(t.Convert.FromUtf8String(e)),this.valueBlock.value=e}}ct.NAME="Utf8StringValueBlock";class lt extends ct{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=12}}b.Utf8String=lt,lt.NAME="UTF8String";class ut extends at{fromBuffer(e){this.valueBlock.value=t.Convert.ToUtf16String(e),this.valueBlock.valueHexView=t.BufferSourceConverter.toUint8Array(e)}fromString(e){this.valueBlock.value=e,this.valueBlock.valueHexView=new Uint8Array(t.Convert.FromUtf16String(e))}}ut.NAME="BmpStringValueBlock";class ht extends ut{constructor({...t}={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=30}}b.BmpString=ht,ht.NAME="BMPString";class pt extends at{fromBuffer(t){const e=ArrayBuffer.isView(t)?t.slice().buffer:t.slice(0),i=new Uint8Array(e);for(let t=0;t<i.length;t+=4)i[t]=i[t+3],i[t+1]=i[t+2],i[t+2]=0,i[t+3]=0;this.valueBlock.value=String.fromCharCode.apply(null,new Uint32Array(e))}fromString(t){const e=t.length,i=this.valueBlock.valueHexView=new Uint8Array(4*e);for(let r=0;r<e;r++){const e=l(t.charCodeAt(r),8),s=new Uint8Array(e);if(s.length>4)continue;const n=4-s.length;for(let t=s.length-1;t>=0;t--)i[4*r+t+n]=s[t]}this.valueBlock.value=t}}pt.NAME="UniversalStringValueBlock";class dt extends pt{constructor({...t}={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=28}}b.UniversalString=dt,dt.NAME="UniversalString";class yt extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=18}}b.NumericString=yt,yt.NAME="NumericString";class ft extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=19}}b.PrintableString=ft,ft.NAME="PrintableString";class St extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=20}}b.TeletexString=St,St.NAME="TeletexString";class Ct extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=21}}b.VideotexString=Ct,Ct.NAME="VideotexString";class At extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=22}}b.IA5String=At,At.NAME="IA5String";class mt extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=25}}b.GraphicString=mt,mt.NAME="GraphicString";class gt extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=26}}b.VisibleString=gt,gt.NAME="VisibleString";class vt extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=27}}b.GeneralString=vt,vt.NAME="GeneralString";class Et extends at{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=29}}b.CharacterString=Et,Et.NAME="CharacterString";class wt extends gt{constructor({value:t,valueDate:e,...i}={}){if(super(i),this.year=0,this.month=0,this.day=0,this.hour=0,this.minute=0,this.second=0,t){this.fromString(t),this.valueBlock.valueHexView=new Uint8Array(t.length);for(let e=0;e<t.length;e++)this.valueBlock.valueHexView[e]=t.charCodeAt(e)}e&&(this.fromDate(e),this.valueBlock.valueHexView=new Uint8Array(this.toBuffer())),this.idBlock.tagClass=1,this.idBlock.tagNumber=23}fromBuffer(e){this.fromString(String.fromCharCode.apply(null,t.BufferSourceConverter.toUint8Array(e)))}toBuffer(){const t=this.toString(),e=new ArrayBuffer(t.length),i=new Uint8Array(e);for(let e=0;e<t.length;e++)i[e]=t.charCodeAt(e);return e}fromDate(t){this.year=t.getUTCFullYear(),this.month=t.getUTCMonth()+1,this.day=t.getUTCDate(),this.hour=t.getUTCHours(),this.minute=t.getUTCMinutes(),this.second=t.getUTCSeconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second))}fromString(t){const e=/(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})Z/gi.exec(t);if(null===e)return void(this.error="Wrong input string for conversion");const i=parseInt(e[1],10);this.year=i>=50?1900+i:2e3+i,this.month=parseInt(e[2],10),this.day=parseInt(e[3],10),this.hour=parseInt(e[4],10),this.minute=parseInt(e[5],10),this.second=parseInt(e[6],10)}toString(t="iso"){if("iso"===t){const t=new Array(7);return t[0]=p(this.year<2e3?this.year-1900:this.year-2e3,2),t[1]=p(this.month,2),t[2]=p(this.day,2),t[3]=p(this.hour,2),t[4]=p(this.minute,2),t[5]=p(this.second,2),t[6]="Z",t.join("")}return super.toString(t)}onAsciiEncoding(){return`${this.constructor.NAME} : ${this.toDate().toISOString()}`}toJSON(){return{...super.toJSON(),year:this.year,month:this.month,day:this.day,hour:this.hour,minute:this.minute,second:this.second}}}b.UTCTime=wt,wt.NAME="UTCTime";class Pt extends wt{constructor(t={}){var e;super(t),null!==(e=this.millisecond)&&void 0!==e||(this.millisecond=0),this.idBlock.tagClass=1,this.idBlock.tagNumber=24}fromDate(t){super.fromDate(t),this.millisecond=t.getUTCMilliseconds()}toDate(){return new Date(Date.UTC(this.year,this.month-1,this.day,this.hour,this.minute,this.second,this.millisecond))}fromString(t){let e,i=!1,r="",s="",n=0,o=0,a=0;if("Z"===t[t.length-1])r=t.substring(0,t.length-1),i=!0;else{const e=new Number(t[t.length-1]);if(isNaN(e.valueOf()))throw new Error("Wrong input string for conversion");r=t}if(i){if(-1!==r.indexOf("+"))throw new Error("Wrong input string for conversion");if(-1!==r.indexOf("-"))throw new Error("Wrong input string for conversion")}else{let t=1,e=r.indexOf("+"),i="";if(-1===e&&(e=r.indexOf("-"),t=-1),-1!==e){if(i=r.substring(e+1),r=r.substring(0,e),2!==i.length&&4!==i.length)throw new Error("Wrong input string for conversion");let s=parseInt(i.substring(0,2),10);if(isNaN(s.valueOf()))throw new Error("Wrong input string for conversion");if(o=t*s,4===i.length){if(s=parseInt(i.substring(2,4),10),isNaN(s.valueOf()))throw new Error("Wrong input string for conversion");a=t*s}}}let c=r.indexOf(".");if(-1===c&&(c=r.indexOf(",")),-1!==c){const t=new Number(`0${r.substring(c)}`);if(isNaN(t.valueOf()))throw new Error("Wrong input string for conversion");n=t.valueOf(),s=r.substring(0,c)}else s=r;switch(!0){case 8===s.length:if(e=/(\d{4})(\d{2})(\d{2})/gi,-1!==c)throw new Error("Wrong input string for conversion");break;case 10===s.length:if(e=/(\d{4})(\d{2})(\d{2})(\d{2})/gi,-1!==c){let t=60*n;this.minute=Math.floor(t),t=60*(t-this.minute),this.second=Math.floor(t),t=1e3*(t-this.second),this.millisecond=Math.floor(t)}break;case 12===s.length:if(e=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})/gi,-1!==c){let t=60*n;this.second=Math.floor(t),t=1e3*(t-this.second),this.millisecond=Math.floor(t)}break;case 14===s.length:e=/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/gi,-1!==c&&(this.millisecond=Math.floor(1e3*n));break;default:throw new Error("Wrong input string for conversion")}const l=e.exec(s);if(null===l)throw new Error("Wrong input string for conversion");for(let t=1;t<l.length;t++)switch(t){case 1:this.year=parseInt(l[t],10);break;case 2:this.month=parseInt(l[t],10);break;case 3:this.day=parseInt(l[t],10);break;case 4:this.hour=parseInt(l[t],10)+o;break;case 5:this.minute=parseInt(l[t],10)+a;break;case 6:this.second=parseInt(l[t],10);break;default:throw new Error("Wrong input string for conversion")}if(!1===i){const t=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond);this.year=t.getUTCFullYear(),this.month=t.getUTCMonth(),this.day=t.getUTCDay(),this.hour=t.getUTCHours(),this.minute=t.getUTCMinutes(),this.second=t.getUTCSeconds(),this.millisecond=t.getUTCMilliseconds()}}toString(t="iso"){if("iso"===t){const t=[];return t.push(p(this.year,4)),t.push(p(this.month,2)),t.push(p(this.day,2)),t.push(p(this.hour,2)),t.push(p(this.minute,2)),t.push(p(this.second,2)),0!==this.millisecond&&(t.push("."),t.push(p(this.millisecond,3))),t.push("Z"),t.join("")}return super.toString(t)}toJSON(){return{...super.toJSON(),millisecond:this.millisecond}}}b.GeneralizedTime=Pt,Pt.NAME="GeneralizedTime";class bt extends lt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=31}}b.DATE=bt,bt.NAME="DATE";class Dt extends lt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=32}}b.TimeOfDay=Dt,Dt.NAME="TimeOfDay";class It extends lt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=33}}b.DateTime=It,It.NAME="DateTime";class Bt extends lt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=34}}b.Duration=Bt,Bt.NAME="Duration";class Tt extends lt{constructor(t={}){super(t),this.idBlock.tagClass=1,this.idBlock.tagNumber=14}}b.TIME=Tt,Tt.NAME="TIME";class xt{constructor({name:t="",optional:e=!1}={}){this.name=t,this.optional=e}}class Ot extends xt{constructor({value:t=[],...e}={}){super(e),this.value=t}}class Rt extends xt{constructor({value:t=new xt,local:e=!1,...i}={}){super(i),this.value=t,this.local=e}}function Nt(t,e,i){if(i instanceof Ot){for(let r=0;r<i.value.length;r++)if(Nt(t,e,i.value[r]).verified)return{verified:!0,result:t};{const t={verified:!1,result:{error:"Wrong values for Choice type"}};return i.hasOwnProperty("name")&&(t.name=i.name),t}}if(i instanceof xt)return i.hasOwnProperty("name")&&(t[i.name]=e),{verified:!0,result:t};if(t instanceof Object==0)return{verified:!1,result:{error:"Wrong root object"}};if(e instanceof Object==0)return{verified:!1,result:{error:"Wrong ASN.1 data"}};if(i instanceof Object==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if("idBlock"in i==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if("fromBER"in i.idBlock==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if("toBER"in i.idBlock==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};const r=i.idBlock.toBER(!1);if(0===r.byteLength)return{verified:!1,result:{error:"Error encoding idBlock for ASN.1 schema"}};if(-1===i.idBlock.fromBER(r,0,r.byteLength))return{verified:!1,result:{error:"Error decoding idBlock for ASN.1 schema"}};if(!1===i.idBlock.hasOwnProperty("tagClass"))return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if(i.idBlock.tagClass!==e.idBlock.tagClass)return{verified:!1,result:t};if(!1===i.idBlock.hasOwnProperty("tagNumber"))return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if(i.idBlock.tagNumber!==e.idBlock.tagNumber)return{verified:!1,result:t};if(!1===i.idBlock.hasOwnProperty("isConstructed"))return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if(i.idBlock.isConstructed!==e.idBlock.isConstructed)return{verified:!1,result:t};if(!("isHexOnly"in i.idBlock))return{verified:!1,result:{error:"Wrong ASN.1 schema"}};if(i.idBlock.isHexOnly!==e.idBlock.isHexOnly)return{verified:!1,result:t};if(i.idBlock.isHexOnly){if("valueHexView"in i.idBlock==0)return{verified:!1,result:{error:"Wrong ASN.1 schema"}};const r=i.idBlock.valueHexView,s=e.idBlock.valueHexView;if(r.length!==s.length)return{verified:!1,result:t};for(let e=0;e<r.length;e++)if(r[e]!==s[1])return{verified:!1,result:t}}if(i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&(t[i.name]=e)),i instanceof b.Constructed){let r=0,s={verified:!1,result:{error:"Unknown error"}},n=i.valueBlock.value.length;if(n>0&&i.valueBlock.value[0]instanceof Rt&&(n=e.valueBlock.value.length),0===n)return{verified:!0,result:t};if(0===e.valueBlock.value.length&&0!==i.valueBlock.value.length){let e=!0;for(let t=0;t<i.valueBlock.value.length;t++)e=e&&(i.valueBlock.value[t].optional||!1);return e?{verified:!0,result:t}:(i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&delete t[i.name]),t.error="Inconsistent object length",{verified:!1,result:t})}for(let o=0;o<n;o++)if(o-r>=e.valueBlock.value.length){if(!1===i.valueBlock.value[o].optional){const e={verified:!1,result:t};return t.error="Inconsistent length between ASN.1 data and schema",i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&(delete t[i.name],e.name=i.name)),e}}else if(i.valueBlock.value[0]instanceof Rt){if(s=Nt(t,e.valueBlock.value[o],i.valueBlock.value[0].value),!1===s.verified){if(!i.valueBlock.value[0].optional)return i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&delete t[i.name]),s;r++}if("name"in i.valueBlock.value[0]&&i.valueBlock.value[0].name.length>0){let r={};r="local"in i.valueBlock.value[0]&&i.valueBlock.value[0].local?e:t,void 0===r[i.valueBlock.value[0].name]&&(r[i.valueBlock.value[0].name]=[]),r[i.valueBlock.value[0].name].push(e.valueBlock.value[o])}}else if(s=Nt(t,e.valueBlock.value[o-r],i.valueBlock.value[o]),!1===s.verified){if(!i.valueBlock.value[o].optional)return i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&delete t[i.name]),s;r++}if(!1===s.verified){const e={verified:!1,result:t};return i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&(delete t[i.name],e.name=i.name)),e}return{verified:!0,result:t}}if(i.primitiveSchema&&"valueHexView"in e.valueBlock){const r=R(e.valueBlock.valueHexView);if(-1===r.offset){const e={verified:!1,result:r.result};return i.name&&(i.name=i.name.replace(/^\s+|\s+$/g,""),i.name&&(delete t[i.name],e.name=i.name)),e}return Nt(t,r.result,i.primitiveSchema)}return{verified:!0,result:t}}const kt=Object.freeze({__proto__:null,Any:xt,BaseBlock:D,BaseStringBlock:B,BitString:G,BmpString:ht,Boolean:U,CharacterString:Et,Choice:Ot,Constructed:M,DATE:bt,DateTime:It,Duration:Bt,EndOfContent:j,Enumerated:J,GeneralString:vt,GeneralizedTime:Pt,GraphicString:mt,HexBlock:g,IA5String:At,Integer:z,Null:H,NumericString:yt,ObjectIdentifier:Y,OctetString:V,Primitive:O,PrintableString:ft,RawData:class{constructor({data:e=m}={}){this.dataView=t.BufferSourceConverter.toUint8Array(e)}get data(){return this.dataView.slice().buffer}set data(e){this.dataView=t.BufferSourceConverter.toUint8Array(e)}fromBER(e,i,r){const s=i+r;return this.dataView=t.BufferSourceConverter.toUint8Array(e).subarray(i,s),s}toBER(t){return this.dataView.slice().buffer}},RelativeObjectIdentifier:it,Repeated:Rt,Sequence:rt,Set:st,TIME:Tt,TeletexString:St,TimeOfDay:Dt,UTCTime:wt,UniversalString:dt,Utf8String:lt,ValueBlock:E,VideotexString:Ct,ViewWriter:S,VisibleString:gt,compareSchema:Nt,fromBER:N,verifySchema:function(e,i){if(i instanceof Object==0)return{verified:!1,result:{error:"Wrong ASN.1 schema type"}};const r=R(t.BufferSourceConverter.toUint8Array(e));return-1===r.offset?{verified:!1,result:r.result}:Nt(r.result,r.result,i)}});var Mt,Kt;!function(t){t[t.Sequence=0]="Sequence",t[t.Set=1]="Set",t[t.Choice=2]="Choice"}(Mt||(Mt={})),function(t){t[t.Any=1]="Any",t[t.Boolean=2]="Boolean",t[t.OctetString=3]="OctetString",t[t.BitString=4]="BitString",t[t.Integer=5]="Integer",t[t.Enumerated=6]="Enumerated",t[t.ObjectIdentifier=7]="ObjectIdentifier",t[t.Utf8String=8]="Utf8String",t[t.BmpString=9]="BmpString",t[t.UniversalString=10]="UniversalString",t[t.NumericString=11]="NumericString",t[t.PrintableString=12]="PrintableString",t[t.TeletexString=13]="TeletexString",t[t.VideotexString=14]="VideotexString",t[t.IA5String=15]="IA5String",t[t.GraphicString=16]="GraphicString",t[t.VisibleString=17]="VisibleString",t[t.GeneralString=18]="GeneralString",t[t.CharacterString=19]="CharacterString",t[t.UTCTime=20]="UTCTime",t[t.GeneralizedTime=21]="GeneralizedTime",t[t.DATE=22]="DATE",t[t.TimeOfDay=23]="TimeOfDay",t[t.DateTime=24]="DateTime",t[t.Duration=25]="Duration",t[t.TIME=26]="TIME",t[t.Null=27]="Null"}(Kt||(Kt={}));const jt={fromASN:t=>t instanceof H?null:t.valueBeforeDecodeView,toASN:t=>{if(null===t)return new H;const e=N(t);if(e.result.error)throw new Error(e.result.error);return e.result}},Ht={fromASN:t=>t.valueBlock.valueHexView.byteLength>=4?t.valueBlock.toString():t.valueBlock.valueDec,toASN:t=>new z({value:+t})},_t={fromASN:t=>t.valueBlock.valueDec,toASN:t=>new J({value:t})},Ut={fromASN:t=>t.valueBlock.valueHexView,toASN:t=>new z({valueHex:t})},Ft={fromASN:t=>t.valueBlock.valueHexView,toASN:t=>new G({valueHex:t})},Vt={fromASN:t=>t.valueBlock.toString(),toASN:t=>new Y({value:t})},Lt={fromASN:t=>t.valueBlock.value,toASN:t=>new U({value:t})},Gt={fromASN:t=>t.valueBlock.valueHexView,toASN:t=>new V({valueHex:t})};function $t(t){return{fromASN:t=>t.valueBlock.value,toASN:e=>new t({value:e})}}const Qt=$t(lt),Wt=$t(ht),qt=$t(dt),zt=$t(yt),Jt=$t(ft),Zt=$t(St),Xt=$t(Ct),Yt=$t(At),te=$t(mt),ee=$t(gt),ie=$t(vt),re=$t(Et),se={fromASN:t=>t.toDate(),toASN:t=>new wt({valueDate:t})},ne={fromASN:t=>t.toDate(),toASN:t=>new Pt({valueDate:t})},oe={fromASN:()=>null,toASN:()=>new H};function ae(t){switch(t){case Kt.Any:return jt;case Kt.BitString:return Ft;case Kt.BmpString:return Wt;case Kt.Boolean:return Lt;case Kt.CharacterString:return re;case Kt.Enumerated:return _t;case Kt.GeneralString:return ie;case Kt.GeneralizedTime:return ne;case Kt.GraphicString:return te;case Kt.IA5String:return Yt;case Kt.Integer:return Ht;case Kt.Null:return oe;case Kt.NumericString:return zt;case Kt.ObjectIdentifier:return Vt;case Kt.OctetString:return Gt;case Kt.PrintableString:return Jt;case Kt.TeletexString:return Zt;case Kt.UTCTime:return se;case Kt.UniversalString:return qt;case Kt.Utf8String:return Qt;case Kt.VideotexString:return Xt;case Kt.VisibleString:return ee;default:return null}}class ce{constructor(e,i=0){if(this.unusedBits=0,this.value=new ArrayBuffer(0),e)if("number"==typeof e)this.fromNumber(e);else{if(!t.BufferSourceConverter.isBufferSource(e))throw TypeError("Unsupported type of 'params' argument for BitString");this.unusedBits=i,this.value=t.BufferSourceConverter.toArrayBuffer(e)}}fromASN(t){if(!(t instanceof G))throw new TypeError("Argument 'asn' is not instance of ASN.1 BitString");return this.unusedBits=t.valueBlock.unusedBits,this.value=t.valueBlock.valueHex,this}toASN(){return new G({unusedBits:this.unusedBits,valueHex:this.value})}toSchema(t){return new G({name:t})}toNumber(){let t="";const e=new Uint8Array(this.value);for(const i of e)t+=i.toString(2).padStart(8,"0");return t=t.split("").reverse().join(""),this.unusedBits&&(t=t.slice(this.unusedBits).padStart(this.unusedBits,"0")),parseInt(t,2)}fromNumber(t){let e=t.toString(2);const i=e.length+7>>3;this.unusedBits=(i<<3)-e.length;const r=new Uint8Array(i);e=e.padStart(i<<3,"0").split("").reverse().join("");let s=0;for(;s<i;)r[s]=parseInt(e.slice(s<<3,8+(s<<3)),2),s++;this.value=r.buffer}}class le{constructor(e){this.buffer="number"==typeof e?new ArrayBuffer(e):t.BufferSourceConverter.isBufferSource(e)?t.BufferSourceConverter.toArrayBuffer(e):Array.isArray(e)?new Uint8Array(e):new ArrayBuffer(0)}get byteLength(){return this.buffer.byteLength}get byteOffset(){return 0}fromASN(t){if(!(t instanceof V))throw new TypeError("Argument 'asn' is not instance of ASN.1 OctetString");return this.buffer=t.valueBlock.valueHex,this}toASN(){return new V({valueHex:this.buffer})}toSchema(t){return new V({name:t})}}function ue(t){return"function"==typeof t&&t.prototype?!(!t.prototype.toASN||!t.prototype.fromASN)||ue(t.prototype):!!(t&&"object"==typeof t&&"toASN"in t&&"fromASN"in t)}function he(t){var e;if(t){const i=Object.getPrototypeOf(t);return(null===(e=null==i?void 0:i.prototype)||void 0===e?void 0:e.constructor)===Array||he(i)}return!1}function pe(t,e){if(!t||!e)return!1;if(t.byteLength!==e.byteLength)return!1;const i=new Uint8Array(t),r=new Uint8Array(e);for(let e=0;e<t.byteLength;e++)if(i[e]!==r[e])return!1;return!0}const de=new class{constructor(){this.items=new WeakMap}has(t){return this.items.has(t)}get(t,e=!1){const i=this.items.get(t);if(!i)throw new Error(`Cannot get schema for '${t.prototype.constructor.name}' target`);if(e&&!i.schema)throw new Error(`Schema '${t.prototype.constructor.name}' doesn't contain ASN.1 schema. Call 'AsnSchemaStorage.cache'.`);return i}cache(t){const e=this.get(t);e.schema||(e.schema=this.create(t,!0))}createDefault(t){const e={type:Mt.Sequence,items:{}},i=this.findParentSchema(t);return i&&(Object.assign(e,i),e.items=Object.assign({},e.items,i.items)),e}create(t,e){const i=this.items.get(t)||this.createDefault(t),r=[];for(const t in i.items){const s=i.items[t],n=e?t:"";let o;if("number"==typeof s.type){const t=Kt[s.type],e=kt[t];if(!e)throw new Error(`Cannot get ASN1 class by name '${t}'`);o=new e({name:n})}else ue(s.type)?o=(new s.type).toSchema(n):s.optional?this.get(s.type).type===Mt.Choice?o=new xt({name:n}):(o=this.create(s.type,!1),o.name=n):o=new xt({name:n});const a=!!s.optional||void 0!==s.defaultValue;if(s.repeated&&(o.name="",o=new("set"===s.repeated?st:rt)({name:"",value:[new Rt({name:n,value:o})]})),null!=s.context)if(s.implicit)if("number"==typeof s.type||ue(s.type))r.push(new(s.repeated?M:O)({name:n,optional:a,idBlock:{tagClass:3,tagNumber:s.context}}));else{this.cache(s.type);const t=!!s.repeated;let e=t?o:this.get(s.type,!0).schema;e="valueBlock"in e?e.valueBlock.value:e.value,r.push(new M({name:t?"":n,optional:a,idBlock:{tagClass:3,tagNumber:s.context},value:e}))}else r.push(new M({optional:a,idBlock:{tagClass:3,tagNumber:s.context},value:[o]}));else o.optional=a,r.push(o)}switch(i.type){case Mt.Sequence:return new rt({value:r,name:""});case Mt.Set:return new st({value:r,name:""});case Mt.Choice:return new Ot({value:r,name:""});default:throw new Error("Unsupported ASN1 type in use")}}set(t,e){return this.items.set(t,e),this}findParentSchema(t){const e=t.__proto__;return e?this.items.get(e)||this.findParentSchema(e):null}},ye=t=>e=>{let i;de.has(e)?i=de.get(e):(i=de.createDefault(e),de.set(e,i)),Object.assign(i,t)},fe=t=>(e,i)=>{let r;de.has(e.constructor)?r=de.get(e.constructor):(r=de.createDefault(e.constructor),de.set(e.constructor,r));const s=Object.assign({},t);if("number"==typeof s.type&&!s.converter){const r=ae(t.type);if(!r)throw new Error(`Cannot get default converter for property '${i}' of ${e.constructor.name}`);s.converter=r}r.items[i]=s};class Se extends Error{constructor(){super(...arguments),this.schemas=[]}}class Ce{static parse(t,e){const i=N(t);if(i.result.error)throw new Error(i.result.error);return this.fromASN(i.result,e)}static fromASN(t,e){var i;try{if(ue(e))return(new e).fromASN(t);const r=de.get(e);de.cache(e);let s=r.schema;if(t.constructor===M&&r.type!==Mt.Choice){s=new M({idBlock:{tagClass:3,tagNumber:t.idBlock.tagNumber},value:r.schema.valueBlock.value});for(const e in r.items)delete t[e]}const n=Nt({},t,s);if(!n.verified)throw new Se(`Data does not match to ${e.name} ASN1 schema. ${n.result.error}`);const o=new e;if(he(e)){if(!("value"in t.valueBlock)||!Array.isArray(t.valueBlock.value))throw new Error("Cannot get items from the ASN.1 parsed value. ASN.1 object is not constructed.");const i=r.itemType;if("number"==typeof i){const r=ae(i);if(!r)throw new Error(`Cannot get default converter for array item of ${e.name} ASN1 schema`);return e.from(t.valueBlock.value,(t=>r.fromASN(t)))}return e.from(t.valueBlock.value,(t=>this.fromASN(t,i)))}for(const t in r.items){const e=n.result[t];if(!e)continue;const s=r.items[t],a=s.type;if("number"==typeof a||ue(a)){const r=null!==(i=s.converter)&&void 0!==i?i:ue(a)?new a:null;if(!r)throw new Error("Converter is empty");if(s.repeated)if(s.implicit){const i=new("sequence"===s.repeated?rt:st);i.valueBlock=e.valueBlock;const n=N(i.toBER(!1));if(-1===n.offset)throw new Error(`Cannot parse the child item. ${n.result.error}`);if(!("value"in n.result.valueBlock)||!Array.isArray(n.result.valueBlock.value))throw new Error("Cannot get items from the ASN.1 parsed value. ASN.1 object is not constructed.");o[t]=Array.from(n.result.valueBlock.value,(t=>r.fromASN(t)))}else o[t]=Array.from(e,(t=>r.fromASN(t)));else{let i=e;if(s.implicit){let t;if(ue(a))t=(new a).toSchema("");else{const e=Kt[a],i=kt[e];if(!i)throw new Error(`Cannot get '${e}' class from asn1js module`);t=new i}t.valueBlock=i.valueBlock,i=N(t.toBER(!1)).result}o[t]=r.fromASN(i)}}else if(s.repeated){if(!Array.isArray(e))throw new Error("Cannot get list of items from the ASN.1 parsed value. ASN.1 value should be iterable.");o[t]=Array.from(e,(t=>this.fromASN(t,a)))}else o[t]=this.fromASN(e,a)}return o}catch(t){throw t instanceof Se&&t.schemas.push(e.name),t}}}class Ae{static serialize(t){return t instanceof D?t.toBER(!1):this.toASN(t).toBER(!1)}static toASN(t){if(t&&"object"==typeof t&&ue(t))return t.toASN();if(!t||"object"!=typeof t)throw new TypeError("Parameter 1 should be type of Object.");const e=t.constructor,i=de.get(e);de.cache(e);let r,s=[];if(i.itemType){if(!Array.isArray(t))throw new TypeError("Parameter 1 should be type of Array.");if("number"==typeof i.itemType){const r=ae(i.itemType);if(!r)throw new Error(`Cannot get default converter for array item of ${e.name} ASN1 schema`);s=t.map((t=>r.toASN(t)))}else s=t.map((t=>this.toAsnItem({type:i.itemType},"[]",e,t)))}else for(const r in i.items){const n=i.items[r],o=t[r];if(void 0===o||n.defaultValue===o||"object"==typeof n.defaultValue&&"object"==typeof o&&pe(this.serialize(n.defaultValue),this.serialize(o)))continue;const a=Ae.toAsnItem(n,r,e,o);if("number"==typeof n.context)if(n.implicit)if(n.repeated||"number"!=typeof n.type&&!ue(n.type))s.push(new M({optional:n.optional,idBlock:{tagClass:3,tagNumber:n.context},value:a.valueBlock.value}));else{const t={};t.valueHex=a instanceof H?a.valueBeforeDecodeView:a.valueBlock.toBER(),s.push(new O({optional:n.optional,idBlock:{tagClass:3,tagNumber:n.context},...t}))}else s.push(new M({optional:n.optional,idBlock:{tagClass:3,tagNumber:n.context},value:[a]}));else n.repeated?s=s.concat(a):s.push(a)}switch(i.type){case Mt.Sequence:r=new rt({value:s});break;case Mt.Set:r=new st({value:s});break;case Mt.Choice:if(!s[0])throw new Error(`Schema '${e.name}' has wrong data. Choice cannot be empty.`);r=s[0]}return r}static toAsnItem(t,e,i,r){let s;if("number"==typeof t.type){const n=t.converter;if(!n)throw new Error(`Property '${e}' doesn't have converter for type ${Kt[t.type]} in schema '${i.name}'`);if(t.repeated){if(!Array.isArray(r))throw new TypeError("Parameter 'objProp' should be type of Array.");const e=Array.from(r,(t=>n.toASN(t)));s=new("sequence"===t.repeated?rt:st)({value:e})}else s=n.toASN(r)}else if(t.repeated){if(!Array.isArray(r))throw new TypeError("Parameter 'objProp' should be type of Array.");const e=Array.from(r,(t=>this.toASN(t)));s=new("sequence"===t.repeated?rt:st)({value:e})}else s=this.toASN(r);return s}}class me extends Array{constructor(t=[]){if("number"==typeof t)super(t);else{super();for(const e of t)this.push(e)}}}class ge{static serialize(t){return Ae.serialize(t)}static parse(t,e){return Ce.parse(t,e)}static toString(e){const i=N(t.BufferSourceConverter.isBufferSource(e)?t.BufferSourceConverter.toArrayBuffer(e):ge.serialize(e));if(-1===i.offset)throw new Error(`Cannot decode ASN.1 data. ${i.result.error}`);return i.result.toString()}}function ve(t,e,i,r){var s,n=arguments.length,o=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,i,r);else for(var a=t.length-1;a>=0;a--)(s=t[a])&&(o=(n<3?s(o):n>3?s(e,i,o):s(e,i))||o);return n>3&&o&&Object.defineProperty(e,i,o),o}var Ee,we,Pe,be=e((function(t){!function(e){const i="(0?\\d+|0x[a-f0-9]+)",r={fourOctet:new RegExp(`^${i}\\.${i}\\.${i}\\.${i}$`,"i"),threeOctet:new RegExp(`^${i}\\.${i}\\.${i}$`,"i"),twoOctet:new RegExp(`^${i}\\.${i}$`,"i"),longValue:new RegExp(`^${i}$`,"i")},s=new RegExp("^0[0-7]+$","i"),n=new RegExp("^0x[a-f0-9]+$","i"),o="%[0-9a-z]{1,}",a="(?:[0-9a-f]+::?)+",c={zoneIndex:new RegExp(o,"i"),native:new RegExp(`^(::)?(${a})?([0-9a-f]+)?(::)?(${o})?$`,"i"),deprecatedTransitional:new RegExp(`^(?:::)(${i}\\.${i}\\.${i}\\.${i}(${o})?)$`,"i"),transitional:new RegExp(`^((?:${a})|(?:::)(?:${a})?)${i}\\.${i}\\.${i}\\.${i}(${o})?$`,"i")};function l(t,e){if(t.indexOf("::")!==t.lastIndexOf("::"))return null;let i,r,s=0,n=-1,o=(t.match(c.zoneIndex)||[])[0];for(o&&(o=o.substring(1),t=t.replace(/%.+$/,""));(n=t.indexOf(":",n+1))>=0;)s++;if("::"===t.substr(0,2)&&s--,"::"===t.substr(-2,2)&&s--,s>e)return null;for(r=e-s,i=":";r--;)i+="0:";return":"===(t=t.replace("::",i))[0]&&(t=t.slice(1)),":"===t[t.length-1]&&(t=t.slice(0,-1)),{parts:e=function(){const e=t.split(":"),i=[];for(let t=0;t<e.length;t++)i.push(parseInt(e[t],16));return i}(),zoneId:o}}function u(t,e,i,r){if(t.length!==e.length)throw new Error("ipaddr: cannot match CIDR for objects with different lengths");let s,n=0;for(;r>0;){if(s=i-r,s<0&&(s=0),t[n]>>s!=e[n]>>s)return!1;r-=i,n+=1}return!0}function h(t){if(n.test(t))return parseInt(t,16);if("0"===t[0]&&!isNaN(parseInt(t[1],10))){if(s.test(t))return parseInt(t,8);throw new Error(`ipaddr: cannot parse ${t} as octal`)}return parseInt(t,10)}function p(t,e){for(;t.length<e;)t=`0${t}`;return t}const d={};d.IPv4=function(){function t(t){if(4!==t.length)throw new Error("ipaddr: ipv4 octet count should be 4");let e,i;for(e=0;e<t.length;e++)if(i=t[e],!(0<=i&&i<=255))throw new Error("ipaddr: ipv4 octet should fit in 8 bits");this.octets=t}return t.prototype.SpecialRanges={unspecified:[[new t([0,0,0,0]),8]],broadcast:[[new t([255,255,255,255]),32]],multicast:[[new t([224,0,0,0]),4]],linkLocal:[[new t([169,254,0,0]),16]],loopback:[[new t([127,0,0,0]),8]],carrierGradeNat:[[new t([100,64,0,0]),10]],private:[[new t([10,0,0,0]),8],[new t([172,16,0,0]),12],[new t([192,168,0,0]),16]],reserved:[[new t([192,0,0,0]),24],[new t([192,0,2,0]),24],[new t([192,88,99,0]),24],[new t([198,51,100,0]),24],[new t([203,0,113,0]),24],[new t([240,0,0,0]),4]]},t.prototype.kind=function(){return"ipv4"},t.prototype.match=function(t,e){let i;if(void 0===e&&(i=t,t=i[0],e=i[1]),"ipv4"!==t.kind())throw new Error("ipaddr: cannot match ipv4 address with non-ipv4 one");return u(this.octets,t.octets,8,e)},t.prototype.prefixLengthFromSubnetMask=function(){let t=0,e=!1;const i={0:8,128:7,192:6,224:5,240:4,248:3,252:2,254:1,255:0};let r,s,n;for(r=3;r>=0;r-=1){if(s=this.octets[r],!(s in i))return null;if(n=i[s],e&&0!==n)return null;8!==n&&(e=!0),t+=n}return 32-t},t.prototype.range=function(){return d.subnetMatch(this,this.SpecialRanges)},t.prototype.toByteArray=function(){return this.octets.slice(0)},t.prototype.toIPv4MappedAddress=function(){return d.IPv6.parse(`::ffff:${this.toString()}`)},t.prototype.toNormalizedString=function(){return this.toString()},t.prototype.toString=function(){return this.octets.join(".")},t}(),d.IPv4.broadcastAddressFromCIDR=function(t){try{const e=this.parseCIDR(t),i=e[0].toByteArray(),r=this.subnetMaskFromPrefixLength(e[1]).toByteArray(),s=[];let n=0;for(;n<4;)s.push(parseInt(i[n],10)|255^parseInt(r[n],10)),n++;return new this(s)}catch(t){throw new Error("ipaddr: the address does not have IPv4 CIDR format")}},d.IPv4.isIPv4=function(t){return null!==this.parser(t)},d.IPv4.isValid=function(t){try{return new this(this.parser(t)),!0}catch(t){return!1}},d.IPv4.isValidFourPartDecimal=function(t){return!(!d.IPv4.isValid(t)||!t.match(/^(0|[1-9]\d*)(\.(0|[1-9]\d*)){3}$/))},d.IPv4.networkAddressFromCIDR=function(t){let e,i,r,s,n;try{for(e=this.parseCIDR(t),r=e[0].toByteArray(),n=this.subnetMaskFromPrefixLength(e[1]).toByteArray(),s=[],i=0;i<4;)s.push(parseInt(r[i],10)&parseInt(n[i],10)),i++;return new this(s)}catch(t){throw new Error("ipaddr: the address does not have IPv4 CIDR format")}},d.IPv4.parse=function(t){const e=this.parser(t);if(null===e)throw new Error("ipaddr: string is not formatted like an IPv4 Address");return new this(e)},d.IPv4.parseCIDR=function(t){let e;if(e=t.match(/^(.+)\/(\d+)$/)){const t=parseInt(e[2]);if(t>=0&&t<=32){const i=[this.parse(e[1]),t];return Object.defineProperty(i,"toString",{value:function(){return this.join("/")}}),i}}throw new Error("ipaddr: string is not formatted like an IPv4 CIDR range")},d.IPv4.parser=function(t){let e,i,s;if(e=t.match(r.fourOctet))return function(){const t=e.slice(1,6),r=[];for(let e=0;e<t.length;e++)i=t[e],r.push(h(i));return r}();if(e=t.match(r.longValue)){if(s=h(e[1]),s>4294967295||s<0)throw new Error("ipaddr: address outside defined range");return function(){const t=[];let e;for(e=0;e<=24;e+=8)t.push(s>>e&255);return t}().reverse()}return(e=t.match(r.twoOctet))?function(){const t=e.slice(1,4),i=[];if(s=h(t[1]),s>16777215||s<0)throw new Error("ipaddr: address outside defined range");return i.push(h(t[0])),i.push(s>>16&255),i.push(s>>8&255),i.push(255&s),i}():(e=t.match(r.threeOctet))?function(){const t=e.slice(1,5),i=[];if(s=h(t[2]),s>65535||s<0)throw new Error("ipaddr: address outside defined range");return i.push(h(t[0])),i.push(h(t[1])),i.push(s>>8&255),i.push(255&s),i}():null},d.IPv4.subnetMaskFromPrefixLength=function(t){if((t=parseInt(t))<0||t>32)throw new Error("ipaddr: invalid IPv4 prefix length");const e=[0,0,0,0];let i=0;const r=Math.floor(t/8);for(;i<r;)e[i]=255,i++;return r<4&&(e[r]=Math.pow(2,t%8)-1<<8-t%8),new this(e)},d.IPv6=function(){function t(t,e){let i,r;if(16===t.length)for(this.parts=[],i=0;i<=14;i+=2)this.parts.push(t[i]<<8|t[i+1]);else{if(8!==t.length)throw new Error("ipaddr: ipv6 part count should be 8 or 16");this.parts=t}for(i=0;i<this.parts.length;i++)if(r=this.parts[i],!(0<=r&&r<=65535))throw new Error("ipaddr: ipv6 part should fit in 16 bits");e&&(this.zoneId=e)}return t.prototype.SpecialRanges={unspecified:[new t([0,0,0,0,0,0,0,0]),128],linkLocal:[new t([65152,0,0,0,0,0,0,0]),10],multicast:[new t([65280,0,0,0,0,0,0,0]),8],loopback:[new t([0,0,0,0,0,0,0,1]),128],uniqueLocal:[new t([64512,0,0,0,0,0,0,0]),7],ipv4Mapped:[new t([0,0,0,0,0,65535,0,0]),96],rfc6145:[new t([0,0,0,0,65535,0,0,0]),96],rfc6052:[new t([100,65435,0,0,0,0,0,0]),96],"6to4":[new t([8194,0,0,0,0,0,0,0]),16],teredo:[new t([8193,0,0,0,0,0,0,0]),32],reserved:[[new t([8193,3512,0,0,0,0,0,0]),32]]},t.prototype.isIPv4MappedAddress=function(){return"ipv4Mapped"===this.range()},t.prototype.kind=function(){return"ipv6"},t.prototype.match=function(t,e){let i;if(void 0===e&&(i=t,t=i[0],e=i[1]),"ipv6"!==t.kind())throw new Error("ipaddr: cannot match ipv6 address with non-ipv6 one");return u(this.parts,t.parts,16,e)},t.prototype.prefixLengthFromSubnetMask=function(){let t=0,e=!1;const i={0:16,32768:15,49152:14,57344:13,61440:12,63488:11,64512:10,65024:9,65280:8,65408:7,65472:6,65504:5,65520:4,65528:3,65532:2,65534:1,65535:0};let r,s;for(let n=7;n>=0;n-=1){if(r=this.parts[n],!(r in i))return null;if(s=i[r],e&&0!==s)return null;16!==s&&(e=!0),t+=s}return 128-t},t.prototype.range=function(){return d.subnetMatch(this,this.SpecialRanges)},t.prototype.toByteArray=function(){let t;const e=[],i=this.parts;for(let r=0;r<i.length;r++)t=i[r],e.push(t>>8),e.push(255&t);return e},t.prototype.toFixedLengthString=function(){const t=function(){const t=[];for(let e=0;e<this.parts.length;e++)t.push(p(this.parts[e].toString(16),4));return t}.call(this).join(":");let e="";return this.zoneId&&(e=`%${this.zoneId}`),t+e},t.prototype.toIPv4Address=function(){if(!this.isIPv4MappedAddress())throw new Error("ipaddr: trying to convert a generic ipv6 address to ipv4");const t=this.parts.slice(-2),e=t[0],i=t[1];return new d.IPv4([e>>8,255&e,i>>8,255&i])},t.prototype.toNormalizedString=function(){const t=function(){const t=[];for(let e=0;e<this.parts.length;e++)t.push(this.parts[e].toString(16));return t}.call(this).join(":");let e="";return this.zoneId&&(e=`%${this.zoneId}`),t+e},t.prototype.toRFC5952String=function(){const t=/((^|:)(0(:|$)){2,})/g,e=this.toNormalizedString();let i,r=0,s=-1;for(;i=t.exec(e);)i[0].length>s&&(r=i.index,s=i[0].length);return s<0?e:`${e.substring(0,r)}::${e.substring(r+s)}`},t.prototype.toString=function(){return this.toNormalizedString().replace(/((^|:)(0(:|$))+)/,"::")},t}(),d.IPv6.broadcastAddressFromCIDR=function(t){try{const e=this.parseCIDR(t),i=e[0].toByteArray(),r=this.subnetMaskFromPrefixLength(e[1]).toByteArray(),s=[];let n=0;for(;n<16;)s.push(parseInt(i[n],10)|255^parseInt(r[n],10)),n++;return new this(s)}catch(t){throw new Error(`ipaddr: the address does not have IPv6 CIDR format (${t})`)}},d.IPv6.isIPv6=function(t){return null!==this.parser(t)},d.IPv6.isValid=function(t){if("string"==typeof t&&-1===t.indexOf(":"))return!1;try{const e=this.parser(t);return new this(e.parts,e.zoneId),!0}catch(t){return!1}},d.IPv6.networkAddressFromCIDR=function(t){let e,i,r,s,n;try{for(e=this.parseCIDR(t),r=e[0].toByteArray(),n=this.subnetMaskFromPrefixLength(e[1]).toByteArray(),s=[],i=0;i<16;)s.push(parseInt(r[i],10)&parseInt(n[i],10)),i++;return new this(s)}catch(t){throw new Error(`ipaddr: the address does not have IPv6 CIDR format (${t})`)}},d.IPv6.parse=function(t){const e=this.parser(t);if(null===e.parts)throw new Error("ipaddr: string is not formatted like an IPv6 Address");return new this(e.parts,e.zoneId)},d.IPv6.parseCIDR=function(t){let e,i,r;if((i=t.match(/^(.+)\/(\d+)$/))&&(e=parseInt(i[2]),e>=0&&e<=128))return r=[this.parse(i[1]),e],Object.defineProperty(r,"toString",{value:function(){return this.join("/")}}),r;throw new Error("ipaddr: string is not formatted like an IPv6 CIDR range")},d.IPv6.parser=function(t){let e,i,r,s,n,o;if(r=t.match(c.deprecatedTransitional))return this.parser(`::ffff:${r[1]}`);if(c.native.test(t))return l(t,8);if((r=t.match(c.transitional))&&(o=r[6]||"",e=l(r[1].slice(0,-1)+o,6),e.parts)){for(n=[parseInt(r[2]),parseInt(r[3]),parseInt(r[4]),parseInt(r[5])],i=0;i<n.length;i++)if(s=n[i],!(0<=s&&s<=255))return null;return e.parts.push(n[0]<<8|n[1]),e.parts.push(n[2]<<8|n[3]),{parts:e.parts,zoneId:e.zoneId}}return null},d.IPv6.subnetMaskFromPrefixLength=function(t){if((t=parseInt(t))<0||t>128)throw new Error("ipaddr: invalid IPv6 prefix length");const e=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];let i=0;const r=Math.floor(t/8);for(;i<r;)e[i]=255,i++;return r<16&&(e[r]=Math.pow(2,t%8)-1<<8-t%8),new this(e)},d.fromByteArray=function(t){const e=t.length;if(4===e)return new d.IPv4(t);if(16===e)return new d.IPv6(t);throw new Error("ipaddr: the binary input is neither an IPv6 nor IPv4 address")},d.isValid=function(t){return d.IPv6.isValid(t)||d.IPv4.isValid(t)},d.parse=function(t){if(d.IPv6.isValid(t))return d.IPv6.parse(t);if(d.IPv4.isValid(t))return d.IPv4.parse(t);throw new Error("ipaddr: the address has neither IPv6 nor IPv4 format")},d.parseCIDR=function(t){try{return d.IPv6.parseCIDR(t)}catch(e){try{return d.IPv4.parseCIDR(t)}catch(t){throw new Error("ipaddr: the address has neither IPv6 nor IPv4 CIDR format")}}},d.process=function(t){const e=this.parse(t);return"ipv6"===e.kind()&&e.isIPv4MappedAddress()?e.toIPv4Address():e},d.subnetMatch=function(t,e,i){let r,s,n,o;for(s in null==i&&(i="unicast"),e)if(Object.prototype.hasOwnProperty.call(e,s))for(n=e[s],!n[0]||n[0]instanceof Array||(n=[n]),r=0;r<n.length;r++)if(o=n[r],t.kind()===o[0].kind()&&t.match.apply(t,o))return s;return i},t.exports?t.exports=d:e.ipaddr=d}(i)}));class De{static decodeIP(t){if(64===t.length&&0===parseInt(t,16))return"::/0";if(16!==t.length)return t;const e=parseInt(t.slice(8),16).toString(2).split("").reduce(((t,e)=>t+ +e),0);let i=t.slice(0,8).replace(/(.{2})/g,(t=>`${parseInt(t,16)}.`));return i=i.slice(0,-1),`${i}/${e}`}static toString(e){if(4===e.byteLength||16===e.byteLength){const t=new Uint8Array(e);return be.fromByteArray(Array.from(t)).toString()}return this.decodeIP(t.Convert.ToHex(e))}static fromString(t){const e=be.parse(t);return new Uint8Array(e.toByteArray()).buffer}}let Ie=class{constructor(t={}){Object.assign(this,t)}toString(){return this.bmpString||this.printableString||this.teletexString||this.universalString||this.utf8String||""}};ve([fe({type:Kt.TeletexString})],Ie.prototype,"teletexString",void 0),ve([fe({type:Kt.PrintableString})],Ie.prototype,"printableString",void 0),ve([fe({type:Kt.UniversalString})],Ie.prototype,"universalString",void 0),ve([fe({type:Kt.Utf8String})],Ie.prototype,"utf8String",void 0),ve([fe({type:Kt.BmpString})],Ie.prototype,"bmpString",void 0),Ie=ve([ye({type:Mt.Choice})],Ie);let Be=class extends Ie{constructor(t={}){super(t),Object.assign(this,t)}toString(){return this.ia5String||(this.anyValue?t.Convert.ToHex(this.anyValue):super.toString())}};ve([fe({type:Kt.IA5String})],Be.prototype,"ia5String",void 0),ve([fe({type:Kt.Any})],Be.prototype,"anyValue",void 0),Be=ve([ye({type:Mt.Choice})],Be);class Te{constructor(t={}){this.type="",this.value=new Be,Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],Te.prototype,"type",void 0),ve([fe({type:Be})],Te.prototype,"value",void 0);let xe=Ee=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Ee.prototype)}};xe=Ee=ve([ye({type:Mt.Set,itemType:Te})],xe);let Oe=we=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,we.prototype)}};Oe=we=ve([ye({type:Mt.Sequence,itemType:xe})],Oe);let Re=Pe=class extends Oe{constructor(t){super(t),Object.setPrototypeOf(this,Pe.prototype)}};Re=Pe=ve([ye({type:Mt.Sequence})],Re);const Ne={fromASN:t=>De.toString(Gt.fromASN(t)),toASN:t=>Gt.toASN(De.fromString(t))};class ke{constructor(t={}){this.typeId="",this.value=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],ke.prototype,"typeId",void 0),ve([fe({type:Kt.Any,context:0})],ke.prototype,"value",void 0);class Me{constructor(t={}){this.partyName=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Ie,optional:!0,context:0,implicit:!0})],Me.prototype,"nameAssigner",void 0),ve([fe({type:Ie,context:1,implicit:!0})],Me.prototype,"partyName",void 0);let Ke=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:ke,context:0,implicit:!0})],Ke.prototype,"otherName",void 0),ve([fe({type:Kt.IA5String,context:1,implicit:!0})],Ke.prototype,"rfc822Name",void 0),ve([fe({type:Kt.IA5String,context:2,implicit:!0})],Ke.prototype,"dNSName",void 0),ve([fe({type:Kt.Any,context:3,implicit:!0})],Ke.prototype,"x400Address",void 0),ve([fe({type:Re,context:4,implicit:!1})],Ke.prototype,"directoryName",void 0),ve([fe({type:Me,context:5})],Ke.prototype,"ediPartyName",void 0),ve([fe({type:Kt.IA5String,context:6,implicit:!0})],Ke.prototype,"uniformResourceIdentifier",void 0),ve([fe({type:Kt.OctetString,context:7,implicit:!0,converter:Ne})],Ke.prototype,"iPAddress",void 0),ve([fe({type:Kt.ObjectIdentifier,context:8,implicit:!0})],Ke.prototype,"registeredID",void 0),Ke=ve([ye({type:Mt.Choice})],Ke);const je="1.3.6.1.5.5.7.1";var He;const _e=`${je}.1`;class Ue{constructor(t={}){this.accessMethod="",this.accessLocation=new Ke,Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],Ue.prototype,"accessMethod",void 0),ve([fe({type:Ke})],Ue.prototype,"accessLocation",void 0);let Fe=He=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,He.prototype)}};Fe=He=ve([ye({type:Mt.Sequence,itemType:Ue})],Fe);class Ve extends le{}class Le{constructor(t={}){t&&Object.assign(this,t)}}ve([fe({type:Ve,context:0,optional:!0,implicit:!0})],Le.prototype,"keyIdentifier",void 0),ve([fe({type:Ke,context:1,optional:!0,implicit:!0,repeated:"sequence"})],Le.prototype,"authorityCertIssuer",void 0),ve([fe({type:Kt.Integer,context:2,optional:!0,implicit:!0,converter:Ut})],Le.prototype,"authorityCertSerialNumber",void 0);class Ge{constructor(t={}){this.cA=!1,Object.assign(this,t)}}var $e;ve([fe({type:Kt.Boolean,defaultValue:!1})],Ge.prototype,"cA",void 0),ve([fe({type:Kt.Integer,optional:!0})],Ge.prototype,"pathLenConstraint",void 0);let Qe=$e=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,$e.prototype)}};var We;Qe=$e=ve([ye({type:Mt.Sequence,itemType:Ke})],Qe);let qe=We=class extends Qe{constructor(t){super(t),Object.setPrototypeOf(this,We.prototype)}};var ze;qe=We=ve([ye({type:Mt.Sequence})],qe);let Je=class{constructor(t={}){Object.assign(this,t)}toString(){return this.ia5String||this.visibleString||this.bmpString||this.utf8String||""}};ve([fe({type:Kt.IA5String})],Je.prototype,"ia5String",void 0),ve([fe({type:Kt.VisibleString})],Je.prototype,"visibleString",void 0),ve([fe({type:Kt.BmpString})],Je.prototype,"bmpString",void 0),ve([fe({type:Kt.Utf8String})],Je.prototype,"utf8String",void 0),Je=ve([ye({type:Mt.Choice})],Je);class Ze{constructor(t={}){this.organization=new Je,this.noticeNumbers=[],Object.assign(this,t)}}ve([fe({type:Je})],Ze.prototype,"organization",void 0),ve([fe({type:Kt.Integer,repeated:"sequence"})],Ze.prototype,"noticeNumbers",void 0);class Xe{constructor(t={}){Object.assign(this,t)}}ve([fe({type:Ze,optional:!0})],Xe.prototype,"noticeRef",void 0),ve([fe({type:Je,optional:!0})],Xe.prototype,"explicitText",void 0);let Ye=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Kt.IA5String})],Ye.prototype,"cPSuri",void 0),ve([fe({type:Xe})],Ye.prototype,"userNotice",void 0),Ye=ve([ye({type:Mt.Choice})],Ye);class ti{constructor(t={}){this.policyQualifierId="",this.qualifier=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],ti.prototype,"policyQualifierId",void 0),ve([fe({type:Kt.Any})],ti.prototype,"qualifier",void 0);class ei{constructor(t={}){this.policyIdentifier="",Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],ei.prototype,"policyIdentifier",void 0),ve([fe({type:ti,repeated:"sequence",optional:!0})],ei.prototype,"policyQualifiers",void 0);let ii=ze=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,ze.prototype)}};ii=ze=ve([ye({type:Mt.Sequence,itemType:ei})],ii);let ri=class{constructor(t=0){this.value=t}};ve([fe({type:Kt.Integer})],ri.prototype,"value",void 0),ri=ve([ye({type:Mt.Choice})],ri);let si=class extends ri{};var ni,oi;si=ve([ye({type:Mt.Choice})],si),function(t){t[t.unused=1]="unused",t[t.keyCompromise=2]="keyCompromise",t[t.cACompromise=4]="cACompromise",t[t.affiliationChanged=8]="affiliationChanged",t[t.superseded=16]="superseded",t[t.cessationOfOperation=32]="cessationOfOperation",t[t.certificateHold=64]="certificateHold",t[t.privilegeWithdrawn=128]="privilegeWithdrawn",t[t.aACompromise=256]="aACompromise"}(oi||(oi={}));class ai extends ce{toJSON(){const t=[],e=this.toNumber();return e&oi.aACompromise&&t.push("aACompromise"),e&oi.affiliationChanged&&t.push("affiliationChanged"),e&oi.cACompromise&&t.push("cACompromise"),e&oi.certificateHold&&t.push("certificateHold"),e&oi.cessationOfOperation&&t.push("cessationOfOperation"),e&oi.keyCompromise&&t.push("keyCompromise"),e&oi.privilegeWithdrawn&&t.push("privilegeWithdrawn"),e&oi.superseded&&t.push("superseded"),e&oi.unused&&t.push("unused"),t}toString(){return`[${this.toJSON().join(", ")}]`}}let ci=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Ke,context:0,repeated:"sequence",implicit:!0})],ci.prototype,"fullName",void 0),ve([fe({type:xe,context:1,implicit:!0})],ci.prototype,"nameRelativeToCRLIssuer",void 0),ci=ve([ye({type:Mt.Choice})],ci);class li{constructor(t={}){Object.assign(this,t)}}ve([fe({type:ci,context:0,optional:!0})],li.prototype,"distributionPoint",void 0),ve([fe({type:ai,context:1,optional:!0,implicit:!0})],li.prototype,"reasons",void 0),ve([fe({type:Ke,context:2,optional:!0,repeated:"sequence",implicit:!0})],li.prototype,"cRLIssuer",void 0);let ui=ni=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,ni.prototype)}};var hi;ui=ni=ve([ye({type:Mt.Sequence,itemType:li})],ui);let pi=hi=class extends ui{constructor(t){super(t),Object.setPrototypeOf(this,hi.prototype)}};pi=hi=ve([ye({type:Mt.Sequence,itemType:li})],pi);class di{constructor(t={}){this.onlyContainsUserCerts=di.ONLY,this.onlyContainsCACerts=di.ONLY,this.indirectCRL=di.ONLY,this.onlyContainsAttributeCerts=di.ONLY,Object.assign(this,t)}}var yi;di.ONLY=!1,ve([fe({type:ci,context:0,optional:!0})],di.prototype,"distributionPoint",void 0),ve([fe({type:Kt.Boolean,context:1,defaultValue:di.ONLY,implicit:!0})],di.prototype,"onlyContainsUserCerts",void 0),ve([fe({type:Kt.Boolean,context:2,defaultValue:di.ONLY,implicit:!0})],di.prototype,"onlyContainsCACerts",void 0),ve([fe({type:ai,context:3,optional:!0,implicit:!0})],di.prototype,"onlySomeReasons",void 0),ve([fe({type:Kt.Boolean,context:4,defaultValue:di.ONLY,implicit:!0})],di.prototype,"indirectCRL",void 0),ve([fe({type:Kt.Boolean,context:5,defaultValue:di.ONLY,implicit:!0})],di.prototype,"onlyContainsAttributeCerts",void 0),function(t){t[t.unspecified=0]="unspecified",t[t.keyCompromise=1]="keyCompromise",t[t.cACompromise=2]="cACompromise",t[t.affiliationChanged=3]="affiliationChanged",t[t.superseded=4]="superseded",t[t.cessationOfOperation=5]="cessationOfOperation",t[t.certificateHold=6]="certificateHold",t[t.removeFromCRL=8]="removeFromCRL",t[t.privilegeWithdrawn=9]="privilegeWithdrawn",t[t.aACompromise=10]="aACompromise"}(yi||(yi={}));let fi=class{constructor(t=yi.unspecified){this.reason=yi.unspecified,this.reason=t}toJSON(){return yi[this.reason]}toString(){return this.toJSON()}};var Si;ve([fe({type:Kt.Enumerated})],fi.prototype,"reason",void 0),fi=ve([ye({type:Mt.Choice})],fi);let Ci=Si=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Si.prototype)}};Ci=Si=ve([ye({type:Mt.Sequence,itemType:Kt.ObjectIdentifier})],Ci);let Ai=class{constructor(t=new ArrayBuffer(0)){this.value=t}};ve([fe({type:Kt.Integer,converter:Ut})],Ai.prototype,"value",void 0),Ai=ve([ye({type:Mt.Choice})],Ai);let mi=class{constructor(t){this.value=new Date,t&&(this.value=t)}};var gi;ve([fe({type:Kt.GeneralizedTime})],mi.prototype,"value",void 0),mi=ve([ye({type:Mt.Choice})],mi);let vi=gi=class extends Qe{constructor(t){super(t),Object.setPrototypeOf(this,gi.prototype)}};var Ei,wi;vi=gi=ve([ye({type:Mt.Sequence})],vi),function(t){t[t.digitalSignature=1]="digitalSignature",t[t.nonRepudiation=2]="nonRepudiation",t[t.keyEncipherment=4]="keyEncipherment",t[t.dataEncipherment=8]="dataEncipherment",t[t.keyAgreement=16]="keyAgreement",t[t.keyCertSign=32]="keyCertSign",t[t.cRLSign=64]="cRLSign",t[t.encipherOnly=128]="encipherOnly",t[t.decipherOnly=256]="decipherOnly"}(Ei||(Ei={}));class Pi extends ce{toJSON(){const t=this.toNumber(),e=[];return t&Ei.cRLSign&&e.push("crlSign"),t&Ei.dataEncipherment&&e.push("dataEncipherment"),t&Ei.decipherOnly&&e.push("decipherOnly"),t&Ei.digitalSignature&&e.push("digitalSignature"),t&Ei.encipherOnly&&e.push("encipherOnly"),t&Ei.keyAgreement&&e.push("keyAgreement"),t&Ei.keyCertSign&&e.push("keyCertSign"),t&Ei.keyEncipherment&&e.push("keyEncipherment"),t&Ei.nonRepudiation&&e.push("nonRepudiation"),e}toString(){return`[${this.toJSON().join(", ")}]`}}class bi{constructor(t={}){this.base=new Ke,this.minimum=0,Object.assign(this,t)}}ve([fe({type:Ke})],bi.prototype,"base",void 0),ve([fe({type:Kt.Integer,context:0,defaultValue:0,implicit:!0})],bi.prototype,"minimum",void 0),ve([fe({type:Kt.Integer,context:1,optional:!0,implicit:!0})],bi.prototype,"maximum",void 0);let Di=wi=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,wi.prototype)}};Di=wi=ve([ye({type:Mt.Sequence,itemType:bi})],Di);class Ii{constructor(t={}){Object.assign(this,t)}}ve([fe({type:Di,context:0,optional:!0,implicit:!0})],Ii.prototype,"permittedSubtrees",void 0),ve([fe({type:Di,context:1,optional:!0,implicit:!0})],Ii.prototype,"excludedSubtrees",void 0);class Bi{constructor(t={}){Object.assign(this,t)}}var Ti;ve([fe({type:Kt.Integer,context:0,implicit:!0,optional:!0,converter:Ut})],Bi.prototype,"requireExplicitPolicy",void 0),ve([fe({type:Kt.Integer,context:1,implicit:!0,optional:!0,converter:Ut})],Bi.prototype,"inhibitPolicyMapping",void 0);class xi{constructor(t={}){this.issuerDomainPolicy="",this.subjectDomainPolicy="",Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],xi.prototype,"issuerDomainPolicy",void 0),ve([fe({type:Kt.ObjectIdentifier})],xi.prototype,"subjectDomainPolicy",void 0);let Oi=Ti=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Ti.prototype)}};var Ri;Oi=Ti=ve([ye({type:Mt.Sequence,itemType:xi})],Oi);let Ni=Ri=class extends Qe{constructor(t){super(t),Object.setPrototypeOf(this,Ri.prototype)}};Ni=Ri=ve([ye({type:Mt.Sequence})],Ni);class ki{constructor(t={}){this.type="",this.values=[],Object.assign(this,t)}}var Mi;ve([fe({type:Kt.ObjectIdentifier})],ki.prototype,"type",void 0),ve([fe({type:Kt.Any,repeated:"set"})],ki.prototype,"values",void 0);let Ki=Mi=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Mi.prototype)}};Ki=Mi=ve([ye({type:Mt.Sequence,itemType:ki})],Ki);class ji extends Ve{}class Hi{constructor(t={}){Object.assign(this,t)}}var _i,Ui;ve([fe({type:Kt.GeneralizedTime,context:0,implicit:!0,optional:!0})],Hi.prototype,"notBefore",void 0),ve([fe({type:Kt.GeneralizedTime,context:1,implicit:!0,optional:!0})],Hi.prototype,"notAfter",void 0),function(t){t[t.keyUpdateAllowed=1]="keyUpdateAllowed",t[t.newExtensions=2]="newExtensions",t[t.pKIXCertificate=4]="pKIXCertificate"}(_i||(_i={}));class Fi extends ce{toJSON(){const t=[],e=this.toNumber();return e&_i.pKIXCertificate&&t.push("pKIXCertificate"),e&_i.newExtensions&&t.push("newExtensions"),e&_i.keyUpdateAllowed&&t.push("keyUpdateAllowed"),t}toString(){return`[${this.toJSON().join(", ")}]`}}class Vi{constructor(t={}){this.entrustVers="",this.entrustInfoFlags=new Fi,Object.assign(this,t)}}ve([fe({type:Kt.GeneralString})],Vi.prototype,"entrustVers",void 0),ve([fe({type:Fi})],Vi.prototype,"entrustInfoFlags",void 0);const Li=`${je}.11`;let Gi=Ui=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Ui.prototype)}};Gi=Ui=ve([ye({type:Mt.Sequence,itemType:Ue})],Gi);class $i{constructor(t={}){this.algorithm="",Object.assign(this,t)}isEqual(e){return e instanceof $i&&e.algorithm==this.algorithm&&(e.parameters&&this.parameters&&t.isEqual(e.parameters,this.parameters)||e.parameters===this.parameters)}}ve([fe({type:Kt.ObjectIdentifier})],$i.prototype,"algorithm",void 0),ve([fe({type:Kt.Any,optional:!0})],$i.prototype,"parameters",void 0);class Qi{constructor(t={}){this.algorithm=new $i,this.subjectPublicKey=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:$i})],Qi.prototype,"algorithm",void 0),ve([fe({type:Kt.BitString})],Qi.prototype,"subjectPublicKey",void 0);let Wi=class{constructor(t){t&&("string"==typeof t||"number"==typeof t?this.utcTime=new Date(t):t instanceof Date?this.utcTime=t:Object.assign(this,t))}getTime(){const t=this.utcTime||this.generalTime;if(!t)throw new Error("Cannot get time from CHOICE object");return t}};ve([fe({type:Kt.UTCTime})],Wi.prototype,"utcTime",void 0),ve([fe({type:Kt.GeneralizedTime})],Wi.prototype,"generalTime",void 0),Wi=ve([ye({type:Mt.Choice})],Wi);class qi{constructor(t){this.notBefore=new Wi(new Date),this.notAfter=new Wi(new Date),t&&(this.notBefore=new Wi(t.notBefore),this.notAfter=new Wi(t.notAfter))}}var zi;ve([fe({type:Wi})],qi.prototype,"notBefore",void 0),ve([fe({type:Wi})],qi.prototype,"notAfter",void 0);class Ji{constructor(t={}){this.extnID="",this.critical=Ji.CRITICAL,this.extnValue=new le,Object.assign(this,t)}}Ji.CRITICAL=!1,ve([fe({type:Kt.ObjectIdentifier})],Ji.prototype,"extnID",void 0),ve([fe({type:Kt.Boolean,defaultValue:Ji.CRITICAL})],Ji.prototype,"critical",void 0),ve([fe({type:le})],Ji.prototype,"extnValue",void 0);let Zi=zi=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,zi.prototype)}};var Xi;Zi=zi=ve([ye({type:Mt.Sequence,itemType:Ji})],Zi),function(t){t[t.v1=0]="v1",t[t.v2=1]="v2",t[t.v3=2]="v3"}(Xi||(Xi={}));class Yi{constructor(t={}){this.version=Xi.v1,this.serialNumber=new ArrayBuffer(0),this.signature=new $i,this.issuer=new Re,this.validity=new qi,this.subject=new Re,this.subjectPublicKeyInfo=new Qi,Object.assign(this,t)}}ve([fe({type:Kt.Integer,context:0,defaultValue:Xi.v1})],Yi.prototype,"version",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Yi.prototype,"serialNumber",void 0),ve([fe({type:$i})],Yi.prototype,"signature",void 0),ve([fe({type:Re})],Yi.prototype,"issuer",void 0),ve([fe({type:qi})],Yi.prototype,"validity",void 0),ve([fe({type:Re})],Yi.prototype,"subject",void 0),ve([fe({type:Qi})],Yi.prototype,"subjectPublicKeyInfo",void 0),ve([fe({type:Kt.BitString,context:1,implicit:!0,optional:!0})],Yi.prototype,"issuerUniqueID",void 0),ve([fe({type:Kt.BitString,context:2,implicit:!0,optional:!0})],Yi.prototype,"subjectUniqueID",void 0),ve([fe({type:Zi,context:3,optional:!0})],Yi.prototype,"extensions",void 0);class tr{constructor(t={}){this.tbsCertificate=new Yi,this.signatureAlgorithm=new $i,this.signatureValue=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Yi})],tr.prototype,"tbsCertificate",void 0),ve([fe({type:$i})],tr.prototype,"signatureAlgorithm",void 0),ve([fe({type:Kt.BitString})],tr.prototype,"signatureValue",void 0);class er{constructor(t={}){this.userCertificate=new ArrayBuffer(0),this.revocationDate=new Wi,Object.assign(this,t)}}ve([fe({type:Kt.Integer,converter:Ut})],er.prototype,"userCertificate",void 0),ve([fe({type:Wi})],er.prototype,"revocationDate",void 0),ve([fe({type:Ji,optional:!0,repeated:"sequence"})],er.prototype,"crlEntryExtensions",void 0);class ir{constructor(t={}){this.signature=new $i,this.issuer=new Re,this.thisUpdate=new Wi,Object.assign(this,t)}}ve([fe({type:Kt.Integer,optional:!0})],ir.prototype,"version",void 0),ve([fe({type:$i})],ir.prototype,"signature",void 0),ve([fe({type:Re})],ir.prototype,"issuer",void 0),ve([fe({type:Wi})],ir.prototype,"thisUpdate",void 0),ve([fe({type:Wi,optional:!0})],ir.prototype,"nextUpdate",void 0),ve([fe({type:er,repeated:"sequence",optional:!0})],ir.prototype,"revokedCertificates",void 0),ve([fe({type:Ji,optional:!0,context:0,repeated:"sequence"})],ir.prototype,"crlExtensions",void 0);class rr{constructor(t={}){this.tbsCertList=new ir,this.signatureAlgorithm=new $i,this.signature=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:ir})],rr.prototype,"tbsCertList",void 0),ve([fe({type:$i})],rr.prototype,"signatureAlgorithm",void 0),ve([fe({type:Kt.BitString})],rr.prototype,"signature",void 0);const sr="1.2.840.10045.2.1";function nr(t){return new $i({algorithm:t})}nr("1.2.840.10045.4.1"),nr("1.2.840.10045.4.3.1"),nr("1.2.840.10045.4.3.2"),nr("1.2.840.10045.4.3.3"),nr("1.2.840.10045.4.3.4");let or=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Kt.ObjectIdentifier})],or.prototype,"namedCurve",void 0),or=ve([ye({type:Mt.Choice})],or);class ar{constructor(t={}){this.version=1,this.privateKey=new le,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],ar.prototype,"version",void 0),ve([fe({type:le})],ar.prototype,"privateKey",void 0),ve([fe({type:or,context:0,optional:!0})],ar.prototype,"parameters",void 0),ve([fe({type:Kt.BitString,context:1,optional:!0})],ar.prototype,"publicKey",void 0);class cr{constructor(t={}){this.r=new ArrayBuffer(0),this.s=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.Integer,converter:Ut})],cr.prototype,"r",void 0),ve([fe({type:Kt.Integer,converter:Ut})],cr.prototype,"s",void 0);const lr="1.2.840.113549.1.1",ur=`${lr}.1`,hr=`${lr}.7`,pr=`${lr}.9`,dr=`${lr}.10`,yr=`${lr}.2`,fr=`${lr}.4`,Sr=`${lr}.5`,Cr=`${lr}.12`,Ar=`${lr}.13`,mr=`${lr}.15`,gr=`${lr}.16`,vr=`${lr}.8`;function Er(t){return new $i({algorithm:t,parameters:null})}Er("1.2.840.113549.2.2"),Er("1.2.840.113549.2.5");const wr=Er("1.3.14.3.2.26");Er("2.16.840.1.101.3.4.2.4"),Er("2.16.840.1.101.3.4.2.1"),Er("2.16.840.1.101.3.4.2.2"),Er("2.16.840.1.101.3.4.2.3"),Er("2.16.840.1.101.3.4.2.5"),Er("2.16.840.1.101.3.4.2.6");const Pr=new $i({algorithm:vr,parameters:ge.serialize(wr)}),br=new $i({algorithm:pr,parameters:ge.serialize(Gt.toASN(new Uint8Array([218,57,163,238,94,107,75,13,50,85,191,239,149,96,24,144,175,216,7,9]).buffer))});Er(ur),Er(yr),Er(fr),Er(Sr),Er(mr),Er(gr),Er(Cr),Er(Ar),Er(mr),Er(gr);class Dr{constructor(t={}){this.hashAlgorithm=new $i(wr),this.maskGenAlgorithm=new $i({algorithm:vr,parameters:ge.serialize(wr)}),this.pSourceAlgorithm=new $i(br),Object.assign(this,t)}}ve([fe({type:$i,context:0,defaultValue:wr})],Dr.prototype,"hashAlgorithm",void 0),ve([fe({type:$i,context:1,defaultValue:Pr})],Dr.prototype,"maskGenAlgorithm",void 0),ve([fe({type:$i,context:2,defaultValue:br})],Dr.prototype,"pSourceAlgorithm",void 0),new $i({algorithm:hr,parameters:ge.serialize(new Dr)});class Ir{constructor(t={}){this.hashAlgorithm=new $i(wr),this.maskGenAlgorithm=new $i({algorithm:vr,parameters:ge.serialize(wr)}),this.saltLength=20,this.trailerField=1,Object.assign(this,t)}}ve([fe({type:$i,context:0,defaultValue:wr})],Ir.prototype,"hashAlgorithm",void 0),ve([fe({type:$i,context:1,defaultValue:Pr})],Ir.prototype,"maskGenAlgorithm",void 0),ve([fe({type:Kt.Integer,context:2,defaultValue:20})],Ir.prototype,"saltLength",void 0),ve([fe({type:Kt.Integer,context:3,defaultValue:1})],Ir.prototype,"trailerField",void 0),new $i({algorithm:dr,parameters:ge.serialize(new Ir)});class Br{constructor(t={}){this.digestAlgorithm=new $i,this.digest=new le,Object.assign(this,t)}}var Tr;ve([fe({type:$i})],Br.prototype,"digestAlgorithm",void 0),ve([fe({type:le})],Br.prototype,"digest",void 0);class xr{constructor(t={}){this.prime=new ArrayBuffer(0),this.exponent=new ArrayBuffer(0),this.coefficient=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.Integer,converter:Ut})],xr.prototype,"prime",void 0),ve([fe({type:Kt.Integer,converter:Ut})],xr.prototype,"exponent",void 0),ve([fe({type:Kt.Integer,converter:Ut})],xr.prototype,"coefficient",void 0);let Or=Tr=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Tr.prototype)}};Or=Tr=ve([ye({type:Mt.Sequence,itemType:xr})],Or);class Rr{constructor(t={}){this.version=0,this.modulus=new ArrayBuffer(0),this.publicExponent=new ArrayBuffer(0),this.privateExponent=new ArrayBuffer(0),this.prime1=new ArrayBuffer(0),this.prime2=new ArrayBuffer(0),this.exponent1=new ArrayBuffer(0),this.exponent2=new ArrayBuffer(0),this.coefficient=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.Integer})],Rr.prototype,"version",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Rr.prototype,"modulus",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Rr.prototype,"publicExponent",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Rr.prototype,"privateExponent",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Rr.prototype,"prime1",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Rr.prototype,"prime2",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Rr.prototype,"exponent1",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Rr.prototype,"exponent2",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Rr.prototype,"coefficient",void 0),ve([fe({type:Or,optional:!0})],Rr.prototype,"otherPrimeInfos",void 0);class Nr{constructor(t={}){this.modulus=new ArrayBuffer(0),this.publicExponent=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.Integer,converter:Ut})],Nr.prototype,"modulus",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Nr.prototype,"publicExponent",void 0);
49
49
  /**
50
50
  * @license
51
51
  * Copyright (c) Peculiar Ventures, LLC.
@@ -53,7 +53,7 @@ function a(t,e){let i=0;if(1===t.length)return t[0];for(let r=t.length-1;r>=0;r-
53
53
  * This source code is licensed under the MIT license found in the
54
54
  * LICENSE file in the root directory of this source tree.
55
55
  */
56
- const Nr={"2.5.4.3":"CN","2.5.4.6":"C","0.9.2342.19200300.100.1.25":"DC","1.2.840.113549.1.9.1":"E","2.5.4.42":"G","2.5.4.43":"I","2.5.4.7":"L","2.5.4.10":"O","2.5.4.11":"OU","2.5.4.8":"ST","2.5.4.4":"SN","2.5.4.12":"T","2.5.4.15":"businessCategory","1.3.6.1.4.1.311.60.2.1.3":"jurisdictionCountry","2.5.4.5":"serialNumber","2.5.4.97":"OI"},Mr={"0.2.262.1.10":"Telesec","0.2.262.1.10.0":"Extension","0.2.262.1.10.1":"Mechanism","0.2.262.1.10.1.0":"Authentication","0.2.262.1.10.1.0.1":"Password Authentication","0.2.262.1.10.1.0.2":"Protected Password Authentication","0.2.262.1.10.1.0.3":"One Way x509 Authentication","0.2.262.1.10.1.0.4":"Two Way x509 Authentication","0.2.262.1.10.1.0.5":"Three Way x509 Authentication","0.2.262.1.10.1.0.6":"One Way IS O9798 Authentication","0.2.262.1.10.1.0.7":"Two Way IS O9798 Authentication","0.2.262.1.10.1.0.8":"Telekom Authentication","0.2.262.1.10.1.1":"Signature","0.2.262.1.10.1.1.1":"MD4 with RSA And IS O9697","0.2.262.1.10.1.1.2":"MD4 with RSA And Telesec Signature Standard","0.2.262.1.10.1.1.3":"MD5 with RSA And IS O9697","0.2.262.1.10.1.1.4":"MD5 with RSA And Telesec Signature Standard","0.2.262.1.10.1.1.5":"Ripemd160 with RSA And Telekom Signature Standard","0.2.262.1.10.1.1.9":"HBCI RSA Signature","0.2.262.1.10.1.2":"Encryption","0.2.262.1.10.1.2.0":"None","0.2.262.1.10.1.2.1":"RSA Telesec","0.2.262.1.10.1.2.2":"DES","0.2.262.1.10.1.2.2.1":"DES ECB","0.2.262.1.10.1.2.2.2":"DES CBC","0.2.262.1.10.1.2.2.3":"DES OFB","0.2.262.1.10.1.2.2.4":"DES CFB8","0.2.262.1.10.1.2.2.5":"DES CFB64","0.2.262.1.10.1.2.3":"DES3","0.2.262.1.10.1.2.3.1":"DES3 ECB","0.2.262.1.10.1.2.3.2":"DES3 CBC","0.2.262.1.10.1.2.3.3":"DES3 OFB","0.2.262.1.10.1.2.3.4":"DES3 CFB8","0.2.262.1.10.1.2.3.5":"DES3 CFB64","0.2.262.1.10.1.2.4":"Magenta","0.2.262.1.10.1.2.5":"Idea","0.2.262.1.10.1.2.5.1":"Idea ECB","0.2.262.1.10.1.2.5.2":"Idea CBC","0.2.262.1.10.1.2.5.3":"Idea OFB","0.2.262.1.10.1.2.5.4":"Idea CFB8","0.2.262.1.10.1.2.5.5":"Idea CFB64","0.2.262.1.10.1.3":"One Way Function","0.2.262.1.10.1.3.1":"MD4","0.2.262.1.10.1.3.2":"MD5","0.2.262.1.10.1.3.3":"SQ ModNx509","0.2.262.1.10.1.3.4":"SQ ModNISO","0.2.262.1.10.1.3.5":"Ripemd128","0.2.262.1.10.1.3.6":"Hash Using Block Cipher","0.2.262.1.10.1.3.7":"Mac","0.2.262.1.10.1.3.8":"Ripemd160","0.2.262.1.10.1.4":"Fec Function","0.2.262.1.10.1.4.1":"Reed Solomon","0.2.262.1.10.2":"Module","0.2.262.1.10.2.0":"Algorithms","0.2.262.1.10.2.1":"Attribute Types","0.2.262.1.10.2.2":"Certificate Types","0.2.262.1.10.2.3":"Message Types","0.2.262.1.10.2.4":"Pl Protocol","0.2.262.1.10.2.5":"Sme And Components Of Sme","0.2.262.1.10.2.6":"Fec","0.2.262.1.10.2.7":"Useful Definitions","0.2.262.1.10.2.8":"Stefiles","0.2.262.1.10.2.9":"Sadmib","0.2.262.1.10.2.10":"Electronic Order","0.2.262.1.10.2.11":"Telesec Ttp Asymmetric Application","0.2.262.1.10.2.12":"Telesec Ttp Basis Application","0.2.262.1.10.2.13":"Telesec Ttp Messages","0.2.262.1.10.2.14":"Telesec Ttp Time Stamp Application","0.2.262.1.10.3":"Object Class","0.2.262.1.10.3.0":"Telesec Other Name","0.2.262.1.10.3.1":"Directory","0.2.262.1.10.3.2":"Directory Type","0.2.262.1.10.3.3":"Directory Group","0.2.262.1.10.3.4":"Directory User","0.2.262.1.10.3.5":"Symmetric Key Entry","0.2.262.1.10.4":"Package","0.2.262.1.10.5":"Parameter","0.2.262.1.10.6":"Name Binding","0.2.262.1.10.7":"Attribute","0.2.262.1.10.7.0":"Application Group Identifier","0.2.262.1.10.7.1":"Certificate Type","0.2.262.1.10.7.2":"Telesec Certificate","0.2.262.1.10.7.3":"Certificate Number","0.2.262.1.10.7.4":"Certificate Revocation List","0.2.262.1.10.7.5":"Creation Date","0.2.262.1.10.7.6":"Issuer","0.2.262.1.10.7.7":"Naming Authority","0.2.262.1.10.7.8":"Public Key Directory","0.2.262.1.10.7.9":"Security Domain","0.2.262.1.10.7.10":"Subject","0.2.262.1.10.7.11":"Time Of Revocation","0.2.262.1.10.7.12":"User Group Reference","0.2.262.1.10.7.13":"alidity","0.2.262.1.10.7.14":"Zert93","0.2.262.1.10.7.15":"Security Mess Env","0.2.262.1.10.7.16":"Anonymized Public Key Directory","0.2.262.1.10.7.17":"Telesec Given Name","0.2.262.1.10.7.18":"Name Additions","0.2.262.1.10.7.19":"Telesec Postal Code","0.2.262.1.10.7.20":"Name Distinguisher","0.2.262.1.10.7.21":"Telesec Certificate List","0.2.262.1.10.7.22":"Teletrust Certificate List","0.2.262.1.10.7.23":"x509 Certificate List","0.2.262.1.10.7.24":"Time Of Issue","0.2.262.1.10.7.25":"Physical Card Number","0.2.262.1.10.7.26":"File Type","0.2.262.1.10.7.27":"Ctl File Is Archive","0.2.262.1.10.7.28":"Email Address","0.2.262.1.10.7.29":"Certificate Template List","0.2.262.1.10.7.30":"Directory Name","0.2.262.1.10.7.31":"Directory Type Name","0.2.262.1.10.7.32":"Directory Group Name","0.2.262.1.10.7.33":"Directory User Name","0.2.262.1.10.7.34":"Revocation Flag","0.2.262.1.10.7.35":"Symmetric Key Entry Name","0.2.262.1.10.7.36":"Gl Number","0.2.262.1.10.7.37":"Go Number","0.2.262.1.10.7.38":"G Key Data","0.2.262.1.10.7.39":"Z Key Data","0.2.262.1.10.7.40":"Kt Key Data","0.2.262.1.10.7.41":"Kt Key Number","0.2.262.1.10.7.51":"Time Of Revocation Gen","0.2.262.1.10.7.52":"Liability Text","0.2.262.1.10.8":"Attribute Group","0.2.262.1.10.9":"Action","0.2.262.1.10.10":"Notification","0.2.262.1.10.11":"Snmp-mibs","0.2.262.1.10.11.1":"Security Application","0.2.262.1.10.12":"Cert And Crl Extension Definitions","0.2.262.1.10.12.0":"Liability Limitation Flag","0.2.262.1.10.12.1":"Telesec Cert Id Ext","0.2.262.1.10.12.2":"Telesec policy Identifier","0.2.262.1.10.12.3":"Telesec Policy Qualifier I D","0.2.262.1.10.12.4":"Telesec CRL Filtered Ext","0.2.262.1.10.12.5":"Telesec CRL Filter Ext","0.2.262.1.10.12.6":"Telesec Naming Authority Ext","0.4.0.127.0.7":"Bsi","0.4.0.127.0.7.1":"Bsi Ecc","0.4.0.127.0.7.1.1":"Bsifield Type","0.4.0.127.0.7.1.1.1":"Bsi Prime Field","0.4.0.127.0.7.1.1.2":"Bsi Characteristic Two Field","0.4.0.127.0.7.1.1.2.2":"Bsi ECTLV Key Format","0.4.0.127.0.7.1.1.2.2.1":"Bsi ECTLV Public Key","0.4.0.127.0.7.1.1.2.3":"Bsi Characteristic Two Basis","0.4.0.127.0.7.1.1.2.3.1":"Bsi Gn Basis","0.4.0.127.0.7.1.1.2.3.2":"Bsi Tp Basis","0.4.0.127.0.7.1.1.2.3.3":"Bsi Pp Basis","0.4.0.127.0.7.1.1.4.1":"Bsi Ecdsa Signatures","0.4.0.127.0.7.1.1.4.1.1":"Bsi Ecdsa with SHA1","0.4.0.127.0.7.1.1.4.1.2":"Bsi Ecdsa with SHA224","0.4.0.127.0.7.1.1.4.1.3":"Bsi Ecdsa with SHA256","0.4.0.127.0.7.1.1.4.1.4":"Bsi Ecdsa with SHA384","0.4.0.127.0.7.1.1.4.1.5":"Bsi Ecdsa with SHA512","0.4.0.127.0.7.1.1.4.1.6":"Bsi Ecdsa with RIPEMD160","0.4.0.127.0.7.1.1.5.1.1":"Bsi Ecka Eg x963KDF","0.4.0.127.0.7.1.1.5.1.1.1":"Bsi Ecka Eg x963KDF with SHA1","0.4.0.127.0.7.1.1.5.1.1.2":"Bsi Ecka Eg x963KDF with SHA224","0.4.0.127.0.7.1.1.5.1.1.3":"Bsi Ecka Eg x963KDF with SHA256","0.4.0.127.0.7.1.1.5.1.1.4":"Bsi Ecka Eg x963KDF with SHA384","0.4.0.127.0.7.1.1.5.1.1.5":"Bsi Ecka Eg x963KDF with SHA512","0.4.0.127.0.7.1.1.5.1.1.6":"Bsi Ecka Eg x963KDF with RIPEMD160","0.4.0.127.0.7.1.1.5.1.2":"Bsi Ecka Eg Session KDF","0.4.0.127.0.7.1.1.5.1.2.1":"Bsi Ecka Eg Session KDF With3DES","0.4.0.127.0.7.1.1.5.1.2.2":"Bsi Ecka Eg Session KDF with AES128","0.4.0.127.0.7.1.1.5.1.2.3":"Bsi Ecka Eg Session KDF with AES192","0.4.0.127.0.7.1.1.5.1.2.4":"Bsi Ecka Eg Session KDF with AES256","0.4.0.127.0.7.1.1.5.2":"Bsi Ecka DH","0.4.0.127.0.7.1.1.5.2.1":"Bsi Ecka DH x963KDF","0.4.0.127.0.7.1.1.5.2.1.1":"Bsi Ecka DHx963KDF with SHA1","0.4.0.127.0.7.1.1.5.2.1.2":"Bsi Ecka DHx963KDF with SHA224","0.4.0.127.0.7.1.1.5.2.1.3":"Bsi Ecka DHx963KDF with SHA256","0.4.0.127.0.7.1.1.5.2.1.4":"Bsi Ecka DHx963KDF with SHA384","0.4.0.127.0.7.1.1.5.2.1.5":"Bsi Ecka DHx963KDF with SHA512","0.4.0.127.0.7.1.1.5.2.1.6":"Bsi Ecka DHx963KDF with RIPEMD160","0.4.0.127.0.7.1.1.5.2.2":"Bsi Ecka DHSessionKDF","0.4.0.127.0.7.1.1.5.2.2.1":"Bsi Ecka DH Session KDF With3 DES","0.4.0.127.0.7.1.1.5.2.2.2":"Bsi Ecka DH Session KDF with AES128","0.4.0.127.0.7.1.1.5.2.2.3":"Bsi Ecka DH Session KDF with AES192","0.4.0.127.0.7.1.1.5.2.2.4":"Bsi Ecka DH Session KDF with AES256","0.4.0.127.0.7.1.2":"Bsi Ec Key Type","0.4.0.127.0.7.1.2.1":"Bsi Ec Public Key","0.4.0.127.0.7.1.5.1":"Bsi Kaeg","0.4.0.127.0.7.1.5.1.1":"Bsi Kaeg with x963KDF","0.4.0.127.0.7.1.5.1.2":"Bsi Kaeg with 3DESKDF","0.4.0.127.0.7.2.2.1":"Bsi PK","0.4.0.127.0.7.2.2.1.1":"Bsi PK_DH","0.4.0.127.0.7.2.2.1.2":"Bsi PK_ECDH","0.4.0.127.0.7.2.2.2":"Bsi TA","0.4.0.127.0.7.2.2.2.1":"Bsi TA_RSA","0.4.0.127.0.7.2.2.2.1.1":"Bsi TA_RSAv1_5_SHA1","0.4.0.127.0.7.2.2.2.1.2":"Bsi TA_RSAv1_5_SHA256","0.4.0.127.0.7.2.2.2.1.3":"Bsi TA_RSAPSS_SHA1","0.4.0.127.0.7.2.2.2.1.4":"Bsi TA_RSAPSS_SHA256","0.4.0.127.0.7.2.2.2.1.5":"Bsi TA_RSAv1_5_SHA512","0.4.0.127.0.7.2.2.2.1.6":"Bsi TA_RSAPSS_SHA512","0.4.0.127.0.7.2.2.2.2":"Bsi TA_ECDSA","0.4.0.127.0.7.2.2.2.2.1":"Bsi TA_ECDSA_SHA1","0.4.0.127.0.7.2.2.2.2.2":"Bsi TA_ECDSA_SHA224","0.4.0.127.0.7.2.2.2.2.3":"Bsi TA_ECDSA_SHA256","0.4.0.127.0.7.2.2.2.2.4":"Bsi TA_ECDSA_SHA384","0.4.0.127.0.7.2.2.2.2.5":"Bsi TA_ECDSA_SHA512","0.4.0.127.0.7.2.2.3":"Bsi CA","0.4.0.127.0.7.2.2.3.1":"Bsi CA_DH","0.4.0.127.0.7.2.2.3.1.1":"Bsi CA_DH_3DES_CBC_CBC","0.4.0.127.0.7.2.2.3.1.2":"Bsi CA_DH_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.3.1.3":"Bsi CA_DH_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.3.1.4":"Bsi CA_DH_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.3.2":"Bsi CA_ECDH","0.4.0.127.0.7.2.2.3.2.1":"Bsi CA_ECDH_3DES_CBC_CBC","0.4.0.127.0.7.2.2.3.2.2":"Bsi CA_ECDH_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.3.2.3":"Bsi CA_ECDH_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.3.2.4":"Bsi CA_ECDH_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.4":"Bsi PACE","0.4.0.127.0.7.2.2.4.1":"Bsi PACE_DH_GM","0.4.0.127.0.7.2.2.4.1.1":"Bsi PACE_DH_GM_3DES_CBC_CBC","0.4.0.127.0.7.2.2.4.1.2":"Bsi PACE_DH_GM_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.4.1.3":"Bsi PACE_DH_GM_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.4.1.4":"Bsi PACE_DH_GM_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.4.2":"Bsi PACE_ECDH_GM","0.4.0.127.0.7.2.2.4.2.1":"Bsi PACE_ECDH_GM_3DES_CBC_CBC","0.4.0.127.0.7.2.2.4.2.2":"Bsi PACE_ECDH_GM_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.4.2.3":"Bsi PACE_ECDH_GM_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.4.2.4":"Bsi PACE_ECDH_GM_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.4.3":"Bsi PACE_DH_IM","0.4.0.127.0.7.2.2.4.3.1":"Bsi PACE_DH_IM_3DES_CBC_CBC","0.4.0.127.0.7.2.2.4.3.2":"Bsi PACE_DH_IM_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.4.3.3":"Bsi PACE_DH_IM_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.4.3.4":"Bsi PACE_DH_IM_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.4.4":"Bsi PACE_ECDH_IM","0.4.0.127.0.7.2.2.4.4.1":"Bsi PACE_ECDH_IM_3DES_CBC_CBC","0.4.0.127.0.7.2.2.4.4.2":"Bsi PACE_ECDH_IM_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.4.4.3":"Bsi PACE_ECDH_IM_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.4.4.4":"Bsi PACE_ECDH_IM_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.5":"Bsi RI","0.4.0.127.0.7.2.2.5.1":"Bsi RI_DH","0.4.0.127.0.7.2.2.5.1.1":"Bsi RI_DH_SHA1","0.4.0.127.0.7.2.2.5.1.2":"Bsi RI_DH_SHA224","0.4.0.127.0.7.2.2.5.1.3":"Bsi RI_DH_SHA256","0.4.0.127.0.7.2.2.5.1.4":"Bsi RI_DH_SHA384","0.4.0.127.0.7.2.2.5.1.5":"Bsi RI_DH_SHA512","0.4.0.127.0.7.2.2.5.2":"Bsi RI_ECDH","0.4.0.127.0.7.2.2.5.2.1":"Bsi RI_ECDH_SHA1","0.4.0.127.0.7.2.2.5.2.2":"Bsi RI_ECDH_SHA224","0.4.0.127.0.7.2.2.5.2.3":"Bsi RI_ECDH_SHA256","0.4.0.127.0.7.2.2.5.2.4":"Bsi RI_ECDH_SHA384","0.4.0.127.0.7.2.2.5.2.5":"Bsi RI_ECDH_SHA512","0.4.0.127.0.7.2.2.6":"Bsi Card Info","0.4.0.127.0.7.2.2.7":"Bsi Eid Security","0.4.0.127.0.7.2.2.8":"Bsi PT","0.4.0.127.0.7.3.1.2":"Bsi EAC Roles","0.4.0.127.0.7.3.1.2.1":"Bsi EAC Roles IS","0.4.0.127.0.7.3.1.2.2":"Bsi EAC Roles AT","0.4.0.127.0.7.3.1.2.3":"Bsi EAC Roles ST","0.4.0.127.0.7.3.1.3":"Bsi TAv2ce","0.4.0.127.0.7.3.1.3.1":"Bsi TAv2ce Description","0.4.0.127.0.7.3.1.3.1.1":"Bsi TAv2ce Description Plain Text","0.4.0.127.0.7.3.1.3.1.2":"Bsi TAv2ce Description IA5 String","0.4.0.127.0.7.3.1.3.1.3":"Bsi TAv2ce Description Octet String","0.4.0.127.0.7.3.1.3.2":"Bsi TAv2ce Terminal Sector","0.4.0.127.0.7.3.1.4":"Bsi Aux Data","0.4.0.127.0.7.3.1.4.1":"Bsi Aux Data Birthday","0.4.0.127.0.7.3.1.4.2":"Bsi Aux Data Expire Date","0.4.0.127.0.7.3.1.4.3":"Bsi Aux Data Community ID","0.4.0.127.0.7.3.1.5":"Bsi Defect List","0.4.0.127.0.7.3.1.5.1":"Bsi Defect Auth Defect","0.4.0.127.0.7.3.1.5.1.1":"Bsi Defect Cert Revoked","0.4.0.127.0.7.3.1.5.1.2":"Bsi Defect Cert Replaced","0.4.0.127.0.7.3.1.5.1.3":"Bsi Defect Chip Auth Key Revoked","0.4.0.127.0.7.3.1.5.1.4":"Bsi Defect Active Auth Key Revoked","0.4.0.127.0.7.3.1.5.2":"Bsi Defect EPassport Defect","0.4.0.127.0.7.3.1.5.2.1":"Bsi Defect EPassport DG Malformed","0.4.0.127.0.7.3.1.5.2.2":"Bsi Defect SOD Invalid","0.4.0.127.0.7.3.1.5.3":"Bsi Defect EID Defect","0.4.0.127.0.7.3.1.5.3.1":"Bsi Defect EIDDG Malformed","0.4.0.127.0.7.3.1.5.3.2":"Bsi Defect EID Integrity","0.4.0.127.0.7.3.1.5.4":"Bsi Defect Document Defect","0.4.0.127.0.7.3.1.5.4.1":"Bsi Defect Card Security Malformed","0.4.0.127.0.7.3.1.5.4.2":"Bsi Defect Chip Security Malformed","0.4.0.127.0.7.3.1.5.4.3":"Bsi Defect Power Down Req","0.4.0.127.0.7.3.1.6":"Bsi List Content Description","0.4.0.127.0.7.3.2.1":"Bsi Security Object","0.4.0.127.0.7.3.2.2":"Bsi Black List","0.4.0.1862":"Etsi Qcs Profile","0.4.0.1862.1":"Etsi Qcs","0.4.0.1862.1.1":"Etsi Qcs Compliance","0.4.0.1862.1.2":"Etsi Qcs Limit Value","0.4.0.1862.1.3":"Etsi Qcs Retention Period","0.4.0.1862.1.4":"Etsi Qcs SSCD","0.4.0.1862.1.5":"Etsi Qcs PDS","0.4.0.1862.1.6":"Etsi QcType","0.4.0.1862.1.6.1":"Etsi QcType eSign","0.4.0.1862.1.6.2":"Etsi QcType eSeal","0.4.0.1862.1.6.3":"Etsi QcType Web","0.4.0.194112.1.0":"QCP Natural Person","0.4.0.194112.1.1":"QCP Legal Person","0.4.0.194112.1.2":"QCP Natural QSCD","0.4.0.194112.1.3":"QCP Legal QSCD","0.4.0.194112.1.4":"QCP Web","0.9.2342.19200300.100.1.1":"User ID","0.9.2342.19200300.100.1.3":"Rfc822 Mailbox","0.9.2342.19200300.100.1.25":"Domain Component","1.0.10118.3.0.49":"Ripemd160","1.0.10118.3.0.50":"Ripemd128","1.0.10118.3.0.55":"Whirlpool","1.2.36.1.3.1.1.1":"Qgpki","1.2.36.1.3.1.1.1.1":"Qgpki Policies","1.2.36.1.3.1.1.1.1.1":"Qgpki Med Intermed CA","1.2.36.1.3.1.1.1.1.1.1":"Qgpki Med Intermed Individual","1.2.36.1.3.1.1.1.1.1.2":"Qgpki Med Intermed Device Control","1.2.36.1.3.1.1.1.1.1.3":"Qgpki Med Intermed Device","1.2.36.1.3.1.1.1.1.1.4":"Qgpki Med Intermed Authorised Party","1.2.36.1.3.1.1.1.1.1.5":"Qgpki Med Intermed Device System","1.2.36.1.3.1.1.1.1.2":"Qgpki Med Issuing CA","1.2.36.1.3.1.1.1.1.2.1":"Qgpki Med Issuing Individual","1.2.36.1.3.1.1.1.1.2.2":"Qgpki Med Issuing Device Control","1.2.36.1.3.1.1.1.1.2.3":"Qgpki Med Issuing Device","1.2.36.1.3.1.1.1.1.2.4":"Qgpki Med Issuing Authorised Party","1.2.36.1.3.1.1.1.1.2.5":"Qgpki Med Issuing Client Auth","1.2.36.1.3.1.1.1.1.2.6":"Qgpki Med Issuing Server Auth","1.2.36.1.3.1.1.1.1.2.7":"Qgpki Med Issuing Data Prot","1.2.36.1.3.1.1.1.1.2.8":"Qgpki Med Issuing Token Auth","1.2.36.1.3.1.1.1.1.3":"Qgpki Basic Intermed CA","1.2.36.1.3.1.1.1.1.3.1":"Qgpki Basic Intermed Device System","1.2.36.1.3.1.1.1.1.4":"Qgpki Basic Issuing CA","1.2.36.1.3.1.1.1.1.4.1":"Qgpki Basic Issuing Client Auth","1.2.36.1.3.1.1.1.1.4.2":"Qgpki Basic Issuing Server Auth","1.2.36.1.3.1.1.1.1.4.3":"Qgpki Basic Issuing Data Signing","1.2.36.1.3.1.1.1.2":"Qgpki Assurance Level","1.2.36.1.3.1.1.1.2.1":"Qgpki Assurance Rudimentary","1.2.36.1.3.1.1.1.2.2":"Qgpki Assurance Basic","1.2.36.1.3.1.1.1.2.3":"Qgpki Assurance Medium","1.2.36.1.3.1.1.1.2.4":"Qgpki Assurance High","1.2.36.1.3.1.1.1.3":"Qgpki Cert Function","1.2.36.1.3.1.1.1.3.1":"Qgpki Function Individual","1.2.36.1.3.1.1.1.3.2":"Qgpki Function Device","1.2.36.1.3.1.1.1.3.3":"Qgpki Function Authorised Party","1.2.36.1.3.1.1.1.3.4":"Qgpki Function Device Control","1.2.36.1.3.1.2":"Qpspki","1.2.36.1.3.1.2.1":"Qpspki Policies","1.2.36.1.3.1.2.1.2":"Qpspki Policy Basic","1.2.36.1.3.1.2.1.3":"Qpspki Policy Medium","1.2.36.1.3.1.2.1.4":"Qpspki Policy High","1.2.36.1.3.1.3.2":"Qtmrpki","1.2.36.1.3.1.3.2.1":"Qtmrpki Policies","1.2.36.1.3.1.3.2.2":"Qtmrpki Purpose","1.2.36.1.3.1.3.2.2.1":"Qtmrpki Individual","1.2.36.1.3.1.3.2.2.2":"Qtmrpki Device Control","1.2.36.1.3.1.3.2.2.3":"Qtmrpki Device","1.2.36.1.3.1.3.2.2.4":"Qtmrpki Authorised Party","1.2.36.1.3.1.3.2.2.5":"Qtmrpki Device System","1.2.36.1.3.1.3.2.3":"Qtmrpki Device","1.2.36.1.3.1.3.2.3.1":"Qtmrpki Driver License","1.2.36.1.3.1.3.2.3.2":"Qtmrpki Industry Authority","1.2.36.1.3.1.3.2.3.3":"Qtmrpki Marine License","1.2.36.1.3.1.3.2.3.4":"Qtmrpki Adult Proof Of Age","1.2.36.1.3.1.3.2.3.5":"Qtmrpki Sam","1.2.36.1.3.1.3.2.4":"Qtmrpki Authorised Party","1.2.36.1.3.1.3.2.4.1":"Qtmrpki Transport Inspector","1.2.36.1.3.1.3.2.4.2":"Qtmrpki Police Officer","1.2.36.1.3.1.3.2.4.3":"Qtmrpki System","1.2.36.1.3.1.3.2.4.4":"Qtmrpki Liquor Licensing Inspector","1.2.36.1.3.1.3.2.4.5":"Qtmrpki Marine Enforcement Officer","1.2.36.1.333.1":"Australian Business Number","1.2.36.68980861.1.1.2":"Signet Personal","1.2.36.68980861.1.1.3":"Signet Business","1.2.36.68980861.1.1.4":"Signet Legal","1.2.36.68980861.1.1.10":"Signet Pilot","1.2.36.68980861.1.1.11":"Signet Intra Net","1.2.36.68980861.1.1.20":"Signet Policy","1.2.36.75878867.1.100.1.1":"Certificates Australia Policy","1.2.40.0.17.1.22":"A-Trust EV policy","1.2.392.200011.61.1.1.1":"Mitsubishi Security Algorithm","1.2.392.200011.61.1.1.1.1":"Misty1-cbc","1.2.392.200091.100.721.1":"Security Communication (SECOM) EV policy","1.2.410.200004.1":"Kisa Algorithm","1.2.410.200004.1.1":"Kcdsa","1.2.410.200004.1.2":"Has160","1.2.410.200004.1.3":"Seed ECB","1.2.410.200004.1.4":"Seed CBC","1.2.410.200004.1.5":"Seed OFB","1.2.410.200004.1.6":"Seed CFB","1.2.410.200004.1.7":"Seed MAC","1.2.410.200004.1.8":"Kcdsa with HAS160","1.2.410.200004.1.9":"Kcdsa with SHA1","1.2.410.200004.1.10":"PBE with HAS160 And SEED-ECB","1.2.410.200004.1.11":"PBE with HAS160 And SEED-CBC","1.2.410.200004.1.12":"PBE with HAS160 And SEED-CFB","1.2.410.200004.1.13":"PBE with HAS160 And SEED-OFB","1.2.410.200004.1.14":"PBE with SHA1 And SEED-ECB","1.2.410.200004.1.15":"PBE with SHA1 And SEED-CBC","1.2.410.200004.1.16":"PBE with SHA1 And SEED-CFB","1.2.410.200004.1.17":"PBE with SHA1 And SEED-OFB","1.2.410.200004.1.20":"RSA with HAS160","1.2.410.200004.1.21":"Kcdsa1","1.2.410.200004.2":"Npki CP","1.2.410.200004.2.1":"Npki Signature Policy","1.2.410.200004.3":"Npki KP","1.2.410.200004.4":"Npki AT","1.2.410.200004.5":"Npki LCA","1.2.410.200004.5.1":"Npki Sign Korea","1.2.410.200004.5.2":"Npki Sign Gate","1.2.410.200004.5.3":"Npki Nca Sign","1.2.410.200004.6":"Npki ON","1.2.410.200004.7":"Npki APP","1.2.410.200004.7.1":"Npki SMIME","1.2.410.200004.7.1.1":"Npki SMIME Algo","1.2.410.200004.7.1.1.1":"Npki Cms SEED Wrap","1.2.410.200004.10":"Npki","1.2.410.200004.10.1":"Npki Attribute","1.2.410.200004.10.1.1":"Npki Identify Data","1.2.410.200004.10.1.1.1":"Npki VID","1.2.410.200004.10.1.1.2":"Npki Encrypted VID","1.2.410.200004.10.1.1.3":"Npki Random Num","1.2.410.200004.10.1.1.4":"Npki VID","1.2.410.200046.1.1":"Aria1 Algorithm Modes","1.2.410.200046.1.1.1":"Aria128-ecb","1.2.410.200046.1.1.2":"Aria128-cbc","1.2.410.200046.1.1.3":"Aria128-cfb","1.2.410.200046.1.1.4":"Aria128-ofb","1.2.410.200046.1.1.5":"Aria128-ctr","1.2.410.200046.1.1.6":"Aria192-ecb","1.2.410.200046.1.1.7":"Aria192-cbc","1.2.410.200046.1.1.8":"Aria192-cfb","1.2.410.200046.1.1.9":"Aria192-ofb","1.2.410.200046.1.1.10":"Aria192-ctr","1.2.410.200046.1.1.11":"Aria256-ecb","1.2.410.200046.1.1.12":"Aria256-cbc","1.2.410.200046.1.1.13":"Aria256-cfb","1.2.410.200046.1.1.14":"Aria256-ofb","1.2.410.200046.1.1.15":"Aria256-ctr","1.2.410.200046.1.1.21":"Aria128-cmac","1.2.410.200046.1.1.22":"Aria192-cmac","1.2.410.200046.1.1.23":"Aria256-cmac","1.2.410.200046.1.1.31":"Aria128-ocb2","1.2.410.200046.1.1.32":"Aria192-ocb2","1.2.410.200046.1.1.33":"Aria256-ocb2","1.2.410.200046.1.1.34":"Aria128-gcm","1.2.410.200046.1.1.35":"Aria192-gcm","1.2.410.200046.1.1.36":"Aria256-gcm","1.2.410.200046.1.1.37":"Aria128-ccm","1.2.410.200046.1.1.38":"Aria192-ccm","1.2.410.200046.1.1.39":"Aria256-ccm","1.2.410.200046.1.1.40":"Aria128-keywrap","1.2.410.200046.1.1.41":"Aria192-keywrap","1.2.410.200046.1.1.42":"Aria256-keywrap","1.2.410.200046.1.1.43":"Aria128-keywrap with Pad","1.2.410.200046.1.1.44":"Aria192-keywrap with Pad","1.2.410.200046.1.1.45":"Aria256-keywrap with Pad","1.2.643.2.2.3":"Gost Signature","1.2.643.2.2.4":"Gost94 Signature","1.2.643.2.2.9":"Gost Digest","1.2.643.2.2.10":"Hmac Gost","1.2.643.2.2.13.0":"Gost Wrap","1.2.643.2.2.13.1":"Crypto Pro Wrap","1.2.643.2.2.14.0":"Null Meshing","1.2.643.2.2.14.1":"Crypto Pro Meshing","1.2.643.2.2.19":"Gost Public Key","1.2.643.2.2.20":"Gost94 Public Key","1.2.643.2.2.21":"Gost Cipher","1.2.643.2.2.30.0":"Test Digest Params","1.2.643.2.2.30.1":"Crypto Pro Digest A","1.2.643.2.2.31.0":"Test Cipher Params","1.2.643.2.2.31.1":"Crypto Pro Cipher A","1.2.643.2.2.31.2":"Crypto Pro Cipher B","1.2.643.2.2.31.3":"Crypto Pro Cipher C","1.2.643.2.2.31.4":"Crypto Pro Cipher D","1.2.643.2.2.31.5":"Oscar11 Cipher","1.2.643.2.2.31.6":"Oscar10 Cipher","1.2.643.2.2.31.7":"Ric1 Cipher","1.2.643.2.2.35.0":"Test Sign Params","1.2.643.2.2.35.1":"Crypto Pro Sign A","1.2.643.2.2.35.2":"Crypto Pro Sign B","1.2.643.2.2.35.3":"Crypto Pro Sign C","1.2.643.2.2.36.0":"Crypto Pro Sign XA","1.2.643.2.2.36.1":"Crypto Pro Sign XB","1.2.643.2.2.96":"Crypto Pro ECDH Wrap","1.2.752.34.1":"Seis-cp","1.2.752.34.1.1":"SEIS high-assurance policy Identifier","1.2.752.34.1.2":"SEIS GAK policy Identifier","1.2.752.34.2":"SEI Spe","1.2.752.34.3":"SEI Sat","1.2.752.34.3.1":"SEI Sat-personal Identifier","1.2.840.10040.1":"Module","1.2.840.10040.1.1":"x9f1-cert-mgmt","1.2.840.10040.2":"Holdinstruction","1.2.840.10040.2.1":"Holdinstruction-none","1.2.840.10040.2.2":"Callissuer","1.2.840.10040.2.3":"Reject","1.2.840.10040.2.4":"Pickup Token","1.2.840.10040.3":"Attribute","1.2.840.10040.3.1":"Countersignature","1.2.840.10040.3.2":"Attribute-cert","1.2.840.10040.4":"Algorithm","1.2.840.10040.4.1":"DSA","1.2.840.10040.4.2":"DSA-match","1.2.840.10040.4.3":"DSA with SHA1","1.2.840.10045.1":"Field Type","1.2.840.10045.1.1":"Prime-field","1.2.840.10045.1.2":"Characteristic-two-field","1.2.840.10045.1.2.3":"Characteristic-two-basis","1.2.840.10045.1.2.3.1":"ON Basis","1.2.840.10045.1.2.3.2":"TP Basis","1.2.840.10045.1.2.3.3":"PP Basis","1.2.840.10045.2":"Public Key Type","1.2.840.10045.2.1":"EC Public Key","1.2.840.10045.3.0.1":"C2pnb163v1","1.2.840.10045.3.0.2":"C2pnb163v2","1.2.840.10045.3.0.3":"C2pnb163v3","1.2.840.10045.3.0.5":"C2tnb191v1","1.2.840.10045.3.0.6":"C2tnb191v2","1.2.840.10045.3.0.7":"C2tnb191v3","1.2.840.10045.3.0.10":"C2pnb208w1","1.2.840.10045.3.0.11":"C2tnb239v1","1.2.840.10045.3.0.12":"C2tnb239v2","1.2.840.10045.3.0.13":"C2tnb239v3","1.2.840.10045.3.0.16":"C2pnb272w1","1.2.840.10045.3.0.18":"C2tnb359v1","1.2.840.10045.3.0.19":"C2pnb368w1","1.2.840.10045.3.0.20":"C2tnb431r1","1.2.840.10045.3.1.1":"Prime192v1","1.2.840.10045.3.1.2":"Prime192v2","1.2.840.10045.3.1.3":"Prime192v3","1.2.840.10045.3.1.4":"Prime239v1","1.2.840.10045.3.1.5":"Prime239v2","1.2.840.10045.3.1.6":"Prime239v3","1.2.840.10045.3.1.7":"Prime256v1","1.2.840.10045.4.1":"ECDSA with SHA1","1.2.840.10045.4.2":"ECDSA with Recommended","1.2.840.10045.4.3":"ECDSA with Specified","1.2.840.10045.4.3.1":"ECDSA with SHA224","1.2.840.10045.4.3.2":"ECDSA with SHA256","1.2.840.10045.4.3.3":"ECDSA with SHA384","1.2.840.10045.4.3.4":"ECDSA with SHA512","1.2.840.10046.1":"Field Type","1.2.840.10046.1.1":"Gf-prime","1.2.840.10046.2":"Number Type","1.2.840.10046.2.1":"DH Public Key","1.2.840.10046.3":"Scheme","1.2.840.10046.3.1":"DH Static","1.2.840.10046.3.2":"DH Ephem","1.2.840.10046.3.3":"DH Hybrid1","1.2.840.10046.3.4":"DH Hybrid2","1.2.840.10046.3.5":"Mqv2","1.2.840.10046.3.6":"Mqv1","1.2.840.10065.2.2":"?","1.2.840.10065.2.3":"Healthcare License","1.2.840.10065.2.3.1.1":"License?","1.2.840.10070.":"Iec62351","1.2.840.10070.8":"Iec62351_8","1.2.840.10070.8.1":"Iec User Roles","1.2.840.113533.7":"NSN","1.2.840.113533.7.65":"NSN-ce","1.2.840.113533.7.65.0":"Entrust Version Info","1.2.840.113533.7.66":"NSN-alg","1.2.840.113533.7.66.3":"Cast3 CBC","1.2.840.113533.7.66.10":"Cast5 CBC","1.2.840.113533.7.66.11":"Cast5 MAC","1.2.840.113533.7.66.12":"PBE with MD5 And CAST5-CBC","1.2.840.113533.7.66.13":"Password Based Mac","1.2.840.113533.7.67":"NSN-oc","1.2.840.113533.7.67.0":"Entrust User","1.2.840.113533.7.68":"NSN-at","1.2.840.113533.7.68.0":"Entrust CA Info","1.2.840.113533.7.68.10":"Attribute Certificate","1.2.840.113549.1.1":"PKCS-1","1.2.840.113549.1.1.1":"RSA Encryption","1.2.840.113549.1.1.2":"MD2 with RSA Encryption","1.2.840.113549.1.1.3":"MD4 with RSA Encryption","1.2.840.113549.1.1.4":"MD5 with RSA Encryption","1.2.840.113549.1.1.5":"SHA1 with RSA Encryption","1.2.840.113549.1.1.6":"RSA OAEP Encryption SET","1.2.840.113549.1.1.7":"RSA OAEP","1.2.840.113549.1.1.8":"PKCS1-MGF","1.2.840.113549.1.1.9":"RSA OAEP-p Specified","1.2.840.113549.1.1.10":"RSA PSS","1.2.840.113549.1.1.11":"SHA256 with RSA Encryption","1.2.840.113549.1.1.12":"SHA384 with RSA Encryption","1.2.840.113549.1.1.13":"SHA512 with RSA Encryption","1.2.840.113549.1.1.14":"SHA224 with RSA Encryption","1.2.840.113549.1.2":"Bsafe Rsa Encr","1.2.840.113549.1.3":"PKCS-3","1.2.840.113549.1.3.1":"Dh Key Agreement","1.2.840.113549.1.5":"PKCS-5","1.2.840.113549.1.5.1":"PBE with MD2 And DES-CBC","1.2.840.113549.1.5.3":"PBE with MD5 And DES-CBC","1.2.840.113549.1.5.4":"PBE with MD2 And RC2-CBC","1.2.840.113549.1.5.6":"PBE with MD5 And RC2-CBC","1.2.840.113549.1.5.9":"PBE with MD5 And XOR","1.2.840.113549.1.5.10":"PBE with SHA And DES-CBC","1.2.840.113549.1.5.12":"PKCS5 PBKDF2","1.2.840.113549.1.5.13":"PKCS5 PBES2","1.2.840.113549.1.5.14":"PKCS5 PBMAC1","1.2.840.113549.1.7":"PKCS-7","1.2.840.113549.1.7.1":"Data","1.2.840.113549.1.7.2":"Signed Data","1.2.840.113549.1.7.3":"Enveloped Data","1.2.840.113549.1.7.4":"Signed And Enveloped Data","1.2.840.113549.1.7.5":"Digested Data","1.2.840.113549.1.7.6":"Encrypted Data","1.2.840.113549.1.7.7":"Data with Attributes","1.2.840.113549.1.7.8":"Encrypted Private Key Info","1.2.840.113549.1.9":"PKCS-9","1.2.840.113549.1.9.1":"Email","1.2.840.113549.1.9.2":"Unstructured Name","1.2.840.113549.1.9.3":"Content Type","1.2.840.113549.1.9.4":"Message Digest","1.2.840.113549.1.9.5":"Signing Time","1.2.840.113549.1.9.6":"Countersignature","1.2.840.113549.1.9.7":"Challenge Password","1.2.840.113549.1.9.8":"Unstructured Address","1.2.840.113549.1.9.9":"Extended Certificate Attributes","1.2.840.113549.1.9.10":"Issuer And Serial Number","1.2.840.113549.1.9.11":"Password Check","1.2.840.113549.1.9.12":"Public Key","1.2.840.113549.1.9.13":"Signing Description","1.2.840.113549.1.9.14":"Extension Request","1.2.840.113549.1.9.15":"S/MIME Capabilities","1.2.840.113549.1.9.15.1":"Prefer Signed Data","1.2.840.113549.1.9.15.2":"Can Not Decrypt Any","1.2.840.113549.1.9.15.3":"Receipt Request","1.2.840.113549.1.9.15.4":"Receipt","1.2.840.113549.1.9.15.5":"Content Hints","1.2.840.113549.1.9.15.6":"Ml Expansion History","1.2.840.113549.1.9.16":"Id-sMIME","1.2.840.113549.1.9.16.0":"Id-mod","1.2.840.113549.1.9.16.0.1":"Id-mod-cms","1.2.840.113549.1.9.16.0.2":"Id-mod-ess","1.2.840.113549.1.9.16.0.3":"Id-mod-oid","1.2.840.113549.1.9.16.0.4":"Id-mod-msg-v3","1.2.840.113549.1.9.16.0.5":"Id-mod-ets-e Signature-88","1.2.840.113549.1.9.16.0.6":"Id-mod-ets-e Signature-97","1.2.840.113549.1.9.16.0.7":"Id-mod-ets-e Sig Policy-88","1.2.840.113549.1.9.16.0.8":"Id-mod-ets-e Sig Policy-88","1.2.840.113549.1.9.16.1":"Content Type","1.2.840.113549.1.9.16.1.1":"Receipt","1.2.840.113549.1.9.16.1.2":"Auth Data","1.2.840.113549.1.9.16.1.3":"Publish Cert","1.2.840.113549.1.9.16.1.4":"TST Info","1.2.840.113549.1.9.16.1.5":"TDT Info","1.2.840.113549.1.9.16.1.6":"Content Info","1.2.840.113549.1.9.16.1.7":"DVCS Request Data","1.2.840.113549.1.9.16.1.8":"DVCS Response Data","1.2.840.113549.1.9.16.1.9":"Compressed Data","1.2.840.113549.1.9.16.1.10":"SCVP Cert Val Request","1.2.840.113549.1.9.16.1.11":"SCVP Cert Val Response","1.2.840.113549.1.9.16.1.12":"SCVP Val Pol Request","1.2.840.113549.1.9.16.1.13":"SCVP Val Pol Response","1.2.840.113549.1.9.16.1.14":"Attr Cert Enc Attrs","1.2.840.113549.1.9.16.1.15":"TS Req","1.2.840.113549.1.9.16.1.16":"Firmware Package","1.2.840.113549.1.9.16.1.17":"Firmware Load Receipt","1.2.840.113549.1.9.16.1.18":"Firmware Load Error","1.2.840.113549.1.9.16.1.19":"Content Collection","1.2.840.113549.1.9.16.1.20":"Content with Attrs","1.2.840.113549.1.9.16.1.21":"Enc Key with I D","1.2.840.113549.1.9.16.1.22":"Enc PEPSI","1.2.840.113549.1.9.16.1.23":"Auth Enveloped Data","1.2.840.113549.1.9.16.1.24":"Route Origin Attest","1.2.840.113549.1.9.16.1.25":"Symmetric Key Package","1.2.840.113549.1.9.16.1.26":"Rpki Manifest","1.2.840.113549.1.9.16.1.27":"Ascii Text with CRLF","1.2.840.113549.1.9.16.1.28":"XML","1.2.840.113549.1.9.16.1.29":"PDF","1.2.840.113549.1.9.16.1.30":"Postscript","1.2.840.113549.1.9.16.1.31":"Timestamped Data","1.2.840.113549.1.9.16.1.32":"As Adjacency Attest","1.2.840.113549.1.9.16.1.33":"Rpki Trust Anchor","1.2.840.113549.1.9.16.1.34":"Trust Anchor List","1.2.840.113549.1.9.16.2":"Authenticated Attributes","1.2.840.113549.1.9.16.2.1":"Receipt Request","1.2.840.113549.1.9.16.2.2":"Security Label","1.2.840.113549.1.9.16.2.3":"Ml Expand History","1.2.840.113549.1.9.16.2.4":"Content Hint","1.2.840.113549.1.9.16.2.5":"Msg Sig Digest","1.2.840.113549.1.9.16.2.6":"Encap Content Type","1.2.840.113549.1.9.16.2.7":"Content Identifier","1.2.840.113549.1.9.16.2.8":"Mac Value","1.2.840.113549.1.9.16.2.9":"Equivalent Labels","1.2.840.113549.1.9.16.2.10":"Content Reference","1.2.840.113549.1.9.16.2.11":"Encryp Key Pref","1.2.840.113549.1.9.16.2.12":"Signing Certificate","1.2.840.113549.1.9.16.2.13":"Smime Encrypt Certs","1.2.840.113549.1.9.16.2.14":"Time Stamp Token","1.2.840.113549.1.9.16.2.15":"Sig Policy Id","1.2.840.113549.1.9.16.2.16":"Commitment Type","1.2.840.113549.1.9.16.2.17":"Signer Location","1.2.840.113549.1.9.16.2.18":"Signer Attr","1.2.840.113549.1.9.16.2.19":"Other Sig Cert","1.2.840.113549.1.9.16.2.20":"Content Timestamp","1.2.840.113549.1.9.16.2.21":"Certificate Refs","1.2.840.113549.1.9.16.2.22":"Revocation Refs","1.2.840.113549.1.9.16.2.23":"Cert Values","1.2.840.113549.1.9.16.2.24":"Revocation Values","1.2.840.113549.1.9.16.2.25":"Esc Time Stamp","1.2.840.113549.1.9.16.2.26":"Cert CRL Timestamp","1.2.840.113549.1.9.16.2.27":"Archive Time Stamp","1.2.840.113549.1.9.16.2.28":"Signature Type","1.2.840.113549.1.9.16.2.29":"Dvcs Dvc","1.2.840.113549.1.9.16.2.30":"Cek Reference","1.2.840.113549.1.9.16.2.31":"Max CEK Decrypts","1.2.840.113549.1.9.16.2.32":"Kek Derivation Alg","1.2.840.113549.1.9.16.2.33":"Intended Recipients","1.2.840.113549.1.9.16.2.34":"Cmc Unsigned Data","1.2.840.113549.1.9.16.2.35":"Fw Package ID","1.2.840.113549.1.9.16.2.36":"Fw Target Hardware IDs","1.2.840.113549.1.9.16.2.37":"Fw Decrypt Key ID","1.2.840.113549.1.9.16.2.38":"Fw Impl Crypt Algs","1.2.840.113549.1.9.16.2.39":"Fw Wrapped Firmware Key","1.2.840.113549.1.9.16.2.40":"Fw Community Identifiers","1.2.840.113549.1.9.16.2.41":"Fw Pkg Message Digest","1.2.840.113549.1.9.16.2.42":"Fw Package Info","1.2.840.113549.1.9.16.2.43":"Fw Impl Compress Algs","1.2.840.113549.1.9.16.2.44":"Ets Attr Certificate Refs","1.2.840.113549.1.9.16.2.45":"Ets Attr Revocation Refs","1.2.840.113549.1.9.16.2.46":"Binary Signing Time","1.2.840.113549.1.9.16.2.47":"Signing Certificate V2","1.2.840.113549.1.9.16.2.48":"Ets Archive Time Stamp V2","1.2.840.113549.1.9.16.2.49":"Er Internal","1.2.840.113549.1.9.16.2.50":"Er External","1.2.840.113549.1.9.16.2.51":"Multiple Signatures","1.2.840.113549.1.9.16.3.1":"Es DHwith3 DES","1.2.840.113549.1.9.16.3.2":"Es DHwith RC2","1.2.840.113549.1.9.16.3.3":"3des Wrap","1.2.840.113549.1.9.16.3.4":"Rc2 Wrap","1.2.840.113549.1.9.16.3.5":"Es DH","1.2.840.113549.1.9.16.3.6":"Cms3 DESwrap","1.2.840.113549.1.9.16.3.7":"Cms RC2wrap","1.2.840.113549.1.9.16.3.8":"Zlib","1.2.840.113549.1.9.16.3.9":"Pwri KEK","1.2.840.113549.1.9.16.3.10":"Ss DH","1.2.840.113549.1.9.16.3.11":"Hmac With3 DE Swrap","1.2.840.113549.1.9.16.3.12":"Hmac with AE Swrap","1.2.840.113549.1.9.16.3.13":"MD5 Xor Experiment","1.2.840.113549.1.9.16.3.14":"RSA KEM","1.2.840.113549.1.9.16.3.15":"Auth Enc128","1.2.840.113549.1.9.16.3.16":"Auth Enc256","1.2.840.113549.1.9.16.4.1":"Cert Dist-ldap","1.2.840.113549.1.9.16.5.1":"Sig Policy Qualifier-spuri x","1.2.840.113549.1.9.16.5.2":"Sig Policy Qualifier-sp User Notice","1.2.840.113549.1.9.16.6.1":"Proof Of Origin","1.2.840.113549.1.9.16.6.2":"Proof Of Receipt","1.2.840.113549.1.9.16.6.3":"Proof Of Delivery","1.2.840.113549.1.9.16.6.4":"Proof Of Sender","1.2.840.113549.1.9.16.6.5":"Proof Of Approval","1.2.840.113549.1.9.16.6.6":"Proof Of Creation","1.2.840.113549.1.9.16.8.1":"Gl Use KEK","1.2.840.113549.1.9.16.8.2":"Gl Delete","1.2.840.113549.1.9.16.8.3":"Gl Add Member","1.2.840.113549.1.9.16.8.4":"Gl Delete Member","1.2.840.113549.1.9.16.8.5":"Gl Rekey","1.2.840.113549.1.9.16.8.6":"Gl Add Owner","1.2.840.113549.1.9.16.8.7":"Gl Remove Owner","1.2.840.113549.1.9.16.8.8":"Glk Compromise","1.2.840.113549.1.9.16.8.9":"Glk Refresh","1.2.840.113549.1.9.16.8.10":"Gl Fail Info","1.2.840.113549.1.9.16.8.11":"Gla Query Request","1.2.840.113549.1.9.16.8.12":"Gla Query Response","1.2.840.113549.1.9.16.8.13":"Gl Provide Cert","1.2.840.113549.1.9.16.8.14":"Gl Update Cert","1.2.840.113549.1.9.16.8.15":"Gl Key","1.2.840.113549.1.9.16.9":"Signature Type Identifier","1.2.840.113549.1.9.16.9.1":"Originator Sig","1.2.840.113549.1.9.16.9.2":"Domain Sig","1.2.840.113549.1.9.16.9.3":"Additional Attributes Sig","1.2.840.113549.1.9.16.9.4":"Review Sig","1.2.840.113549.1.9.16.11":"Capabilities","1.2.840.113549.1.9.16.11.1":"Prefer Binary Inside","1.2.840.113549.1.9.20":"Friendly Name (for PKCS #12)","1.2.840.113549.1.9.21":"Local Key I D (for PKCS #12)","1.2.840.113549.1.9.22":"Cert Types (for PKCS #12)","1.2.840.113549.1.9.22.1":"x509 Certificate (for PKCS #12)","1.2.840.113549.1.9.22.2":"SDSI Certificate (for PKCS #12)","1.2.840.113549.1.9.23":"CRL Types (for PKCS #12)","1.2.840.113549.1.9.23.1":"x509 Crl (for PKCS #12)","1.2.840.113549.1.9.24":"PKCS9object Class","1.2.840.113549.1.9.25":"PKCS9attributes","1.2.840.113549.1.9.25.1":"PKCS15 Token","1.2.840.113549.1.9.25.2":"Encrypted Private Key Info","1.2.840.113549.1.9.25.3":"Random Nonce","1.2.840.113549.1.9.25.4":"Sequence Number","1.2.840.113549.1.9.25.5":"PKCS7 PDU","1.2.840.113549.1.9.26":"PKCS9syntax","1.2.840.113549.1.9.27":"PKCS9matching Rules","1.2.840.113549.1.12":"PKCS-12","1.2.840.113549.1.12.1":"PKCS-12- Pbe Ids#12 mode ID","1.2.840.113549.1.12.1.1":"PBE with SHA And128 Bit RC4","1.2.840.113549.1.12.1.2":"PBE with SHA And40 Bit RC4","1.2.840.113549.1.12.1.3":"PBE with SHA And3-Key Triple DES-CBC","1.2.840.113549.1.12.1.4":"PBE with SHA And2-Key Triple DES-CBC","1.2.840.113549.1.12.1.5":"PBE with SHA And128 Bit RC2-CBC","1.2.840.113549.1.12.1.6":"PBE with SHA And40 Bit RC2-CBC","1.2.840.113549.1.12.2":"PKCS-12-ESPVKID","1.2.840.113549.1.12.2.1":"PKCS-12-PKCS8 Key Shrouding(1284011354911235) instead","1.2.840.113549.1.12.3":"PKCS-12-Bag Ids","1.2.840.113549.1.12.3.1":"PKCS-12-key Bag Id","1.2.840.113549.1.12.3.2":"PKCS-12-cert And CRL Bag Id","1.2.840.113549.1.12.3.3":"PKCS-12-secret Bag Id","1.2.840.113549.1.12.3.4":"PKCS-12-safe Contents Id","1.2.840.113549.1.12.3.5":"PKCS-12-pkcs","1.2.840.113549.1.12.4":"PKCS-12-Cert Bag ID","1.2.840.113549.1.12.4.1":"PKCS-12-x509 Cert CRL Bag I Dformerly assigned as pkcs-12-x509 Cert CRL Bag","1.2.840.113549.1.12.4.2":"PKCS-12-SDSI Cert Bag I Dformerly assigned as pkcs-12-SDSI Cert Bag","1.2.840.113549.1.12.5":"PKCS-12-OID","1.2.840.113549.1.12.5.1":"PKCS-12-PBEI Dthe partially compatible (128401135491121) OIDs instead","1.2.840.113549.1.12.5.1.1":"PKCS-12-PBE with SHA1 And128 Bit RC4use (1284011354911211) instead","1.2.840.113549.1.12.5.1.2":"PKCS-12-PBE with SHA1 And40 Bit RC4use (1284011354911212) instead","1.2.840.113549.1.12.5.1.3":"PKCS-12-PBE with SHA1 And Triple DESCB Cuse the incompatible but similar (1284011354911213) or (1284011354911214) instead","1.2.840.113549.1.12.5.1.4":"PKCS-12-PBE with SHA1 And128 Bit RC2CB Cuse (1284011354911215) instead","1.2.840.113549.1.12.5.1.5":"PKCS-12-PBE with SHA1 And40 Bit RC2CB Cuse (1284011354911216) instead","1.2.840.113549.1.12.5.1.6":"PKCS-12-PBE with SHA1 And RC4use the incompatible but similar (1284011354911211) or (1284011354911212) instead","1.2.840.113549.1.12.5.1.7":"PKCS-12-PBE with SHA1 And RC2CB Cuse the incompatible but similar (1284011354911215) or (1284011354911216) instead","1.2.840.113549.1.12.5.2":"PKCS-12-Enveloping I Dthe conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.2.1":"PKCS-12-RSA Encryption With128 Bit RC4use the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.2.2":"PKCS-12-RSA Encryption With40 Bit RC4use the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.2.3":"PKCS-12-RSA Encryption with Triple DESuse the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.3":"PKCS-12-Signature IDuse the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.3.1":"PKCS-12-RSA Signature with SHA1 Digestuse the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.10":"PKCS-12 Version1","1.2.840.113549.1.12.10.1":"PKCS-12 Bad Ids","1.2.840.113549.1.12.10.1.1":"PKCS-12-key Bag","1.2.840.113549.1.12.10.1.2":"PKCS-12-pkcs","1.2.840.113549.1.12.10.1.3":"PKCS-12-cert Bag","1.2.840.113549.1.12.10.1.4":"PKCS-12-crl Bag","1.2.840.113549.1.12.10.1.5":"PKCS-12-secret Bag","1.2.840.113549.1.12.10.1.6":"PKCS-12-safe Contents Bag","1.2.840.113549.1.15.1":"PKCS15modules","1.2.840.113549.1.15.2":"PKCS15attributes","1.2.840.113549.1.15.3":"PKCS15content Type","1.2.840.113549.1.15.3.1":"PKCS15content","1.2.840.113549.2":"Digest Algorithm","1.2.840.113549.2.2":"MD2","1.2.840.113549.2.4":"MD4","1.2.840.113549.2.5":"MD5","1.2.840.113549.2.7":"HMAC with SHA1","1.2.840.113549.2.8":"HMAC with SHA224","1.2.840.113549.2.9":"HMAC with SHA256","1.2.840.113549.2.10":"HMAC with SHA384","1.2.840.113549.2.11":"HMAC with SHA512","1.2.840.113549.3":"Encryption Algorithm","1.2.840.113549.3.2":"Rc2CBC","1.2.840.113549.3.3":"Rc2ECB","1.2.840.113549.3.4":"Rc4","1.2.840.113549.3.5":"Rc4 with MAC","1.2.840.113549.3.6":"Desx-CBC","1.2.840.113549.3.7":"Des-EDE3-CBC","1.2.840.113549.3.8":"Rc5CBC","1.2.840.113549.3.9":"Rc5-CBCPad","1.2.840.113549.3.10":"DesCDMF","1.2.840.113556.1.2.241":"Delivery Mechanism","1.2.840.113556.1.2.281":"Nt Security Descriptor","1.2.840.113556.1.3.0":"Site-Addressing","1.2.840.113556.1.3.13":"Class Schema","1.2.840.113556.1.3.14":"Attribute Schema","1.2.840.113556.1.3.17":"Mailbox- Agent","1.2.840.113556.1.3.22":"Mailbox","1.2.840.113556.1.3.23":"Container","1.2.840.113556.1.3.46":"Mail Recipient","1.2.840.113556.1.4.145":"Revision","1.2.840.113556.1.4.1327":"PKI Default Key Spec","1.2.840.113556.1.4.1328":"PKI Key Usage","1.2.840.113556.1.4.1329":"PKI Max Issuing Depth","1.2.840.113556.1.4.1330":"PKI Critical Extensions","1.2.840.113556.1.4.1331":"PKI Expiration Period","1.2.840.113556.1.4.1332":"PKI Overlap Period","1.2.840.113556.1.4.1333":"PKI Extended Key Usage","1.2.840.113556.1.4.1334":"PKI Default CSPs","1.2.840.113556.1.4.1335":"PKI Enrollment Access","1.2.840.113556.1.4.1429":"MsPKI-RA-Signature","1.2.840.113556.1.4.1430":"MsPKI-Enrollment-Flag","1.2.840.113556.1.4.1431":"MsPKI-Private-Key","1.2.840.113556.1.4.1432":"MsPKI-Certificate-Name","1.2.840.113556.1.4.1433":"MsPKI-Minimal-Key","1.2.840.113556.1.4.1434":"MsPKI-Template-Schema","1.2.840.113556.1.4.1435":"MsPKI-Template-Minor","1.2.840.113556.1.4.1436":"MsPKI-Cert-Template","1.2.840.113556.1.4.1437":"MsPKI-Supersede-Templates","1.2.840.113556.1.4.1438":"MsPKI-RA-Policies","1.2.840.113556.1.4.1439":"MsPKI-Certificate-Policy","1.2.840.113556.1.4.1674":"MsPKI-Certificate-Application","1.2.840.113556.1.4.1675":"MsPKI-R A- Application","1.2.840.113556.4.3":"Microsoft Excel","1.2.840.113556.4.4":"Titled with OID","1.2.840.113556.4.5":"Microsoft Power Point","1.2.840.113583.1":"Adobe Acrobat","1.2.840.113583.1.1":"Acrobat Security","1.2.840.113583.1.1.1":"PDF Password","1.2.840.113583.1.1.2":"PDF Default Signing Credential","1.2.840.113583.1.1.3":"PDF Default Encryption Credential","1.2.840.113583.1.1.4":"PDF Password Timeout","1.2.840.113583.1.1.5":"PDF Authentic Documents Trust","1.2.840.113583.1.1.6":"PDF Dynamic Content Trust","1.2.840.113583.1.1.7":"PDF Ubiquity Trust","1.2.840.113583.1.1.8":"PDF Revocation Info Archival","1.2.840.113583.1.1.9":"PDF x509 Extension","1.2.840.113583.1.1.9.1":"Adobe Time-stamp","1.2.840.113583.1.1.9.2":"Adobe Archive Rev Info","1.2.840.113583.1.1.10":"PDF PPLK Lite Credential","1.2.840.113583.1.2.":"Acrobat CPS","1.2.840.113583.1.2.1":"PDF Authentic Documents CPS","1.2.840.113583.1.2.2":"PDF Test CPS","1.2.840.113583.1.2.3":"PDF Ubiquity CPS","1.2.840.113583.1.2.4":"PDF Adhoc CPS","1.2.840.113583.1.7":"Acrobat Ubiquity","1.2.840.113583.1.7.1":"PDF Ubiquity Sub Rights","1.2.840.113583.1.9":"Acrobat Extension","1.2.840.113628.114.1.7":"Adobe PKCS7","1.2.840.113635.100":"Apple Data Security","1.2.840.113635.100.1":"Apple Trust Policy","1.2.840.113635.100.1.1":"Apple I Sign TP","1.2.840.113635.100.1.2":"Apple x509 Basic","1.2.840.113635.100.1.3":"Apple SSL Policy","1.2.840.113635.100.1.4":"Apple Local Cert Gen Policy","1.2.840.113635.100.1.5":"Apple CSR Gen Policy","1.2.840.113635.100.1.6":"Apple CRL Policy","1.2.840.113635.100.1.7":"Apple OCSP Policy","1.2.840.113635.100.1.8":"Apple SMIME Policy","1.2.840.113635.100.1.9":"Apple EAP Policy","1.2.840.113635.100.1.10":"Apple SW Update Signing Policy","1.2.840.113635.100.1.11":"Apple IPSec Policy","1.2.840.113635.100.1.12":"Apple IChat Policy","1.2.840.113635.100.1.13":"Apple Resource Sign Policy","1.2.840.113635.100.1.14":"Apple PKINIT Client Policy","1.2.840.113635.100.1.15":"Apple PKINIT Server Policy","1.2.840.113635.100.1.16":"Apple Code Signing Policy","1.2.840.113635.100.1.17":"Apple Package Signing Policy","1.2.840.113635.100.2":"Apple Security Algorithm","1.2.840.113635.100.2.1":"Apple FEE","1.2.840.113635.100.2.2":"Apple ASC","1.2.840.113635.100.2.3":"Apple FEE_MD5","1.2.840.113635.100.2.4":"Apple FEE_SHA1","1.2.840.113635.100.2.5":"Apple FEED","1.2.840.113635.100.2.6":"Apple FEEDEXP","1.2.840.113635.100.2.7":"Apple ECDSA","1.2.840.113635.100.3":"Apple Dot Mac Certificate","1.2.840.113635.100.3.1":"Apple Dot Mac Certificate Request","1.2.840.113635.100.3.2":"Apple Dot Mac Certificate Extension","1.2.840.113635.100.3.3":"Apple Dot Mac Certificate Request Values","1.2.840.113635.100.4":"Apple Extended Key Usage","1.2.840.113635.100.4.1":"Apple Code Signing","1.2.840.113635.100.4.1.1":"Apple Code Signing Development","1.2.840.113635.100.4.1.2":"Apple Software Update Signing","1.2.840.113635.100.4.1.3":"Apple Code Signing Third Party","1.2.840.113635.100.4.1.4":"Apple Resource Signing","1.2.840.113635.100.4.2":"Apple I Chat Signing","1.2.840.113635.100.4.3":"Apple I Chat Encryption","1.2.840.113635.100.4.4":"Apple System Identity","1.2.840.113635.100.4.5":"Apple Crypto Env","1.2.840.113635.100.4.5.1":"Apple Crypto Production Env","1.2.840.113635.100.4.5.2":"Apple Crypto Maintenance Env","1.2.840.113635.100.4.5.3":"Apple Crypto Test Env","1.2.840.113635.100.4.5.4":"Apple Crypto Development Env","1.2.840.113635.100.4.6":"Apple Crypto Qo S","1.2.840.113635.100.4.6.1":"Apple Crypto Tier0 QoS","1.2.840.113635.100.4.6.2":"Apple Crypto Tier1 QoS","1.2.840.113635.100.4.6.3":"Apple Crypto Tier2 QoS","1.2.840.113635.100.4.6.4":"Apple Crypto Tier3 QoS","1.2.840.113635.100.4.7":"Apple ID Sharing Certificate","1.2.840.113635.100.5":"Apple Certificate Policies","1.2.840.113635.100.5.1":"Apple Certificate Policy ID","1.2.840.113635.100.5.2":"Apple Dot Mac Certificate Policy ID","1.2.840.113635.100.5.3":"Apple ADC Certificate Policy ID","1.2.840.113635.100.5.7.1":"Apple ID Sharing Certificate Policy","1.2.840.113635.100.6":"Apple Certificate Extensions","1.2.840.113635.100.6.1":"Apple Certificate Extension Code Signing","1.2.840.113635.100.6.1.1":"Apple Certificate Extension Apple Signing","1.2.840.113635.100.6.1.2":"Apple Certificate Extension ADC Developer Signing","1.2.840.113635.100.6.1.3":"Apple Certificate Extension ADC Apple Signing","1.2.840.113635.100.6.2.3":"Apple Application Integration","1.2.840.114021.1.6.1":"Identrus unknown policy Identifier","1.2.840.114021.4.1":"Identrus OCSP","1.3.6.1.4.1.188.7.1.1":"Ascom","1.3.6.1.4.1.188.7.1.1.1":"Idea ECB","1.3.6.1.4.1.188.7.1.1.2":"Idea CBC","1.3.6.1.4.1.188.7.1.1.3":"Idea CFB","1.3.6.1.4.1.188.7.1.1.4":"Idea OFB","1.3.6.1.4.1.311.2.1.4":"Spc Indirect Data Context","1.3.6.1.4.1.311.2.1.10":"Spc Agency Info","1.3.6.1.4.1.311.2.1.11":"Spc Statement Type","1.3.6.1.4.1.311.2.1.12":"Spc Sp Opus Info","1.3.6.1.4.1.311.2.1.14":"Cert Req Extensions","1.3.6.1.4.1.311.2.1.15":"Spc P E Image Data","1.3.6.1.4.1.311.2.1.18":"Spc Raw File Data","1.3.6.1.4.1.311.2.1.19":"Spc Structured Storage Data","1.3.6.1.4.1.311.2.1.20":"Spc Java ClassData (type 1extension',aka 'Glue extension)","1.3.6.1.4.1.311.2.1.21":"Individual Code Signing","1.3.6.1.4.1.311.2.1.22":"Commercial Code Signing","1.3.6.1.4.1.311.2.1.25":"Spc Link (type 2as 'Glue extension)","1.3.6.1.4.1.311.2.1.26":"Spc Minimal Criteria Info","1.3.6.1.4.1.311.2.1.27":"Spc Financial Criteria Info","1.3.6.1.4.1.311.2.1.28":"SpcLink (type 3as 'Glue extension)","1.3.6.1.4.1.311.2.1.29":"Spc Hash Info Obj ID","1.3.6.1.4.1.311.2.1.30":"Spc Sip Info Obj ID","1.3.6.1.4.1.311.2.2":"Ctl","1.3.6.1.4.1.311.2.2.1":"Ctl Trusted Codesigning CAList","1.3.6.1.4.1.311.2.2.2":"Ctl Trusted Client Auth CAList","1.3.6.1.4.1.311.2.2.3":"Ctl Trusted Server Auth CAList","1.3.6.1.4.1.311.3.2.1":"Timestamp Request","1.3.6.1.4.1.311.10.1":"Cert Trust List","1.3.6.1.4.1.311.10.1.1":"Sorted Ctl","1.3.6.1.4.1.311.10.2":"Next Update Location","1.3.6.1.4.1.311.10.3.1":"Cert Trust List Signing","1.3.6.1.4.1.311.10.3.2":"Time Stamp Signing","1.3.6.1.4.1.311.10.3.3":"Server Gated Crypto","1.3.6.1.4.1.311.10.3.3.1":"Serialized","1.3.6.1.4.1.311.10.3.4":"Encrypted File System","1.3.6.1.4.1.311.10.3.4.1":"Efs Recovery","1.3.6.1.4.1.311.10.3.5":"Whql Crypto","1.3.6.1.4.1.311.10.3.6":"Nt5 Crypto","1.3.6.1.4.1.311.10.3.7":"Oem WHQL Crypto","1.3.6.1.4.1.311.10.3.8":"Embedded NT Crypto","1.3.6.1.4.1.311.10.3.9":"Root List Signer","1.3.6.1.4.1.311.10.3.10":"Qualified Subordination","1.3.6.1.4.1.311.10.3.11":"Key Recovery","1.3.6.1.4.1.311.10.3.12":"Document Signing","1.3.6.1.4.1.311.10.3.13":"Lifetime Signing","1.3.6.1.4.1.311.10.3.14":"Mobile Device Software","1.3.6.1.4.1.311.10.3.15":"Smart Display","1.3.6.1.4.1.311.10.3.16":"Csp Signature","1.3.6.1.4.1.311.10.4.1":"yesno Trust Attr","1.3.6.1.4.1.311.10.5.1":"Drm","1.3.6.1.4.1.311.10.5.2":"Drm Individualization","1.3.6.1.4.1.311.10.6.1":"Licenses","1.3.6.1.4.1.311.10.6.2":"License Server","1.3.6.1.4.1.311.10.7.1":"Keyid Rdn","1.3.6.1.4.1.311.10.8.1":"Remove Certificate","1.3.6.1.4.1.311.10.9.1":"Cross Cert Dist Points","1.3.6.1.4.1.311.10.10.1":"Cmc Add Attributes","1.3.6.1.4.1.311.10.11":"Cert Prop Id Prefix","1.3.6.1.4.1.311.10.11.4":"Cert Md5 Hash Prop Id","1.3.6.1.4.1.311.10.11.20":"Cert Key Identifier Prop Id","1.3.6.1.4.1.311.10.11.28":"Cert Issuer Serial Number Md5 Hash Prop Id","1.3.6.1.4.1.311.10.11.29":"Cert Subject Name MD5 Hash Prop Id","1.3.6.1.4.1.311.10.12.1":"Any Application Policy","1.3.6.1.4.1.311.12":"Catalog","1.3.6.1.4.1.311.12.1.1":"Catalog List","1.3.6.1.4.1.311.12.1.2":"Catalog List Member","1.3.6.1.4.1.311.12.2.1":"Catalog Name Value Obj ID","1.3.6.1.4.1.311.12.2.2":"Catalog Member Info Obj ID","1.3.6.1.4.1.311.13.1":"Renewal Certificate","1.3.6.1.4.1.311.13.2.1":"Enrolment Name Value Pair","1.3.6.1.4.1.311.13.2.2":"Enrolment CSP","1.3.6.1.4.1.311.13.2.3":"Os Version","1.3.6.1.4.1.311.16.4":"Microsoft Recipient Info","1.3.6.1.4.1.311.17.1":"PKCS12 Key Provider Name Attr","1.3.6.1.4.1.311.17.2":"Local Machine Keyset","1.3.6.1.4.1.311.17.3":"PKCS12 Extended Attributes","1.3.6.1.4.1.311.20.1":"Auto Enroll Ctl Usage","1.3.6.1.4.1.311.20.2":"Microsoft Certificate Type","1.3.6.1.4.1.311.20.2.1":"Enrollment Agent","1.3.6.1.4.1.311.20.2.2":"Smartcard Logon","1.3.6.1.4.1.311.20.2.3":"NP Principal Name","1.3.6.1.4.1.311.20.3":"Cert Manifold","1.3.6.1.4.1.311.21.1":"Microsoft Certification Authority Renewal","1.3.6.1.4.1.311.21.2":"Microsoft Certificate Previous Hash","1.3.6.1.4.1.311.21.3":"CRL Virtual Base","1.3.6.1.4.1.311.21.4":"CRL Next Publish","1.3.6.1.4.1.311.21.5":"Ca Exchange","1.3.6.1.4.1.311.21.6":"Key Recovery","1.3.6.1.4.1.311.21.7":"Microsoft Certificate Template","1.3.6.1.4.1.311.21.8":"Enterprize OID Root","1.3.6.1.4.1.311.21.9":"Rdn Dummy Signer","1.3.6.1.4.1.311.21.10":"Microsoft Certificate Policies","1.3.6.1.4.1.311.21.11":"Application Policy Mappings","1.3.6.1.4.1.311.21.12":"Application Policy Constraints","1.3.6.1.4.1.311.21.13":"Archived Key","1.3.6.1.4.1.311.21.14":"CRL Self CDP","1.3.6.1.4.1.311.21.15":"Require Cert Chain Policy","1.3.6.1.4.1.311.21.16":"Archived Key Cert Hash","1.3.6.1.4.1.311.21.17":"Issued Cert Hash","1.3.6.1.4.1.311.21.19":"DS Email Replication","1.3.6.1.4.1.311.21.20":"Request Client Info","1.3.6.1.4.1.311.21.21":"Encrypted Key Hash","1.3.6.1.4.1.311.21.22":"Certsrv Cross CA Version","1.3.6.1.4.1.311.25.1":"Ntds Replication","1.3.6.1.4.1.311.31.1":"Product Update","1.3.6.1.4.1.311.47.1.1":"System Health","1.3.6.1.4.1.311.47.1.3":"System Health Loophole","1.3.6.1.4.1.311.60.1.1":"Root Program Flags","1.3.6.1.4.1.311.60.2.1.1":"Jurisdiction Of Incorporation L","1.3.6.1.4.1.311.60.2.1.2":"Jurisdiction Of Incorporation SP","1.3.6.1.4.1.311.60.2.1.3":"Jurisdiction Of Incorporation C","1.3.6.1.4.1.311.61.1.1":"Kernel Mode Code Signing","1.3.6.1.4.1.311.84.1.1":"ASP.NET HTTPS Development certificate","1.3.6.1.4.1.311.88":"CAPICOM","1.3.6.1.4.1.311.88.1":"CAPICOM version","1.3.6.1.4.1.311.88.2":"CAPICOM attribute","1.3.6.1.4.1.311.88.2.1":"Document type attribute","1.3.6.1.4.1.311.88.2.2":"Document description attribute","1.3.6.1.4.1.311.88.3":"CAPICOM encrypted data message","1.3.6.1.4.1.311.88.3.1":"CAPICOM content of encrypted data","1.3.6.1.4.1.782.1.2.1.8.1":"Network Solutions EV policy","1.3.6.1.4.1.2428.10.1.1":"UNINETT policy Identifier","1.3.6.1.4.1.2712.10":"ICE-TEL policy Identifier","1.3.6.1.4.1.2786.1.1.1":"ICE-TEL Italian","1.3.6.1.4.1.3029.1.1.1":"Blowfish ECB","1.3.6.1.4.1.3029.1.1.2":"Blowfish CBC","1.3.6.1.4.1.3029.1.1.3":"Blowfish CFB","1.3.6.1.4.1.3029.1.1.4":"Blowfish OFB","1.3.6.1.4.1.3029.1.2.1":"Elgamal","1.3.6.1.4.1.3029.1.2.1.1":"Elgamal with SHA-1","1.3.6.1.4.1.3029.1.2.1.2":"Elgamal with RIPEMD-160","1.3.6.1.4.1.3029.3.1.1":"Cryptlib Presence Check","1.3.6.1.4.1.3029.3.1.2":"Pki Boot","1.3.6.1.4.1.3029.3.1.4":"CRL Ext Reason","1.3.6.1.4.1.3029.3.1.5":"Key Features","1.3.6.1.4.1.3029.4.1":"Cryptlib Content","1.3.6.1.4.1.3029.4.1.1":"Cryptlib Config Data","1.3.6.1.4.1.3029.4.1.2":"Cryptlib User Index","1.3.6.1.4.1.3029.4.1.3":"Cryptlib User Info","1.3.6.1.4.1.3029.4.1.4":"Rtcs Request","1.3.6.1.4.1.3029.4.1.5":"Rtcs Response","1.3.6.1.4.1.3029.4.1.6":"Rtcs Response Ext","1.3.6.1.4.1.3029.42.11172.1":"Mpeg-1","1.3.6.1.4.1.3029.54.11940.54":"TSA policy 'Anythingpolicy","1.3.6.1.4.1.3029.88.89.90.90.89":"XYZZY policy Identifier","1.3.6.1.4.1.3401.8.1.1":"Pgp Extension","1.3.6.1.4.1.3576.7":"Ecia Asc X12 Edi","1.3.6.1.4.1.3576.7.1":"Plain ED Imessage","1.3.6.1.4.1.3576.7.2":"Signed ED Imessage","1.3.6.1.4.1.3576.7.5":"Integrity ED Imessage","1.3.6.1.4.1.3576.7.65":"Ia Receipt Message","1.3.6.1.4.1.3576.7.97":"Ia Status Message","1.3.6.1.4.1.3576.8":"Ecia Edifact","1.3.6.1.4.1.3576.9":"Ecia Non Edi","1.3.6.1.4.1.4146":"GlobalSign","1.3.6.1.4.1.4146.1":"GlobalSign Policy","1.3.6.1.4.1.4146.1.1":"GlobalSign EV policy","1.3.6.1.4.1.4146.1.10":"GlobalSign DV Policy","1.3.6.1.4.1.4146.1.20":"GlobalSign OV Policy","1.3.6.1.4.1.4146.1.30":"GlobalSign TSA Policy","1.3.6.1.4.1.4146.1.40":"GlobalSign Client Certificates Policy","1.3.6.1.4.1.4146.1.40.10":"GlobalSign Client Certificates Enterprise PKI Policy","1.3.6.1.4.1.4146.1.50":"GlobalSign Code Signing Certificates Policy","1.3.6.1.4.1.4146.1.60":"GlobalSign Root Sign Policy","1.3.6.1.4.1.4146.1.70":"GlobalSign Trusted Root Policy","1.3.6.1.4.1.4146.1.80":"GlobalSign EDI Client Policy","1.3.6.1.4.1.4146.1.81":"GlobalSign EDI Server Policy","1.3.6.1.4.1.4146.1.90":"GlobalSign TPM Root Policy","1.3.6.1.4.1.4146.1.95":"GlobalSign OCSP Policy","1.3.6.1.4.1.41482.3.3":"YubiKey Firmware Version","1.3.6.1.4.1.41482.3.7":"YubiKey Serial Number","1.3.6.1.4.1.41482.3.8":"YubiKey PIN Touch Policy","1.3.6.1.4.1.41482.3.9":"YubiKey Formfactor","1.3.6.1.4.1.4788.2.202.1":"D-TRUSTEV policy","1.3.6.1.4.1.5309.1":"Edel Web Policy","1.3.6.1.4.1.5309.1.2":"Edel Web Customer Policy","1.3.6.1.4.1.5309.1.2.1":"Edel Web Clepsydre Policy","1.3.6.1.4.1.5309.1.2.2":"Edel Web Experimental TSA Policy","1.3.6.1.4.1.5309.1.2.3":"Edel Web Open Evidence TSA Policy","1.3.6.1.4.1.53087.1.3":"Trademark Country Or Region Name","1.3.6.1.4.1.53087.1.4":"Trademark Registration Number","1.3.6.1.4.1.53087.1.6":"Word Mark","1.3.6.1.4.1.5472":"Timeproof","1.3.6.1.4.1.5472.1":"TSS","1.3.6.1.4.1.5472.1.1":"TSS80","1.3.6.1.4.1.5472.1.2":"TSS380","1.3.6.1.4.1.5472.1.3":"TSS400","1.3.6.1.4.1.5770.0.3":"Secondary Practices","1.3.6.1.4.1.5770.0.4":"Physician Identifiers","1.3.6.1.4.1.6334.1.100.1":"Cybertrust EV policy","1.3.6.1.4.1.6449.1.2.1.3.1":"Comodo Policy","1.3.6.1.4.1.6449.1.2.1.5.1":"Comodo EV policy","1.3.6.1.4.1.6449.1.2.2.7":"Comodo TLS DV","1.3.6.1.4.1.6449.1.2.2.15":"Wotrust Policy","1.3.6.1.4.1.6449.1.3.5.2":"Comodo Certified Delivery Service","1.3.6.1.4.1.6449.2.1.1":"Comodo Timestamping Policy","1.3.6.1.4.1.7879.13.24.1":"T-Tele Sec EV policy","1.3.6.1.4.1.8024.0.2.100.1.2":"QuoVadis EV policy","1.3.6.1.4.1.8231.1":"Rol Unico Nacional","1.3.6.1.4.1.8301.3.5.1":"alidity Model Chain","1.3.6.1.4.1.8301.3.5.2":"alidity Model Shell","1.3.6.1.4.1.11129.2.4.2":"Certificate Transparency","1.3.6.1.4.1.11591":"Gnu","1.3.6.1.4.1.11591.1":"Gnu Radius","1.3.6.1.4.1.11591.3":"Gnu Radar","1.3.6.1.4.1.11591.12":"Gnu Digest Algorithm","1.3.6.1.4.1.11591.12.2":"Tiger","1.3.6.1.4.1.11591.13":"Gnu Encryption Algorithm","1.3.6.1.4.1.11591.13.2":"Serpent","1.3.6.1.4.1.11591.13.2.1":"Serpent128_ECB","1.3.6.1.4.1.11591.13.2.2":"Serpent128_CBC","1.3.6.1.4.1.11591.13.2.3":"Serpent128_OFB","1.3.6.1.4.1.11591.13.2.4":"Serpent128_CFB","1.3.6.1.4.1.11591.13.2.21":"Serpent192_ECB","1.3.6.1.4.1.11591.13.2.22":"Serpent192_CBC","1.3.6.1.4.1.11591.13.2.23":"Serpent192_OFB","1.3.6.1.4.1.11591.13.2.24":"Serpent192_CFB","1.3.6.1.4.1.11591.13.2.41":"Serpent256_ECB","1.3.6.1.4.1.11591.13.2.42":"Serpent256_CBC","1.3.6.1.4.1.11591.13.2.43":"Serpent256_OFB","1.3.6.1.4.1.11591.13.2.44":"Serpent256_CFB","1.3.6.1.4.1.14370.1.6":"Geo Trust EV policy","1.3.6.1.4.1.14777.6.1.1":"Izenpe EV policy","1.3.6.1.4.1.14777.6.1.2":"Izenpe EV policy","1.3.6.1.4.1.16334.509.1.1":"Northrop Grumman ext Key Usage?","1.3.6.1.4.1.16334.509.2.1":"Ngc Class1","1.3.6.1.4.1.16334.509.2.2":"Ngc Class2","1.3.6.1.4.1.16334.509.2.3":"Ngc Class3","1.3.6.1.4.1.17326.10.8.12.1.2":"Camerfirma EV policy","1.3.6.1.4.1.17326.10.14.2.1.2":"Camerfirma EV policy","1.3.6.1.4.1.22234.2.5.2.3.1":"Cert Plus EV policy","1.3.6.1.4.1.23223.1.1.1":"Start Com EV policy","1.3.6.1.4.1.23629.1.4.2.1.1":"Safenet Usage Limit","1.3.6.1.4.1.23629.1.4.2.1.2":"Safenet End Date","1.3.6.1.4.1.23629.1.4.2.1.3":"Safenet Start Date","1.3.6.1.4.1.23629.1.4.2.1.4":"Safenet Admin Cert","1.3.6.1.4.1.23629.1.4.2.2.1":"Safenet Key Digest","1.3.6.1.4.1.34697.2.1":"Affirm Trust EV policy","1.3.6.1.4.1.34697.2.2":"Affirm Trust EV policy","1.3.6.1.4.1.34697.2.3":"Affirm Trust EV policy","1.3.6.1.4.1.34697.2.4":"Affirm Trust EV policy","1.3.6.1.4.1.40869.1.1.22.3":"TWCAEV policy","1.3.6.1.4.1.13177.10.1.2.2":"Corporate certificates for Natural Person","1.3.6.1.4.1.37476.9000.64.1":"Smallstep CA Provisioner ID","1.3.6.1.5.2.3.5":"KCD Authentication","1.3.6.1.5.5.7":"PKIX","1.3.6.1.5.5.7.0.12":"Attribute Cert","1.3.6.1.5.5.7.1":"Private Extension","1.3.6.1.5.5.7.1.1":"Certificate Authority Information Access","1.3.6.1.5.5.7.1.2":"Biometric Info","1.3.6.1.5.5.7.1.3":"Qualified Certificate Statements","1.3.6.1.5.5.7.1.4":"Ac Audit Identity","1.3.6.1.5.5.7.1.5":"Ac Targeting","1.3.6.1.5.5.7.1.6":"Ac Aa Controls","1.3.6.1.5.5.7.1.7":"Ip Addr Blocks","1.3.6.1.5.5.7.1.8":"Autonomous Sys Ids","1.3.6.1.5.5.7.1.9":"Router Identifier","1.3.6.1.5.5.7.1.10":"Ac Proxying","1.3.6.1.5.5.7.1.11":"Subject Info Access","1.3.6.1.5.5.7.1.12":"Logo Type","1.3.6.1.5.5.7.1.13":"Wlan SSID","1.3.6.1.5.5.7.1.26":"Telephone Number Authorization List","1.3.6.1.5.5.7.2":"Policy Qualifier Ids","1.3.6.1.5.5.7.2.1":"Certificate Policy Statement","1.3.6.1.5.5.7.2.2":"User Notice","1.3.6.1.5.5.7.2.3":"Text Notice","1.3.6.1.5.5.7.3":"Key Purpose","1.3.6.1.5.5.7.3.1":"Server Authentication","1.3.6.1.5.5.7.3.2":"Client Authentication","1.3.6.1.5.5.7.3.3":"Code Signing","1.3.6.1.5.5.7.3.4":"Email Protection","1.3.6.1.5.5.7.3.5":"Ipsec End System","1.3.6.1.5.5.7.3.6":"Ipsec Tunnel","1.3.6.1.5.5.7.3.7":"Ipsec User","1.3.6.1.5.5.7.3.8":"Time Stamping","1.3.6.1.5.5.7.3.9":"OCSP Signing","1.3.6.1.5.5.7.3.10":"DVCS","1.3.6.1.5.5.7.3.11":"Sbgp Cert AA Server Auth","1.3.6.1.5.5.7.3.13":"Eap Over PPP","1.3.6.1.5.5.7.3.14":"Eap Over LAN","1.3.6.1.5.5.7.3.31":"Brand Indicator for Message Identification","1.3.6.1.5.5.7.4":"Cmp Information Types","1.3.6.1.5.5.7.4.1":"Ca Prot Enc Cert","1.3.6.1.5.5.7.4.2":"Sign Key Pair Types","1.3.6.1.5.5.7.4.3":"Enc Key Pair Types","1.3.6.1.5.5.7.4.4":"Preferred Symm Alg","1.3.6.1.5.5.7.4.5":"CA Key Update Info","1.3.6.1.5.5.7.4.6":"Current CRL","1.3.6.1.5.5.7.4.7":"Unsupported OIDs","1.3.6.1.5.5.7.4.10":"Key Pair Param Req","1.3.6.1.5.5.7.4.11":"Key Pair Param Rep","1.3.6.1.5.5.7.4.12":"Rev Passphrase","1.3.6.1.5.5.7.4.13":"Implicit Confirm","1.3.6.1.5.5.7.4.14":"Confirm Wait Time","1.3.6.1.5.5.7.4.15":"Orig PKI Message","1.3.6.1.5.5.7.4.16":"Supp Lang Tags","1.3.6.1.5.5.7.5":"Crmf Registration","1.3.6.1.5.5.7.5.1":"Reg Ctrl","1.3.6.1.5.5.7.5.1.1":"Reg Token","1.3.6.1.5.5.7.5.1.2":"Authenticator","1.3.6.1.5.5.7.5.1.3":"Pki Publication Info","1.3.6.1.5.5.7.5.1.4":"Pki Archive Options","1.3.6.1.5.5.7.5.1.5":"Old Cert ID","1.3.6.1.5.5.7.5.1.6":"Protocol Encr Key","1.3.6.1.5.5.7.5.1.7":"Alt Cert Template","1.3.6.1.5.5.7.5.1.8":"Wtls Template","1.3.6.1.5.5.7.5.2":"Utf8 Pairs","1.3.6.1.5.5.7.5.2.1":"Utf8 Pairs","1.3.6.1.5.5.7.5.2.2":"Cert Req","1.3.6.1.5.5.7.6":"Algorithms","1.3.6.1.5.5.7.6.1":"Des40","1.3.6.1.5.5.7.6.2":"No Signature","1.3.6.1.5.5.7.6.3":"Dh-sig-hmac","1.3.6.1.5.5.7.6.4":"Dh-pop","1.3.6.1.5.5.7.7":"CMC Controls","1.3.6.1.5.5.7.8":"Other Names","1.3.6.1.5.5.7.8.1":"Personal Data","1.3.6.1.5.5.7.8.2":"User Group","1.3.6.1.5.5.7.8.3":"Permanent Identifier","1.3.6.1.5.5.7.8.5":"Xmpp Addr","1.3.6.1.5.5.7.9":"Personal Data","1.3.6.1.5.5.7.9.1":"Date Of Birth","1.3.6.1.5.5.7.9.2":"Place Of Birth","1.3.6.1.5.5.7.9.3":"Gender","1.3.6.1.5.5.7.9.4":"Country Of Citizenship","1.3.6.1.5.5.7.9.5":"Country Of Residence","1.3.6.1.5.5.7.10":"Attribute Certificate","1.3.6.1.5.5.7.10.1":"Authentication Info","1.3.6.1.5.5.7.10.2":"Access Identity","1.3.6.1.5.5.7.10.3":"Charging Identity","1.3.6.1.5.5.7.10.4":"Group","1.3.6.1.5.5.7.10.5":"Role","1.3.6.1.5.5.7.10.6":"Wlan SSID","1.3.6.1.5.5.7.11":"Personal Data","1.3.6.1.5.5.7.11.1":"Pkix QC Syntax v1","1.3.6.1.5.5.7.11.2":"Pkix QC Syntax v2","1.3.6.1.5.5.7.14.2":"Resource Certificate Policy","1.3.6.1.5.5.7.20":"Logo","1.3.6.1.5.5.7.20.1":"Logo Loyalty","1.3.6.1.5.5.7.20.2":"Logo Background","1.3.6.1.5.5.7.48.1":"OCSP","1.3.6.1.5.5.7.48.1.1":"OCSP Basic","1.3.6.1.5.5.7.48.1.2":"OCSP Nonce","1.3.6.1.5.5.7.48.1.3":"OCSP CRL","1.3.6.1.5.5.7.48.1.4":"OCSP Response","1.3.6.1.5.5.7.48.1.5":"OCSP No Check","1.3.6.1.5.5.7.48.1.6":"OCSP Archive Cutoff","1.3.6.1.5.5.7.48.1.7":"OCSP Service Locator","1.3.6.1.5.5.7.48.2":"CA Issuers","1.3.6.1.5.5.7.48.3":"Time Stamping","1.3.6.1.5.5.7.48.4":"DVCS","1.3.6.1.5.5.7.48.5":"CA Repository","1.3.6.1.5.5.7.48.7":"Signed Object Repository","1.3.6.1.5.5.7.48.10":"Rpki Manifest","1.3.6.1.5.5.7.48.11":"Signed Object","1.3.6.1.5.5.8.1.1":"HMAC MD5","1.3.6.1.5.5.8.1.2":"HMAC SHA","1.3.6.1.5.5.8.1.3":"HMAC Tiger","1.3.6.1.5.5.8.2.2":"IKE Intermediate","1.3.12.2.1011.7.1":"DEC Encryption Algorithm","1.3.12.2.1011.7.1.2":"DEC DEA","1.3.12.2.1011.7.2":"DEC Hash Algorithm","1.3.12.2.1011.7.2.1":"DECMD2","1.3.12.2.1011.7.2.2":"DECMD4","1.3.12.2.1011.7.3":"DEC Signature Algorithm","1.3.12.2.1011.7.3.1":"DEC MD2 with RSA","1.3.12.2.1011.7.3.2":"DEC MD4 with RSA","1.3.12.2.1011.7.3.3":"DEC DEAMAC","1.3.14.2.26.5":"SHA","1.3.14.3.2.1.1":"RSA","1.3.14.3.2.2":"MD4 with RSA","1.3.14.3.2.2.1":"Sqmod-N","1.3.14.3.2.3":"MD5 with RSA","1.3.14.3.2.3.1":"Sqmod-Nwith RSA","1.3.14.3.2.4":"MD4 with RSA Encryption","1.3.14.3.2.6":"DES ECB","1.3.14.3.2.7":"DES CBC","1.3.14.3.2.8":"DES OFB","1.3.14.3.2.9":"DES CFB","1.3.14.3.2.10":"DES MAC","1.3.14.3.2.11":"RSA Signature","1.3.14.3.2.12":"DSA","1.3.14.3.2.13":"DSA with SHA","1.3.14.3.2.14":"MDC2 with RSA Signature","1.3.14.3.2.15":"SHA with RSA Signature","1.3.14.3.2.16":"DH with Common Modulus","1.3.14.3.2.17":"Des EDE","1.3.14.3.2.18":"SHA","1.3.14.3.2.19":"MDC-2","1.3.14.3.2.20":"DSA Common","1.3.14.3.2.21":"DSA Common with SHA","1.3.14.3.2.22":"RSA Key Transport","1.3.14.3.2.23":"Keyed-hash-seal","1.3.14.3.2.24":"MD2 with RSA Signature","1.3.14.3.2.25":"MD5 with RSA Signature","1.3.14.3.2.26":"SHA1","1.3.14.3.2.27":"DSA with SHA1","1.3.14.3.2.28":"DSA with Common SHA1","1.3.14.3.2.29":"SHA-1 with RSA Encryption","1.3.14.3.3.1":"Simple-strong-auth","1.3.14.7.2.1.1":"El Gamal","1.3.14.7.2.3.1":"MD2 with RSA","1.3.14.7.2.3.2":"MD2 with El Gamal","1.3.36.1":"Document","1.3.36.1.1":"Final Version","1.3.36.1.2":"Draft","1.3.36.2":"Sio","1.3.36.2.1":"Sedu","1.3.36.3":"Algorithm","1.3.36.3.1":"Encryption Algorithm","1.3.36.3.1.1":"DES","1.3.36.3.1.1.1":"DES ECB_pad","1.3.36.3.1.1.1.1":"DES ECB_ISOpad","1.3.36.3.1.1.2.1":"DES CBC_pad","1.3.36.3.1.1.2.1.1":"DES CBC_ISOpad","1.3.36.3.1.2":"IDEA","1.3.36.3.1.2.1":"IDEA ECB","1.3.36.3.1.2.1.1":"IDEA ECB_pad","1.3.36.3.1.2.1.1.1":"IDEA ECB_ISOpad","1.3.36.3.1.2.2":"IDEA CBC","1.3.36.3.1.2.2.1":"IDEA CBC_pad","1.3.36.3.1.2.2.1.1":"IDEA CBC_ISOpad","1.3.36.3.1.2.3":"IDEA OFB","1.3.36.3.1.2.4":"IDEA CFB","1.3.36.3.1.3":"DES_3","1.3.36.3.1.3.1.1":"DES_3 ECB_pad","1.3.36.3.1.3.1.1.1":"DES_3 ECB_ISOpad","1.3.36.3.1.3.2.1":"DES_3 CBC_pad","1.3.36.3.1.3.2.1.1":"DES_3 CBC_ISOpad","1.3.36.3.1.4":"RSA Encryption","1.3.36.3.1.4.512.17":"RSA Encryption Withlmod512expe17","1.3.36.3.1.5":"BSI-1","1.3.36.3.1.5.1":"BSI_1 ECB_pad","1.3.36.3.1.5.2":"BSI_1 CBC_pad","1.3.36.3.1.5.2.1":"BSI_1 CBC_PEMpad","1.3.36.3.2":"Hash Algorithm","1.3.36.3.2.1":"Ripemd160","1.3.36.3.2.2":"Ripemd128","1.3.36.3.2.3":"Ripemd256","1.3.36.3.2.4":"Mdc2single Length","1.3.36.3.2.5":"Mdc2double Length","1.3.36.3.3":"Signature Algorithm","1.3.36.3.3.1":"RSA Signature","1.3.36.3.3.1.1":"RSA Signature WithSHA1","1.3.36.3.3.1.1.1024.11":"RSA Signature WithSHA1_l1024_l11","1.3.36.3.3.1.2":"RSA Signature Withripemd160","1.3.36.3.3.1.2.1024.11":"RSA Signature Withripemd160_l1024_l11","1.3.36.3.3.1.3":"RSA Signature Withrimpemd128","1.3.36.3.3.1.4":"RSA Signature Withrimpemd256","1.3.36.3.3.2":"Ecsie Sign","1.3.36.3.3.2.1":"Ecsie Sign WithSHA1","1.3.36.3.3.2.2":"Ecsie Sign Withripemd160","1.3.36.3.3.2.3":"Ecsie Sign Withmd2","1.3.36.3.3.2.4":"Ecsie Sign Withmd5","1.3.36.3.3.2.8.1.1.1":"Brainpool P160r1","1.3.36.3.3.2.8.1.1.2":"Brainpool P160t1","1.3.36.3.3.2.8.1.1.3":"Brainpool P192r1","1.3.36.3.3.2.8.1.1.4":"Brainpool P192t1","1.3.36.3.3.2.8.1.1.5":"Brainpool P224r1","1.3.36.3.3.2.8.1.1.6":"Brainpool P224t1","1.3.36.3.3.2.8.1.1.7":"Brainpool P256r1","1.3.36.3.3.2.8.1.1.8":"Brainpool P256t1","1.3.36.3.3.2.8.1.1.9":"Brainpool P320r1","1.3.36.3.3.2.8.1.1.10":"Brainpool P320t1","1.3.36.3.3.2.8.1.1.11":"Brainpool P384r1","1.3.36.3.3.2.8.1.1.12":"Brainpool P384t1","1.3.36.3.3.2.8.1.1.13":"Brainpool P512r1","1.3.36.3.3.2.8.1.1.14":"Brainpool P512t1","1.3.36.3.4":"Signature Scheme","1.3.36.3.4.1":"Sig S_ISO9796-1","1.3.36.3.4.2":"Sig S_ISO9796-2","1.3.36.3.4.2.1":"Sig S_ISO9796-2 with RED","1.3.36.3.4.2.2":"Sig S_ISO9796-2 with RSA","1.3.36.3.4.2.3":"Sig S_ISO9796-2 with RDN","1.3.36.4":"Attribute","1.3.36.5":"Policy","1.3.36.6":"Api","1.3.36.6.1":"Manufacturer-specific_api","1.3.36.6.1.1":"Utimaco-api","1.3.36.6.2":"Functionality-specific_api","1.3.36.7":"Keymgmnt","1.3.36.7.1":"Keyagree","1.3.36.7.1.1":"Bsi PKE","1.3.36.7.2":"Keytrans","1.3.36.7.2.1":"Enc ISO9796-2 Withrsa","1.3.36.8.1.1":"Teletrust Sig G Conform policy Identifier","1.3.36.8.2.1":"Directory Service","1.3.36.8.3.1":"Date Of Cert Gen","1.3.36.8.3.2":"Procuration","1.3.36.8.3.3":"Admission","1.3.36.8.3.4":"Monetary Limit","1.3.36.8.3.5":"Declaration Of Majority","1.3.36.8.3.6":"Integrated Circuit Card Serial Number","1.3.36.8.3.7":"PK Reference","1.3.36.8.3.8":"Restriction","1.3.36.8.3.9":"Retrieve If Allowed","1.3.36.8.3.10":"Requested Certificate","1.3.36.8.3.11":"Naming Authorities","1.3.36.8.3.11.1":"Recht Wirtschaft Steuern","1.3.36.8.3.11.1.1":"Rechtsanwaeltin","1.3.36.8.3.11.1.2":"Rechtsanwalt","1.3.36.8.3.11.1.3":"Rechts Beistand","1.3.36.8.3.11.1.4":"Steuer Beraterin","1.3.36.8.3.11.1.5":"Steuer Berater","1.3.36.8.3.11.1.6":"Steuer Bevollmaechtigte","1.3.36.8.3.11.1.7":"Steuer Bevollmaechtigter","1.3.36.8.3.11.1.8":"Notarin","1.3.36.8.3.11.1.9":"Notar","1.3.36.8.3.11.1.10":"Notar Vertreterin","1.3.36.8.3.11.1.11":"Notar Vertreter","1.3.36.8.3.11.1.12":"Notariats Verwalterin","1.3.36.8.3.11.1.13":"Notariats Verwalter","1.3.36.8.3.11.1.14":"Wirtschafts Prueferin","1.3.36.8.3.11.1.15":"Wirtschafts Pruefer","1.3.36.8.3.11.1.16":"ereidigte Buchprueferin","1.3.36.8.3.11.1.17":"ereidigter Buchpruefer","1.3.36.8.3.11.1.18":"Patent Anwaeltin","1.3.36.8.3.11.1.19":"Patent Anwalt","1.3.36.8.3.12":"Cert In Dir Since","1.3.36.8.3.13":"Cert Hash","1.3.36.8.3.14":"Name At Birth","1.3.36.8.3.15":"Additional Information","1.3.36.8.4.1":"Personal Data","1.3.36.8.4.8":"Restriction","1.3.36.8.5.1.1.1":"RSA Indicate SHA1","1.3.36.8.5.1.1.2":"RSA Indicate RIPEMD160","1.3.36.8.5.1.1.3":"RSA with SHA1","1.3.36.8.5.1.1.4":"RSA with RIPEMD160","1.3.36.8.5.1.2.1":"Dsa Extended","1.3.36.8.5.1.2.2":"Dsa with RIPEMD160","1.3.36.8.6.1":"Cert","1.3.36.8.6.2":"Cert Ref","1.3.36.8.6.3":"Attr Cert","1.3.36.8.6.4":"Attr Ref","1.3.36.8.6.5":"File Name","1.3.36.8.6.6":"Storage Time","1.3.36.8.6.7":"File Size","1.3.36.8.6.8":"Location","1.3.36.8.6.9":"Sig Number","1.3.36.8.6.10":"Auto Gen","1.3.36.8.7.1.1":"Pt Adobe ILL","1.3.36.8.7.1.2":"Pt Ami Pro","1.3.36.8.7.1.3":"Pt Auto CAD","1.3.36.8.7.1.4":"Pt Binary","1.3.36.8.7.1.5":"Pt BMP","1.3.36.8.7.1.6":"Pt CGM","1.3.36.8.7.1.7":"Pt Corel CRT","1.3.36.8.7.1.8":"Pt Corel DRW","1.3.36.8.7.1.9":"Pt Corel EXC","1.3.36.8.7.1.10":"Pt Corel PHT","1.3.36.8.7.1.11":"Pt Draw","1.3.36.8.7.1.12":"Pt DVI","1.3.36.8.7.1.13":"Pt EPS","1.3.36.8.7.1.14":"Pt Excel","1.3.36.8.7.1.15":"Pt GEM","1.3.36.8.7.1.16":"Pt GIF","1.3.36.8.7.1.17":"Pt HPGL","1.3.36.8.7.1.18":"Pt JPEG","1.3.36.8.7.1.19":"Pt Kodak","1.3.36.8.7.1.20":"Pt LaTeX","1.3.36.8.7.1.21":"Pt Lotus","1.3.36.8.7.1.22":"Pt Lotus PIC","1.3.36.8.7.1.23":"Pt Mac PICT","1.3.36.8.7.1.24":"Pt Mac Word","1.3.36.8.7.1.25":"Pt MSWfD","1.3.36.8.7.1.26":"Pt MSWord","1.3.36.8.7.1.27":"Pt MSWord2","1.3.36.8.7.1.28":"Pt MSWord6","1.3.36.8.7.1.29":"Pt MSWord8","1.3.36.8.7.1.30":"Pt PDF","1.3.36.8.7.1.31":"Pt PIF","1.3.36.8.7.1.32":"Pt Postscript","1.3.36.8.7.1.33":"Pt RTF","1.3.36.8.7.1.34":"Pt SCITEX","1.3.36.8.7.1.35":"Pt TAR","1.3.36.8.7.1.36":"Pt Targa","1.3.36.8.7.1.37":"Pt TeX","1.3.36.8.7.1.38":"Pt Text","1.3.36.8.7.1.39":"Pt TIFF","1.3.36.8.7.1.40":"Pt TIFF-FC","1.3.36.8.7.1.41":"Pt UID","1.3.36.8.7.1.42":"Pt UU Encode","1.3.36.8.7.1.43":"Pt WMF","1.3.36.8.7.1.44":"Pt Word Perfect","1.3.36.8.7.1.45":"Pt WP Grph","1.3.101.1.4":"Thawte-ce","1.3.101.1.4.1":"Strong Extranet","1.3.101.112":"Edwards-curve Digital Signature Algorithm (EdDSA) Ed25519","1.3.132.0.1":"Sect163k1","1.3.132.0.2":"Sect163r1","1.3.132.0.3":"Sect239k1","1.3.132.0.4":"Sect113r1","1.3.132.0.5":"Sect113r2","1.3.132.0.6":"Secp112r1","1.3.132.0.7":"Secp112r2","1.3.132.0.8":"Secp160r1","1.3.132.0.9":"Secp160k1","1.3.132.0.10":"Secp256k1","1.3.132.0.15":"Sect163r2","1.3.132.0.16":"Sect283k1","1.3.132.0.17":"Sect283r1","1.3.132.0.22":"Sect131r1","1.3.132.0.23":"Sect131r2","1.3.132.0.24":"Sect193r1","1.3.132.0.25":"Sect193r2","1.3.132.0.26":"Sect233k1","1.3.132.0.27":"Sect233r1","1.3.132.0.28":"Secp128r1","1.3.132.0.29":"Secp128r2","1.3.132.0.30":"Secp160r2","1.3.132.0.31":"Secp192k1","1.3.132.0.32":"Secp224k1","1.3.132.0.33":"Secp224r1","1.3.132.0.34":"Secp384r1","1.3.132.0.35":"Secp521r1","1.3.132.0.36":"Sect409k1","1.3.132.0.37":"Sect409r1","1.3.132.0.38":"Sect571k1","1.3.132.0.39":"Sect571r1","1.3.133.16.840.9.84":"x984","1.3.133.16.840.9.84.0":"x984 Module","1.3.133.16.840.9.84.0.1":"x984 Biometrics","1.3.133.16.840.9.84.0.2":"x984 CMS","1.3.133.16.840.9.84.0.3":"x984 Identifiers","1.3.133.16.840.9.84.1":"x984 Biometric","1.3.133.16.840.9.84.1.0":"Biometric Unknown Type","1.3.133.16.840.9.84.1.1":"Biometric Body Odor","1.3.133.16.840.9.84.1.2":"Biometric DNA","1.3.133.16.840.9.84.1.3":"Biometric Ear Shape","1.3.133.16.840.9.84.1.4":"Biometric Facial Features","1.3.133.16.840.9.84.1.5":"Biometric Finger Image","1.3.133.16.840.9.84.1.6":"Biometric Finger Geometry","1.3.133.16.840.9.84.1.7":"Biometric Hand Geometry","1.3.133.16.840.9.84.1.8":"Biometric Iris Features","1.3.133.16.840.9.84.1.9":"Biometric Keystroke Dynamics","1.3.133.16.840.9.84.1.10":"Biometric Palm","1.3.133.16.840.9.84.1.11":"Biometric Retina","1.3.133.16.840.9.84.1.12":"Biometric Signature","1.3.133.16.840.9.84.1.13":"Biometric Speech Pattern","1.3.133.16.840.9.84.1.14":"Biometric Thermal Image","1.3.133.16.840.9.84.1.15":"Biometric Vein Pattern","1.3.133.16.840.9.84.1.16":"Biometric Thermal Face Image","1.3.133.16.840.9.84.1.17":"Biometric Thermal Hand Image","1.3.133.16.840.9.84.1.18":"Biometric Lip Movement","1.3.133.16.840.9.84.1.19":"Biometric Gait","1.3.133.16.840.9.84.3":"x984 Matching Method","1.3.133.16.840.9.84.4":"x984 Format Owner","1.3.133.16.840.9.84.4.0":"x984 Cbeff Owner","1.3.133.16.840.9.84.4.1":"x984 Ibia Owner","1.3.133.16.840.9.84.4.1.1":"Ibia Owner SAFLINK","1.3.133.16.840.9.84.4.1.2":"Ibia Owner Bioscrypt","1.3.133.16.840.9.84.4.1.3":"Ibia Owner Visionics","1.3.133.16.840.9.84.4.1.4":"Ibia Owner Infineon Technologies AG","1.3.133.16.840.9.84.4.1.5":"Ibia Owner Iridian Technologies","1.3.133.16.840.9.84.4.1.6":"Ibia Owner Veridicom","1.3.133.16.840.9.84.4.1.7":"Ibia Owner Cyber SIGN","1.3.133.16.840.9.84.4.1.8":"Ibia Ownere Cryp","1.3.133.16.840.9.84.4.1.9":"Ibia Owner Fingerprint Cards AB","1.3.133.16.840.9.84.4.1.10":"Ibia Owner Secu Gen","1.3.133.16.840.9.84.4.1.11":"Ibia Owner Precise Biometric","1.3.133.16.840.9.84.4.1.12":"Ibia Owner Identix","1.3.133.16.840.9.84.4.1.13":"Ibia Owner DERMALOG","1.3.133.16.840.9.84.4.1.14":"Ibia Owner LOGICO","1.3.133.16.840.9.84.4.1.15":"Ibia Owner NIST","1.3.133.16.840.9.84.4.1.16":"Ibia Owner A3 Vision","1.3.133.16.840.9.84.4.1.17":"Ibia Owner NEC","1.3.133.16.840.9.84.4.1.18":"Ibia Owner ST Microelectronics","2.5.4.0":"Object Class","2.5.4.1":"Aliased Entry Name","2.5.4.2":"Knowledge Information","2.5.4.3":"Common Name","2.5.4.4":"Surname","2.5.4.5":"Serial Number","2.5.4.6":"Country Name","2.5.4.7":"Locality","2.5.4.7.1":"Collective Locality Name","2.5.4.8":"State","2.5.4.8.1":"Collective State Or Province Name","2.5.4.9":"Street Address","2.5.4.9.1":"Collective Street Address","2.5.4.97":"Organization Identifier","2.5.4.10":"Organization","2.5.4.10.1":"Collective Organization Name","2.5.4.11":"Organization Unit","2.5.4.11.1":"Collective Organization Unit Name","2.5.4.12":"Title","2.5.4.13":"Description","2.5.4.14":"Search Guide","2.5.4.15":"Business Category","2.5.4.16":"Postal Address","2.5.4.16.1":"Collective Postal Address","2.5.4.17":"Postal Code","2.5.4.17.1":"Collective Postal Code","2.5.4.18":"Post Office Box","2.5.4.18.1":"Collective Post Office Box","2.5.4.19":"Physical Delivery Office Name","2.5.4.19.1":"Collective Physical Delivery Office Name","2.5.4.20":"Telephone Number","2.5.4.20.1":"Collective Telephone Number","2.5.4.21":"Telex Number","2.5.4.21.1":"Collective Telex Number","2.5.4.22":"Teletex Terminal Identifier","2.5.4.22.1":"Collective Teletex Terminal Identifier","2.5.4.23":"Facsimile Telephone Number","2.5.4.23.1":"Collective Facsimile Telephone Number","2.5.4.24":"x121 Address","2.5.4.25":"International ISDN Number","2.5.4.25.1":"Collective International ISDN Number","2.5.4.26":"Registered Address","2.5.4.27":"Destination Indicator","2.5.4.28":"Preferred Delivery Mehtod","2.5.4.29":"Presentation Address","2.5.4.30":"Supported Application Context","2.5.4.31":"Member","2.5.4.32":"Owner","2.5.4.33":"Role Occupant","2.5.4.34":"See Also","2.5.4.35":"User Password","2.5.4.36":"User Certificate","2.5.4.37":"Ca Certificate","2.5.4.38":"Authority Revocation List","2.5.4.39":"Certificate Revocation List","2.5.4.40":"Cross Certificate Pair","2.5.4.41":"Name","2.5.4.42":"Given Name","2.5.4.43":"Initials","2.5.4.44":"Generation Qualifier","2.5.4.45":"Unique Identifier","2.5.4.46":"Dn Qualifier","2.5.4.47":"Enhanced Search Guide","2.5.4.48":"Protocol Information","2.5.4.49":"Distinguished Name","2.5.4.50":"Unique Member","2.5.4.51":"House Identifier","2.5.4.52":"Supported Algorithms","2.5.4.53":"Delta Revocation List","2.5.4.54":"DMD Name","2.5.4.55":"Clearance","2.5.4.56":"Default Dir Qop","2.5.4.57":"Attribute Integrity Info","2.5.4.58":"Attribute Certificate","2.5.4.59":"Attribute Certificate Revocation List","2.5.4.60":"Conf Key Info","2.5.4.61":"AA Certificate","2.5.4.62":"Attribute Descriptor Certificate","2.5.4.63":"Attribute Authority Revocation List","2.5.4.64":"Family Information","2.5.4.65":"Pseudonym","2.5.4.66":"Communications Service","2.5.4.67":"Communications Network","2.5.4.68":"Certification Practice Stmt","2.5.4.69":"Certificate Policy","2.5.4.70":"Pki Path","2.5.4.71":"Priv Policy","2.5.4.72":"Role","2.5.4.73":"Delegation Path","2.5.4.74":"Prot Priv Policy","2.5.4.75":"XML Privilege Info","2.5.4.76":"XML Priv Policy","2.5.4.82":"Permission","2.5.6.0":"Top","2.5.6.1":"Alias","2.5.6.2":"Country","2.5.6.3":"Locality","2.5.6.4":"Organization","2.5.6.5":"Organization Unit","2.5.6.6":"Person","2.5.6.7":"Organization Person","2.5.6.8":"Organization Role","2.5.6.9":"Group Of Names","2.5.6.10":"Residential Person","2.5.6.11":"Application Process","2.5.6.12":"Application Entity","2.5.6.13":"DSA","2.5.6.14":"Device","2.5.6.15":"Strong Authentication User","2.5.6.16":"Certificate Authority","2.5.6.17":"Group Of Unique Names","2.5.6.21":"Pki User","2.5.6.22":"Pki CA","2.5.8.1.1":"RSA","2.5.29.1":"Authority Key Identifier","2.5.29.2":"Key Attributes","2.5.29.3":"Certificate Policies","2.5.29.4":"Key Usage Restriction","2.5.29.5":"Policy Mapping","2.5.29.6":"Subtrees Constraint","2.5.29.7":"Subject Alt Name","2.5.29.8":"Issuer Alt Name","2.5.29.9":"Subject Directory Attributes","2.5.29.10":"Basic Constraints","2.5.29.11":"Name Constraints","2.5.29.12":"Policy Constraints","2.5.29.13":"Basic Constraints","2.5.29.14":"Subject Key Identifier","2.5.29.15":"Key Usage","2.5.29.16":"Private Key Usage Period","2.5.29.17":"Subject Alternative Name","2.5.29.18":"Issuer Alternative Name","2.5.29.19":"Basic Constraints","2.5.29.20":"CRL Number","2.5.29.21":"CRL Reason","2.5.29.22":"Expiration Date","2.5.29.23":"Instruction Code","2.5.29.24":"Invalidity Date","2.5.29.25":"CRL Distribution Points","2.5.29.26":"Issuing Distribution Point","2.5.29.27":"Delta CRL Indicator","2.5.29.28":"Issuing Distribution Point","2.5.29.29":"Certificate Issuer","2.5.29.30":"Name Constraints","2.5.29.31":"CRL Distribution Points","2.5.29.32":"Certificate Policies","2.5.29.32.0":"Any Policy","2.5.29.33":"Policy Mappings","2.5.29.34":"Policy Constraints","2.5.29.35":"Authority Key Identifier","2.5.29.36":"Policy Constraints","2.5.29.37":"Extended Key Usage","2.5.29.37.0":"Any Extended Key Usage","2.5.29.38":"Authority Attribute Identifier","2.5.29.39":"Role Spec Cert Identifier","2.5.29.40":"CRL Stream Identifier","2.5.29.41":"Basic Att Constraints","2.5.29.42":"Delegated Name Constraints","2.5.29.43":"Time Specification","2.5.29.44":"CRL Scope","2.5.29.45":"Status Referrals","2.5.29.46":"Freshest CRL","2.5.29.47":"Ordered List","2.5.29.48":"Attribute Descriptor","2.5.29.49":"User Notice","2.5.29.50":"SOA Identifier","2.5.29.51":"Base Update Time","2.5.29.52":"Acceptable Cert Policies","2.5.29.53":"Delta Info","2.5.29.54":"Inhibit Any Policy","2.5.29.55":"Target Information","2.5.29.56":"No Rev Avail","2.5.29.57":"Acceptable Privilege Policies","2.5.29.58":"To Be Revoked","2.5.29.59":"Revoked Groups","2.5.29.60":"Expired Certs On CRL","2.5.29.61":"Indirect Issuer","2.5.29.62":"No Assertion","2.5.29.63":"A Aissuing Distribution Point","2.5.29.64":"Issued On Behalf Of","2.5.29.65":"Single Use","2.5.29.66":"Group AC","2.5.29.67":"Allowed Att Ass","2.5.29.68":"Attribute Mappings","2.5.29.69":"Holder Name Constraints","2.16.528.1.1001.1.1.1.12.6.1.1.1":"Digi Notar EV policy","2.16.578.1.26.1.3.3":"Buy Pass EV policy","2.16.724.1.2.2.4.1":"Personal Data Info","2.16.756.1.89.1.2.1.1":"Swiss Sign EV policy","2.16.840.1.101.2.1.1.1":"Sdns Signature Algorithm","2.16.840.1.101.2.1.1.2":"Fortezza Signature Algorithm","2.16.840.1.101.2.1.1.3":"Sdns Confidentiality Algorithm","2.16.840.1.101.2.1.1.4":"Fortezza Confidentiality Algorithm","2.16.840.1.101.2.1.1.5":"Sdns Integrity Algorithm","2.16.840.1.101.2.1.1.6":"Fortezza Integrity Algorithm","2.16.840.1.101.2.1.1.7":"Sdns Token Protection Algorithm","2.16.840.1.101.2.1.1.8":"Fortezza Token Protection Algorithm","2.16.840.1.101.2.1.1.9":"Sdns Key Management Algorithm","2.16.840.1.101.2.1.1.10":"Fortezza Key Management Algorithm","2.16.840.1.101.2.1.1.11":"Sdns K Mand Sig Algorithm","2.16.840.1.101.2.1.1.12":"Fortezza K Mand Sig Algorithm","2.16.840.1.101.2.1.1.13":"Suite A Signature Algorithm","2.16.840.1.101.2.1.1.14":"Suite A Confidentiality Algorithm","2.16.840.1.101.2.1.1.15":"Suite A Integrity Algorithm","2.16.840.1.101.2.1.1.16":"Suite A Token Protection Algorithm","2.16.840.1.101.2.1.1.17":"Suite A Key Management Algorithm","2.16.840.1.101.2.1.1.18":"Suite AK Mand Sig Algorithm","2.16.840.1.101.2.1.1.19":"Fortezza Updated Sig Algorithm","2.16.840.1.101.2.1.1.20":"Fortezza K Mand Upd Sig Algorithms","2.16.840.1.101.2.1.1.21":"Fortezza Updated Integ Algorithm","2.16.840.1.101.2.1.1.22":"Key Exchange Algorithm","2.16.840.1.101.2.1.1.23":"Fortezza Wrap80 Algorithm","2.16.840.1.101.2.1.1.24":"KEA Key Encryption Algorithm","2.16.840.1.101.2.1.2.1":"Rfc822 Message Format","2.16.840.1.101.2.1.2.2":"Empty Content","2.16.840.1.101.2.1.2.3":"Csp Content Type","2.16.840.1.101.2.1.2.42":"MSP Rev3 Content Type","2.16.840.1.101.2.1.2.48":"MSP Content Type","2.16.840.1.101.2.1.2.49":"MSP Rekey Agent Protocol","2.16.840.1.101.2.1.2.50":"MSP MMP","2.16.840.1.101.2.1.2.66":"MSP Rev3-1 Content Type","2.16.840.1.101.2.1.2.72":"Forwarded MSP Message Body Part","2.16.840.1.101.2.1.2.73":"MSP Forwarded Message Parameters","2.16.840.1.101.2.1.2.74":"Forwarded CSP Msg Body Part","2.16.840.1.101.2.1.2.75":"CSP Forwarded Message Parameters","2.16.840.1.101.2.1.2.76":"MSP MMP2","2.16.840.1.101.2.1.3.1":"SDNS Security Policy","2.16.840.1.101.2.1.3.2":"SDNS PRBAC","2.16.840.1.101.2.1.3.3":"Mosaic PRBAC","2.16.840.1.101.2.1.3.10":"SI Security Policy","2.16.840.1.101.2.1.3.10.0":"SI NASP","2.16.840.1.101.2.1.3.10.1":"SI ELCO","2.16.840.1.101.2.1.3.10.2":"SI TK","2.16.840.1.101.2.1.3.10.3":"SI DSAP","2.16.840.1.101.2.1.3.10.4":"SI SSSS","2.16.840.1.101.2.1.3.10.5":"SI DNASP","2.16.840.1.101.2.1.3.10.6":"SI BYEMAN","2.16.840.1.101.2.1.3.10.7":"SI REL-US","2.16.840.1.101.2.1.3.10.8":"SI REL-AUS","2.16.840.1.101.2.1.3.10.9":"SI REL-CAN","2.16.840.1.101.2.1.3.10.10":"SI REL_UK","2.16.840.1.101.2.1.3.10.11":"SI REL-NZ","2.16.840.1.101.2.1.3.10.12":"SI Generic","2.16.840.1.101.2.1.3.11":"Genser","2.16.840.1.101.2.1.3.11.0":"Genser Nations","2.16.840.1.101.2.1.3.11.1":"Genser Comsec","2.16.840.1.101.2.1.3.11.2":"Genser Acquisition","2.16.840.1.101.2.1.3.11.3":"Genser Security Categories","2.16.840.1.101.2.1.3.11.3.0":"Genser Tag Set Name","2.16.840.1.101.2.1.3.12":"Default Security Policy","2.16.840.1.101.2.1.3.13":"Capco Markings","2.16.840.1.101.2.1.3.13.0":"Capco Security Categories","2.16.840.1.101.2.1.3.13.0.1":"Capco Tag Set Name1","2.16.840.1.101.2.1.3.13.0.2":"Capco Tag Set Name2","2.16.840.1.101.2.1.3.13.0.3":"Capco Tag Set Name3","2.16.840.1.101.2.1.3.13.0.4":"Capco Tag Set Name4","2.16.840.1.101.2.1.5.1":"SDNS Key Management Certificate","2.16.840.1.101.2.1.5.2":"SDNS User Signature Certificate","2.16.840.1.101.2.1.5.3":"SDNS K Mand Sig Certificate","2.16.840.1.101.2.1.5.4":"Fortezza Key Management Certificate","2.16.840.1.101.2.1.5.5":"Fortezza K Mand Sig Certificate","2.16.840.1.101.2.1.5.6":"Fortezza User Signature Certificate","2.16.840.1.101.2.1.5.7":"Fortezza CA Signature Certificate","2.16.840.1.101.2.1.5.8":"SDNS CA Signature Certificate","2.16.840.1.101.2.1.5.10":"Auxiliary Vector","2.16.840.1.101.2.1.5.11":"Ml Receipt Policy","2.16.840.1.101.2.1.5.12":"Ml Membership","2.16.840.1.101.2.1.5.13":"Ml Administrators","2.16.840.1.101.2.1.5.14":"Alid","2.16.840.1.101.2.1.5.20":"Jan UKMs","2.16.840.1.101.2.1.5.21":"Feb UKMs","2.16.840.1.101.2.1.5.22":"Mar UKMs","2.16.840.1.101.2.1.5.23":"Apr UKMs","2.16.840.1.101.2.1.5.24":"May UKMs","2.16.840.1.101.2.1.5.25":"Jun UKMs","2.16.840.1.101.2.1.5.26":"Jul UKMs","2.16.840.1.101.2.1.5.27":"Aug UKMs","2.16.840.1.101.2.1.5.28":"Sep UKMs","2.16.840.1.101.2.1.5.29":"Oct UKMs","2.16.840.1.101.2.1.5.30":"Nov UKMs","2.16.840.1.101.2.1.5.31":"Dec UKMs","2.16.840.1.101.2.1.5.40":"Meta SDN Sckl","2.16.840.1.101.2.1.5.41":"Sdns CKL","2.16.840.1.101.2.1.5.42":"Meta SDN Ssignature CKL","2.16.840.1.101.2.1.5.43":"Sdns Signature CKL","2.16.840.1.101.2.1.5.44":"Sdns Certificate Revocation List","2.16.840.1.101.2.1.5.45":"Fortezza Certificate Revocation List","2.16.840.1.101.2.1.5.46":"Fortezza CKL","2.16.840.1.101.2.1.5.47":"Al Exempted Address Processor","2.16.840.1.101.2.1.5.48":"Guard","2.16.840.1.101.2.1.5.49":"Algorithms Supported","2.16.840.1.101.2.1.5.50":"Suite A Key Management Certificate","2.16.840.1.101.2.1.5.51":"Suite AK Mand Sig Certificate","2.16.840.1.101.2.1.5.52":"Suite A User Signature Certificate","2.16.840.1.101.2.1.5.53":"Prbac Info","2.16.840.1.101.2.1.5.54":"Prbac CA Constraints","2.16.840.1.101.2.1.5.55":"Sig Or KM Privileges","2.16.840.1.101.2.1.5.56":"Comm Privileges","2.16.840.1.101.2.1.5.57":"Labeled Attribute","2.16.840.1.101.2.1.5.58":"Policy Information File","2.16.840.1.101.2.1.5.59":"Sec Policy Information File","2.16.840.1.101.2.1.5.60":"CA Clearance Constraint","2.16.840.1.101.2.1.7.1":"CSP Extns","2.16.840.1.101.2.1.7.1.0":"CSP Cs Extn","2.16.840.1.101.2.1.8.1":"MISSI Security Categories","2.16.840.1.101.2.1.8.2":"Standard Security Label Privileges","2.16.840.1.101.2.1.10.1":"SIG Privileges","2.16.840.1.101.2.1.10.2":"KM Privileges","2.16.840.1.101.2.1.10.3":"Named Tag Set Privilege","2.16.840.1.101.2.1.11.1":"UK Demo","2.16.840.1.101.2.1.11.2":"US DOD Class2","2.16.840.1.101.2.1.11.3":"US Medium Pilot","2.16.840.1.101.2.1.11.4":"US DOD Class4","2.16.840.1.101.2.1.11.5":"US DOD Class3","2.16.840.1.101.2.1.11.6":"US DOD Class5","2.16.840.1.101.2.1.12.0":"Test Security Policy","2.16.840.1.101.2.1.12.0.1":"TSP1","2.16.840.1.101.2.1.12.0.1.0":"TSP1 Security Categories","2.16.840.1.101.2.1.12.0.1.0.0":"TSP1 Tag Set Zero","2.16.840.1.101.2.1.12.0.1.0.1":"TSP1 Tag Set One","2.16.840.1.101.2.1.12.0.1.0.2":"TSP1 Tag Set Two","2.16.840.1.101.2.1.12.0.2":"TSP2","2.16.840.1.101.2.1.12.0.2.0":"TSP2 Security Categories","2.16.840.1.101.2.1.12.0.2.0.0":"TSP2 Tag Set Zero","2.16.840.1.101.2.1.12.0.2.0.1":"TSP2 Tag Set One","2.16.840.1.101.2.1.12.0.2.0.2":"TSP2 Tag Set Two","2.16.840.1.101.2.1.12.0.3":"Kafka","2.16.840.1.101.2.1.12.0.3.0":"Kafka Security Categories","2.16.840.1.101.2.1.12.0.3.0.1":"Kafka Tag Set Name1","2.16.840.1.101.2.1.12.0.3.0.2":"Kafka Tag Set Name2","2.16.840.1.101.2.1.12.0.3.0.3":"Kafka Tag Set Name3","2.16.840.1.101.2.1.12.1.1":"TCp1","2.16.840.1.101.3.1":"Slabel","2.16.840.1.101.3.2":"PKI","2.16.840.1.101.3.2.1":"NIST policy Identifier","2.16.840.1.101.3.2.1.2.7":"USPTO Basic 2003","2.16.840.1.101.3.2.1.2.8":"USPTO Medium 2003","2.16.840.1.101.3.2.1.2.9":"USPTO Medium Hardware","2.16.840.1.101.3.2.1.3.1":"FBCA Rudimentary Policy","2.16.840.1.101.3.2.1.3.2":"FBCA Basic Policy","2.16.840.1.101.3.2.1.3.3":"FBCA Medium Policy","2.16.840.1.101.3.2.1.3.4":"FBCA High Policy","2.16.840.1.101.3.2.1.3.12":"FBCA Medium Hardware Policy","2.16.840.1.101.3.2.1.48.1":"Nist Test Policy1","2.16.840.1.101.3.2.1.48.2":"Nist Test Policy2","2.16.840.1.101.3.2.1.48.3":"Nist Test Policy3","2.16.840.1.101.3.2.1.48.4":"Nist Test Policy4","2.16.840.1.101.3.2.1.48.5":"Nist Test Policy5","2.16.840.1.101.3.2.1.48.6":"Nist Test Policy6","2.16.840.1.101.3.2.2":"GAK","2.16.840.1.101.3.2.2.1":"KRA Key","2.16.840.1.101.3.2.3":"Extensions","2.16.840.1.101.3.2.3.1":"KR Technique","2.16.840.1.101.3.2.3.2":"K Recovery Capable","2.16.840.1.101.3.2.3.3":"KR","2.16.840.1.101.3.2.4":"Key Recovery Schemes","2.16.840.1.101.3.2.5":"Krapola","2.16.840.1.101.3.3":"ARPA","2.16.840.1.101.3.4":"Nist Algorithm","2.16.840.1.101.3.4.1":"AES","2.16.840.1.101.3.4.1.1":"AES128-ECB","2.16.840.1.101.3.4.1.2":"AES128-CBC","2.16.840.1.101.3.4.1.3":"AES128-OFB","2.16.840.1.101.3.4.1.4":"AES128-CFB","2.16.840.1.101.3.4.1.5":"AES128-wrap","2.16.840.1.101.3.4.1.6":"AES128-GCM","2.16.840.1.101.3.4.1.7":"AES128-CCM","2.16.840.1.101.3.4.1.8":"AES128-wrap-pad","2.16.840.1.101.3.4.1.21":"AES192-ECB","2.16.840.1.101.3.4.1.22":"AES192-CBC","2.16.840.1.101.3.4.1.23":"AES192-OFB","2.16.840.1.101.3.4.1.24":"AES192-CFB","2.16.840.1.101.3.4.1.25":"AES192-wrap","2.16.840.1.101.3.4.1.26":"AES192-GCM","2.16.840.1.101.3.4.1.27":"AES192-CCM","2.16.840.1.101.3.4.1.28":"AES192-wrap-pad","2.16.840.1.101.3.4.1.41":"AES256-ECB","2.16.840.1.101.3.4.1.42":"AES256-CBC","2.16.840.1.101.3.4.1.43":"AES256-OFB","2.16.840.1.101.3.4.1.44":"AES256-CFB","2.16.840.1.101.3.4.1.45":"AES256-wrap","2.16.840.1.101.3.4.1.46":"AES256-GCM","2.16.840.1.101.3.4.1.47":"AES256-CCM","2.16.840.1.101.3.4.1.48":"AES256-wrap-pad","2.16.840.1.101.3.4.2":"Hash Algos","2.16.840.1.101.3.4.2.1":"SHA-256","2.16.840.1.101.3.4.2.2":"SHA-384","2.16.840.1.101.3.4.2.3":"SHA-512","2.16.840.1.101.3.4.2.4":"SHA-224","2.16.840.1.101.3.4.3.1":"DSA with Sha224","2.16.840.1.101.3.4.3.2":"DSA with Sha256","2.16.840.1.113719.1.2.8":"Novell Algorithm","2.16.840.1.113719.1.2.8.22":"DES Cbc IV8","2.16.840.1.113719.1.2.8.23":"DES Cbc Pad IV8","2.16.840.1.113719.1.2.8.24":"DES EDE2 Cbc IV8","2.16.840.1.113719.1.2.8.25":"DES EDE2 Cbc Pad IV8","2.16.840.1.113719.1.2.8.26":"DES EDE3 Cbc IV8","2.16.840.1.113719.1.2.8.27":"DES EDE3 Cbc Pad IV8","2.16.840.1.113719.1.2.8.28":"Rc5 Cbc Pad","2.16.840.1.113719.1.2.8.29":"MD2 with RSA Encryption B Safe1","2.16.840.1.113719.1.2.8.30":"MD5 with RSA Encryption B Safe1","2.16.840.1.113719.1.2.8.31":"SHA1 with RSA Encryption B Safe1","2.16.840.1.113719.1.2.8.32":"Lm Digest","2.16.840.1.113719.1.2.8.40":"MD2","2.16.840.1.113719.1.2.8.50":"MD5","2.16.840.1.113719.1.2.8.51":"Ike Hmac with SHA1-RSA","2.16.840.1.113719.1.2.8.52":"Ike Hmac with MD5-RSA","2.16.840.1.113719.1.2.8.69":"RC2 Cbc Pad","2.16.840.1.113719.1.2.8.82":"SHA-1","2.16.840.1.113719.1.2.8.92":"RC2 B Safe1 Cbc","2.16.840.1.113719.1.2.8.95":"MD4","2.16.840.1.113719.1.2.8.130":"MD4 Packet","2.16.840.1.113719.1.2.8.131":"RSA Encryption Bsafe1","2.16.840.1.113719.1.2.8.132":"Nw Password","2.16.840.1.113719.1.2.8.133":"Novell Obfuscate-1","2.16.840.1.113719.1.9":"PKI","2.16.840.1.113719.1.9.4":"PKI Attribute Type","2.16.840.1.113719.1.9.4.1":"Security Attributes","2.16.840.1.113719.1.9.4.2":"Reliance Limit","2.16.840.1.113730.1":"Certificate Extension","2.16.840.1.113730.1.1":"Netscape Certificate Type","2.16.840.1.113730.1.2":"Netscape Base Url","2.16.840.1.113730.1.3":"Netscape Revocation Url","2.16.840.1.113730.1.4":"Netscape CA Revocation","2.16.840.1.113730.1.7":"Netscape Certificate Renewal","2.16.840.1.113730.1.8":"Netscape CA Policy","2.16.840.1.113730.1.9":"Home Page Url","2.16.840.1.113730.1.10":"Entity Logo","2.16.840.1.113730.1.11":"User Picture","2.16.840.1.113730.1.12":"Netscape Ssl Server","2.16.840.1.113730.1.13":"Netscape Comment","2.16.840.1.113730.2":"Data-type","2.16.840.1.113730.2.1":"Data GIF","2.16.840.1.113730.2.2":"Data JPEG","2.16.840.1.113730.2.3":"Data URL","2.16.840.1.113730.2.4":"Data HTML","2.16.840.1.113730.2.5":"Cert Sequence","2.16.840.1.113730.2.6":"Cert URL","2.16.840.1.113730.3":"Directory","2.16.840.1.113730.3.1":"Ldap Definitions","2.16.840.1.113730.3.1.1":"Car License","2.16.840.1.113730.3.1.2":"Department Number","2.16.840.1.113730.3.1.3":"Employee Number","2.16.840.1.113730.3.1.4":"Employee Type","2.16.840.1.113730.3.2.2":"Inet Org Person","2.16.840.1.113730.4.1":"Server Gated Crypto","2.16.840.1.113733.1":"PKI","2.16.840.1.113733.1.6.3":"Verisign CZAG","2.16.840.1.113733.1.6.6":"Verisign In Box","2.16.840.1.113733.1.6.11":"Verisign Onsite Jurisdiction Hash","2.16.840.1.113733.1.6.13":"Unknown Verisign VPN extension","2.16.840.1.113733.1.6.15":"Verisign Server ID","2.16.840.1.113733.1.7.1.1":"Verisign Cert Policies95 Qualifier1","2.16.840.1.113733.1.7.1.1.1":"Verisign CP Sv1notice","2.16.840.1.113733.1.7.1.1.2":"Verisign CP Sv1nsi","2.16.840.1.113733.1.7.54":"Symantec","2.16.840.1.113733.1.7.23.6":"Veri Sign EV policy","2.16.840.1.113733.1.7.48.1":"Thawte EV policy","2.16.840.1.113733.1.8.1":"erisign ISS Strong Crypto","2.16.840.1.113733.1.9":"PKCS7 Attribute","2.16.840.1.113733.1.9.2":"Message Type","2.16.840.1.113733.1.9.3":"PKI Status","2.16.840.1.113733.1.9.4":"Fail Info","2.16.840.1.113733.1.9.5":"Sender Nonce","2.16.840.1.113733.1.9.6":"Recipient Nonce","2.16.840.1.113733.1.9.7":"Trans ID","2.16.840.1.113733.1.9.8":"Extension Req","2.16.840.1.113741.2":"Intel CDSA","2.16.840.1.114028.10.1.2":"Entrust EV policy","2.16.840.1.114171.500.9":"Wells Fargo EV policy","2.16.840.1.114404.1.1.2.4.1":"Trust Wave EV policy","2.16.840.1.114412.1":"Digi Cert Non EV Certs","2.16.840.1.114412.1.1":"Digi Cert OV Cert","2.16.840.1.114412.1.2":"Digi Cert DV Cert","2.16.840.1.114412.1.3.0.1":"Digi Cert Global CA Policy","2.16.840.1.114412.1.3.0.2":"Digi Cert High Assurance EVCA Policy","2.16.840.1.114412.1.3.0.3":"Digi Cert Global Root CA Policy","2.16.840.1.114412.1.3.0.4":"Digi Cert Assured ID Root CA Policy","2.16.840.1.114412.1.11":"Digi Cert Federated Device Cert","2.16.840.1.114412.2.1":"Digi Cert EV policy","2.16.840.1.114412.2.2":"Digi Cert EV Cert","2.23.140.1.1":"EV guidelines certificate policy","2.16.840.1.114412.2.3":"Digi Cert Object Signing Cert","2.16.840.1.114412.2.3.1":"Digi Cert Code Signing Cert","2.16.840.1.114412.2.3.2":"Digi Cert EV Code Signing Cert","2.16.840.1.114412.2.3.11":"Digi Cert Kernel Code Signing Cert","2.16.840.1.114412.2.3.21":"Digi Cert Document Signing Cert","2.16.840.1.114412.2.4":"Digi Cert Client Cert","2.16.840.1.114412.2.4.1.1":"Digi Cert Level1 Personal Client Cert","2.16.840.1.114412.2.4.1.2":"Digi Cert Level1 Enterprise Client Cert","2.16.840.1.114412.2.4.2":"Digi Cert Level2 Client Cert","2.16.840.1.114412.2.4.3.1":"Digi Cert Level3 US Client Cert","2.16.840.1.114412.2.4.3.2":"Digi Cert Level3 CBP Client Cert","2.16.840.1.114412.2.4.4.1":"Digi Cert Level4 US Client Cert","2.16.840.1.114412.2.4.4.2":"Digi Cert Level4 CBP Client Cert","2.16.840.1.114412.2.4.5.1":"Digi Cert PIV Hardware Cert","2.16.840.1.114412.2.4.5.2":"Digi Cert PIV Card Auth Cert","2.16.840.1.114412.2.4.5.3":"Digi Cert PIV Content Signing Cert","2.16.840.1.114412.4.31":"Digi Cert Grid Classic Cert","2.16.840.1.114412.4.31.5":"Digi Cert Grid Integrated Cert","2.16.840.1.114412.31.4.31.1":"Digi Cert Grid Host Cert","2.16.840.1.114413.1.7.23.3":"Go Daddy EV policy","2.16.840.1.114414.1.7.23.3":"Starfield EV policy","2.16.840.1.114569.1.1.3":"SHAKEN/STIR Certificate Policy v1.3","2.23.42.0":"Content Type","2.23.42.0.0":"Pan Data","2.23.42.0.1":"Pan Token","2.23.42.0.2":"Pan Only","2.23.42.1":"Msg Ext","2.23.42.2":"Field","2.23.42.2.0":"Full Name","2.23.42.2.1":"Given Name","2.23.42.2.2":"Family Name","2.23.42.2.3":"Birth Family Name","2.23.42.2.4":"Place Name","2.23.42.2.5":"Identification Number","2.23.42.2.6":"Month","2.23.42.2.7":"Date","2.23.42.2.8":"Address","2.23.42.2.9":"Telephone","2.23.42.2.10":"Amount","2.23.42.2.11":"Account Number","2.23.42.2.12":"Pass Phrase","2.23.42.3":"Attribute","2.23.42.3.0":"Cert","2.23.42.3.0.0":"Root Key Thumb","2.23.42.3.0.1":"Additional Policy","2.23.42.4":"Algorithm","2.23.42.5":"Policy","2.23.42.5.0":"Root","2.23.42.6":"Module","2.23.42.7":"Cert Ext","2.23.42.7.0":"Hashed Root Key","2.23.42.7.1":"Certificate Type","2.23.42.7.2":"Merchant Data","2.23.42.7.3":"Card Cert Required","2.23.42.7.4":"Tunneling","2.23.42.7.5":"Set Extensions","2.23.42.7.6":"Set Qualifier","2.23.42.8":"Brand","2.23.42.8.1":"IATA-ATA","2.23.42.8.4":" ISA","2.23.42.8.5":"Master Card","2.23.42.8.30":"Diners","2.23.42.8.34":"American Express","2.23.42.8.6011":"Novus","2.23.42.9":"Vendor","2.23.42.9.0":"Globe Set","2.23.42.9.1":"IBM","2.23.42.9.2":"Cyber Cash","2.23.42.9.3":"Terisa","2.23.42.9.4":"RSADSI","2.23.42.9.5":"Veri Fone","2.23.42.9.6":"Trin Tech","2.23.42.9.7":"Bank Gate","2.23.42.9.8":"GTE","2.23.42.9.9":"Compu Source","2.23.42.9.10":"Griffin","2.23.42.9.11":"Certicom","2.23.42.9.12":"OSS","2.23.42.9.13":"Tenth Mountain","2.23.42.9.14":"Antares","2.23.42.9.15":"ECC","2.23.42.9.16":"Maithean","2.23.42.9.17":"Netscape","2.23.42.9.18":"erisign","2.23.42.9.19":"Blue Money","2.23.42.9.20":"Lacerte","2.23.42.9.21":"Fujitsu","2.23.42.9.22":"E Lab","2.23.42.9.23":"Entrust","2.23.42.9.24":"VI Anet","2.23.42.9.25":"III","2.23.42.9.26":"Open Market","2.23.42.9.27":"Lexem","2.23.42.9.28":"Intertrader","2.23.42.9.29":"Persimmon","2.23.42.9.30":"NABLE","2.23.42.9.31":"Espace-net","2.23.42.9.32":"Hitachi","2.23.42.9.33":"Microsoft","2.23.42.9.34":"NEC","2.23.42.9.35":"Mitsubishi","2.23.42.9.36":"NCR","2.23.42.9.37":"E-COMM","2.23.42.9.38":"Gemplus","2.23.42.10":"National","2.23.42.10.392":"Japan","2.23.43.1.4":"WTLS-ECC","2.23.43.1.4.1":"WTLS-ECC-curve1","2.23.43.1.4.6":"WTLS-ECC-curve6","2.23.43.1.4.8":"WTLS-ECC-curve8","2.23.43.1.4.9":"WTLS-ECC-curve9","2.23.133":"TCPA","2.23.133.1":"TCPA Spec Version","2.23.133.2":"TCPA Attribute","2.23.133.2.1":"TCPA Tpm Manufacturer","2.23.133.2.2":"TCPA Tpm Model","2.23.133.2.3":"TCPA Tpm Version","2.23.133.2.4":"TCPA Platform Manufacturer","2.23.133.2.5":"TCPA Platform Model","2.23.133.2.6":"TCPA Platform Version","2.23.133.2.7":"TCPA Component Manufacturer","2.23.133.2.8":"TCPA Component Model","2.23.133.2.9":"TCPA Component Version","2.23.133.2.10":"TCPA Security Qualities","2.23.133.2.11":"TCPA Tpm Protection Profile","2.23.133.2.12":"TCPA Tpm Security Target","2.23.133.2.13":"TCPA Foundation Protection Profile","2.23.133.2.14":"TCPA Foundation Security Target","2.23.133.2.15":"TCPA Tpm Id Label","2.23.133.3":"TCPA Protocol","2.23.133.3.1":"TCPA Prtt Tpm Id Protocol","2.23.134.1.2.1.8.210":"Post Signum Commercial Server Policy","2.23.134.1.2.2.3":"Post Signum Public CA","2.23.134.1.4.2.1":"Post Signum Root QCA","2.23.136.1.1.1":"MRTD Signature Data","2.54.1775.2":"Hashed Root Key","2.54.1775.3":"Certificate Type","2.54.1775.4":"Merchant Data","2.54.1775.5":"Card Cert Required","2.54.1775.6":"Tunneling","2.54.1775.7":"Set Qualifier","2.54.1775.99":"Set Data","1.3.6.1.4.1.11129.2.4.3":"CT Pre-Certificate Poison","2.23.140.1.2.2":"CA/B Forum Organization Validated","2.23.140.1.2.1":"CA/B Forum Domain Validated","1.3.6.1.4.1.44947.1.1.1":"Let's Encrypt","1.3.6.1.4.1.4329.7.2.4":"SslTlsCerts","1.3.6.1.4.1.4329.7":"Siemens Public Key Infrastructure","1.3.6.1.4.1.52266.1":"Legal Entity Identifier","1.3.6.1.4.1.52266.2":"Role","0.4.0.9496.1":"Domain Name Beneficiary","0.4.0.9496.2":"DNB Legal representative","0.4.0.9496.3":"Domain Name Owner","0.4.0.9496.4":"Domain Name Technical Operator","0.4.0.9496.5":"Type of relationship between DNB/DNO/DNT","0.4.0.9496.6":"DNB Main Activity Description","0.4.0.9496.7":"GDPR compliance attestation reference","0.4.0.9496.8":"Insurance coverage attestation","0.4.0.9496.9":"Valuation ranking"};
56
+ const kr={"2.5.4.3":"CN","2.5.4.6":"C","0.9.2342.19200300.100.1.25":"DC","1.2.840.113549.1.9.1":"E","2.5.4.42":"G","2.5.4.43":"I","2.5.4.7":"L","2.5.4.10":"O","2.5.4.11":"OU","2.5.4.8":"ST","2.5.4.4":"SN","2.5.4.12":"T","2.5.4.15":"businessCategory","1.3.6.1.4.1.311.60.2.1.3":"jurisdictionCountry","2.5.4.5":"serialNumber","2.5.4.97":"OI"},Mr={"0.2.262.1.10":"Telesec","0.2.262.1.10.0":"Extension","0.2.262.1.10.1":"Mechanism","0.2.262.1.10.1.0":"Authentication","0.2.262.1.10.1.0.1":"Password Authentication","0.2.262.1.10.1.0.2":"Protected Password Authentication","0.2.262.1.10.1.0.3":"One Way x509 Authentication","0.2.262.1.10.1.0.4":"Two Way x509 Authentication","0.2.262.1.10.1.0.5":"Three Way x509 Authentication","0.2.262.1.10.1.0.6":"One Way IS O9798 Authentication","0.2.262.1.10.1.0.7":"Two Way IS O9798 Authentication","0.2.262.1.10.1.0.8":"Telekom Authentication","0.2.262.1.10.1.1":"Signature","0.2.262.1.10.1.1.1":"MD4 with RSA And IS O9697","0.2.262.1.10.1.1.2":"MD4 with RSA And Telesec Signature Standard","0.2.262.1.10.1.1.3":"MD5 with RSA And IS O9697","0.2.262.1.10.1.1.4":"MD5 with RSA And Telesec Signature Standard","0.2.262.1.10.1.1.5":"Ripemd160 with RSA And Telekom Signature Standard","0.2.262.1.10.1.1.9":"HBCI RSA Signature","0.2.262.1.10.1.2":"Encryption","0.2.262.1.10.1.2.0":"None","0.2.262.1.10.1.2.1":"RSA Telesec","0.2.262.1.10.1.2.2":"DES","0.2.262.1.10.1.2.2.1":"DES ECB","0.2.262.1.10.1.2.2.2":"DES CBC","0.2.262.1.10.1.2.2.3":"DES OFB","0.2.262.1.10.1.2.2.4":"DES CFB8","0.2.262.1.10.1.2.2.5":"DES CFB64","0.2.262.1.10.1.2.3":"DES3","0.2.262.1.10.1.2.3.1":"DES3 ECB","0.2.262.1.10.1.2.3.2":"DES3 CBC","0.2.262.1.10.1.2.3.3":"DES3 OFB","0.2.262.1.10.1.2.3.4":"DES3 CFB8","0.2.262.1.10.1.2.3.5":"DES3 CFB64","0.2.262.1.10.1.2.4":"Magenta","0.2.262.1.10.1.2.5":"Idea","0.2.262.1.10.1.2.5.1":"Idea ECB","0.2.262.1.10.1.2.5.2":"Idea CBC","0.2.262.1.10.1.2.5.3":"Idea OFB","0.2.262.1.10.1.2.5.4":"Idea CFB8","0.2.262.1.10.1.2.5.5":"Idea CFB64","0.2.262.1.10.1.3":"One Way Function","0.2.262.1.10.1.3.1":"MD4","0.2.262.1.10.1.3.2":"MD5","0.2.262.1.10.1.3.3":"SQ ModNx509","0.2.262.1.10.1.3.4":"SQ ModNISO","0.2.262.1.10.1.3.5":"Ripemd128","0.2.262.1.10.1.3.6":"Hash Using Block Cipher","0.2.262.1.10.1.3.7":"Mac","0.2.262.1.10.1.3.8":"Ripemd160","0.2.262.1.10.1.4":"Fec Function","0.2.262.1.10.1.4.1":"Reed Solomon","0.2.262.1.10.2":"Module","0.2.262.1.10.2.0":"Algorithms","0.2.262.1.10.2.1":"Attribute Types","0.2.262.1.10.2.2":"Certificate Types","0.2.262.1.10.2.3":"Message Types","0.2.262.1.10.2.4":"Pl Protocol","0.2.262.1.10.2.5":"Sme And Components Of Sme","0.2.262.1.10.2.6":"Fec","0.2.262.1.10.2.7":"Useful Definitions","0.2.262.1.10.2.8":"Stefiles","0.2.262.1.10.2.9":"Sadmib","0.2.262.1.10.2.10":"Electronic Order","0.2.262.1.10.2.11":"Telesec Ttp Asymmetric Application","0.2.262.1.10.2.12":"Telesec Ttp Basis Application","0.2.262.1.10.2.13":"Telesec Ttp Messages","0.2.262.1.10.2.14":"Telesec Ttp Time Stamp Application","0.2.262.1.10.3":"Object Class","0.2.262.1.10.3.0":"Telesec Other Name","0.2.262.1.10.3.1":"Directory","0.2.262.1.10.3.2":"Directory Type","0.2.262.1.10.3.3":"Directory Group","0.2.262.1.10.3.4":"Directory User","0.2.262.1.10.3.5":"Symmetric Key Entry","0.2.262.1.10.4":"Package","0.2.262.1.10.5":"Parameter","0.2.262.1.10.6":"Name Binding","0.2.262.1.10.7":"Attribute","0.2.262.1.10.7.0":"Application Group Identifier","0.2.262.1.10.7.1":"Certificate Type","0.2.262.1.10.7.2":"Telesec Certificate","0.2.262.1.10.7.3":"Certificate Number","0.2.262.1.10.7.4":"Certificate Revocation List","0.2.262.1.10.7.5":"Creation Date","0.2.262.1.10.7.6":"Issuer","0.2.262.1.10.7.7":"Naming Authority","0.2.262.1.10.7.8":"Public Key Directory","0.2.262.1.10.7.9":"Security Domain","0.2.262.1.10.7.10":"Subject","0.2.262.1.10.7.11":"Time Of Revocation","0.2.262.1.10.7.12":"User Group Reference","0.2.262.1.10.7.13":"alidity","0.2.262.1.10.7.14":"Zert93","0.2.262.1.10.7.15":"Security Mess Env","0.2.262.1.10.7.16":"Anonymized Public Key Directory","0.2.262.1.10.7.17":"Telesec Given Name","0.2.262.1.10.7.18":"Name Additions","0.2.262.1.10.7.19":"Telesec Postal Code","0.2.262.1.10.7.20":"Name Distinguisher","0.2.262.1.10.7.21":"Telesec Certificate List","0.2.262.1.10.7.22":"Teletrust Certificate List","0.2.262.1.10.7.23":"x509 Certificate List","0.2.262.1.10.7.24":"Time Of Issue","0.2.262.1.10.7.25":"Physical Card Number","0.2.262.1.10.7.26":"File Type","0.2.262.1.10.7.27":"Ctl File Is Archive","0.2.262.1.10.7.28":"Email Address","0.2.262.1.10.7.29":"Certificate Template List","0.2.262.1.10.7.30":"Directory Name","0.2.262.1.10.7.31":"Directory Type Name","0.2.262.1.10.7.32":"Directory Group Name","0.2.262.1.10.7.33":"Directory User Name","0.2.262.1.10.7.34":"Revocation Flag","0.2.262.1.10.7.35":"Symmetric Key Entry Name","0.2.262.1.10.7.36":"Gl Number","0.2.262.1.10.7.37":"Go Number","0.2.262.1.10.7.38":"G Key Data","0.2.262.1.10.7.39":"Z Key Data","0.2.262.1.10.7.40":"Kt Key Data","0.2.262.1.10.7.41":"Kt Key Number","0.2.262.1.10.7.51":"Time Of Revocation Gen","0.2.262.1.10.7.52":"Liability Text","0.2.262.1.10.8":"Attribute Group","0.2.262.1.10.9":"Action","0.2.262.1.10.10":"Notification","0.2.262.1.10.11":"Snmp-mibs","0.2.262.1.10.11.1":"Security Application","0.2.262.1.10.12":"Cert And Crl Extension Definitions","0.2.262.1.10.12.0":"Liability Limitation Flag","0.2.262.1.10.12.1":"Telesec Cert Id Ext","0.2.262.1.10.12.2":"Telesec policy Identifier","0.2.262.1.10.12.3":"Telesec Policy Qualifier I D","0.2.262.1.10.12.4":"Telesec CRL Filtered Ext","0.2.262.1.10.12.5":"Telesec CRL Filter Ext","0.2.262.1.10.12.6":"Telesec Naming Authority Ext","0.4.0.127.0.7":"Bsi","0.4.0.127.0.7.1":"Bsi Ecc","0.4.0.127.0.7.1.1":"Bsifield Type","0.4.0.127.0.7.1.1.1":"Bsi Prime Field","0.4.0.127.0.7.1.1.2":"Bsi Characteristic Two Field","0.4.0.127.0.7.1.1.2.2":"Bsi ECTLV Key Format","0.4.0.127.0.7.1.1.2.2.1":"Bsi ECTLV Public Key","0.4.0.127.0.7.1.1.2.3":"Bsi Characteristic Two Basis","0.4.0.127.0.7.1.1.2.3.1":"Bsi Gn Basis","0.4.0.127.0.7.1.1.2.3.2":"Bsi Tp Basis","0.4.0.127.0.7.1.1.2.3.3":"Bsi Pp Basis","0.4.0.127.0.7.1.1.4.1":"Bsi Ecdsa Signatures","0.4.0.127.0.7.1.1.4.1.1":"Bsi Ecdsa with SHA1","0.4.0.127.0.7.1.1.4.1.2":"Bsi Ecdsa with SHA224","0.4.0.127.0.7.1.1.4.1.3":"Bsi Ecdsa with SHA256","0.4.0.127.0.7.1.1.4.1.4":"Bsi Ecdsa with SHA384","0.4.0.127.0.7.1.1.4.1.5":"Bsi Ecdsa with SHA512","0.4.0.127.0.7.1.1.4.1.6":"Bsi Ecdsa with RIPEMD160","0.4.0.127.0.7.1.1.5.1.1":"Bsi Ecka Eg x963KDF","0.4.0.127.0.7.1.1.5.1.1.1":"Bsi Ecka Eg x963KDF with SHA1","0.4.0.127.0.7.1.1.5.1.1.2":"Bsi Ecka Eg x963KDF with SHA224","0.4.0.127.0.7.1.1.5.1.1.3":"Bsi Ecka Eg x963KDF with SHA256","0.4.0.127.0.7.1.1.5.1.1.4":"Bsi Ecka Eg x963KDF with SHA384","0.4.0.127.0.7.1.1.5.1.1.5":"Bsi Ecka Eg x963KDF with SHA512","0.4.0.127.0.7.1.1.5.1.1.6":"Bsi Ecka Eg x963KDF with RIPEMD160","0.4.0.127.0.7.1.1.5.1.2":"Bsi Ecka Eg Session KDF","0.4.0.127.0.7.1.1.5.1.2.1":"Bsi Ecka Eg Session KDF With3DES","0.4.0.127.0.7.1.1.5.1.2.2":"Bsi Ecka Eg Session KDF with AES128","0.4.0.127.0.7.1.1.5.1.2.3":"Bsi Ecka Eg Session KDF with AES192","0.4.0.127.0.7.1.1.5.1.2.4":"Bsi Ecka Eg Session KDF with AES256","0.4.0.127.0.7.1.1.5.2":"Bsi Ecka DH","0.4.0.127.0.7.1.1.5.2.1":"Bsi Ecka DH x963KDF","0.4.0.127.0.7.1.1.5.2.1.1":"Bsi Ecka DHx963KDF with SHA1","0.4.0.127.0.7.1.1.5.2.1.2":"Bsi Ecka DHx963KDF with SHA224","0.4.0.127.0.7.1.1.5.2.1.3":"Bsi Ecka DHx963KDF with SHA256","0.4.0.127.0.7.1.1.5.2.1.4":"Bsi Ecka DHx963KDF with SHA384","0.4.0.127.0.7.1.1.5.2.1.5":"Bsi Ecka DHx963KDF with SHA512","0.4.0.127.0.7.1.1.5.2.1.6":"Bsi Ecka DHx963KDF with RIPEMD160","0.4.0.127.0.7.1.1.5.2.2":"Bsi Ecka DHSessionKDF","0.4.0.127.0.7.1.1.5.2.2.1":"Bsi Ecka DH Session KDF With3 DES","0.4.0.127.0.7.1.1.5.2.2.2":"Bsi Ecka DH Session KDF with AES128","0.4.0.127.0.7.1.1.5.2.2.3":"Bsi Ecka DH Session KDF with AES192","0.4.0.127.0.7.1.1.5.2.2.4":"Bsi Ecka DH Session KDF with AES256","0.4.0.127.0.7.1.2":"Bsi Ec Key Type","0.4.0.127.0.7.1.2.1":"Bsi Ec Public Key","0.4.0.127.0.7.1.5.1":"Bsi Kaeg","0.4.0.127.0.7.1.5.1.1":"Bsi Kaeg with x963KDF","0.4.0.127.0.7.1.5.1.2":"Bsi Kaeg with 3DESKDF","0.4.0.127.0.7.2.2.1":"Bsi PK","0.4.0.127.0.7.2.2.1.1":"Bsi PK_DH","0.4.0.127.0.7.2.2.1.2":"Bsi PK_ECDH","0.4.0.127.0.7.2.2.2":"Bsi TA","0.4.0.127.0.7.2.2.2.1":"Bsi TA_RSA","0.4.0.127.0.7.2.2.2.1.1":"Bsi TA_RSAv1_5_SHA1","0.4.0.127.0.7.2.2.2.1.2":"Bsi TA_RSAv1_5_SHA256","0.4.0.127.0.7.2.2.2.1.3":"Bsi TA_RSAPSS_SHA1","0.4.0.127.0.7.2.2.2.1.4":"Bsi TA_RSAPSS_SHA256","0.4.0.127.0.7.2.2.2.1.5":"Bsi TA_RSAv1_5_SHA512","0.4.0.127.0.7.2.2.2.1.6":"Bsi TA_RSAPSS_SHA512","0.4.0.127.0.7.2.2.2.2":"Bsi TA_ECDSA","0.4.0.127.0.7.2.2.2.2.1":"Bsi TA_ECDSA_SHA1","0.4.0.127.0.7.2.2.2.2.2":"Bsi TA_ECDSA_SHA224","0.4.0.127.0.7.2.2.2.2.3":"Bsi TA_ECDSA_SHA256","0.4.0.127.0.7.2.2.2.2.4":"Bsi TA_ECDSA_SHA384","0.4.0.127.0.7.2.2.2.2.5":"Bsi TA_ECDSA_SHA512","0.4.0.127.0.7.2.2.3":"Bsi CA","0.4.0.127.0.7.2.2.3.1":"Bsi CA_DH","0.4.0.127.0.7.2.2.3.1.1":"Bsi CA_DH_3DES_CBC_CBC","0.4.0.127.0.7.2.2.3.1.2":"Bsi CA_DH_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.3.1.3":"Bsi CA_DH_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.3.1.4":"Bsi CA_DH_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.3.2":"Bsi CA_ECDH","0.4.0.127.0.7.2.2.3.2.1":"Bsi CA_ECDH_3DES_CBC_CBC","0.4.0.127.0.7.2.2.3.2.2":"Bsi CA_ECDH_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.3.2.3":"Bsi CA_ECDH_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.3.2.4":"Bsi CA_ECDH_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.4":"Bsi PACE","0.4.0.127.0.7.2.2.4.1":"Bsi PACE_DH_GM","0.4.0.127.0.7.2.2.4.1.1":"Bsi PACE_DH_GM_3DES_CBC_CBC","0.4.0.127.0.7.2.2.4.1.2":"Bsi PACE_DH_GM_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.4.1.3":"Bsi PACE_DH_GM_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.4.1.4":"Bsi PACE_DH_GM_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.4.2":"Bsi PACE_ECDH_GM","0.4.0.127.0.7.2.2.4.2.1":"Bsi PACE_ECDH_GM_3DES_CBC_CBC","0.4.0.127.0.7.2.2.4.2.2":"Bsi PACE_ECDH_GM_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.4.2.3":"Bsi PACE_ECDH_GM_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.4.2.4":"Bsi PACE_ECDH_GM_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.4.3":"Bsi PACE_DH_IM","0.4.0.127.0.7.2.2.4.3.1":"Bsi PACE_DH_IM_3DES_CBC_CBC","0.4.0.127.0.7.2.2.4.3.2":"Bsi PACE_DH_IM_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.4.3.3":"Bsi PACE_DH_IM_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.4.3.4":"Bsi PACE_DH_IM_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.4.4":"Bsi PACE_ECDH_IM","0.4.0.127.0.7.2.2.4.4.1":"Bsi PACE_ECDH_IM_3DES_CBC_CBC","0.4.0.127.0.7.2.2.4.4.2":"Bsi PACE_ECDH_IM_AES_CBC_CMAC_128","0.4.0.127.0.7.2.2.4.4.3":"Bsi PACE_ECDH_IM_AES_CBC_CMAC_192","0.4.0.127.0.7.2.2.4.4.4":"Bsi PACE_ECDH_IM_AES_CBC_CMAC_256","0.4.0.127.0.7.2.2.5":"Bsi RI","0.4.0.127.0.7.2.2.5.1":"Bsi RI_DH","0.4.0.127.0.7.2.2.5.1.1":"Bsi RI_DH_SHA1","0.4.0.127.0.7.2.2.5.1.2":"Bsi RI_DH_SHA224","0.4.0.127.0.7.2.2.5.1.3":"Bsi RI_DH_SHA256","0.4.0.127.0.7.2.2.5.1.4":"Bsi RI_DH_SHA384","0.4.0.127.0.7.2.2.5.1.5":"Bsi RI_DH_SHA512","0.4.0.127.0.7.2.2.5.2":"Bsi RI_ECDH","0.4.0.127.0.7.2.2.5.2.1":"Bsi RI_ECDH_SHA1","0.4.0.127.0.7.2.2.5.2.2":"Bsi RI_ECDH_SHA224","0.4.0.127.0.7.2.2.5.2.3":"Bsi RI_ECDH_SHA256","0.4.0.127.0.7.2.2.5.2.4":"Bsi RI_ECDH_SHA384","0.4.0.127.0.7.2.2.5.2.5":"Bsi RI_ECDH_SHA512","0.4.0.127.0.7.2.2.6":"Bsi Card Info","0.4.0.127.0.7.2.2.7":"Bsi Eid Security","0.4.0.127.0.7.2.2.8":"Bsi PT","0.4.0.127.0.7.3.1.2":"Bsi EAC Roles","0.4.0.127.0.7.3.1.2.1":"Bsi EAC Roles IS","0.4.0.127.0.7.3.1.2.2":"Bsi EAC Roles AT","0.4.0.127.0.7.3.1.2.3":"Bsi EAC Roles ST","0.4.0.127.0.7.3.1.3":"Bsi TAv2ce","0.4.0.127.0.7.3.1.3.1":"Bsi TAv2ce Description","0.4.0.127.0.7.3.1.3.1.1":"Bsi TAv2ce Description Plain Text","0.4.0.127.0.7.3.1.3.1.2":"Bsi TAv2ce Description IA5 String","0.4.0.127.0.7.3.1.3.1.3":"Bsi TAv2ce Description Octet String","0.4.0.127.0.7.3.1.3.2":"Bsi TAv2ce Terminal Sector","0.4.0.127.0.7.3.1.4":"Bsi Aux Data","0.4.0.127.0.7.3.1.4.1":"Bsi Aux Data Birthday","0.4.0.127.0.7.3.1.4.2":"Bsi Aux Data Expire Date","0.4.0.127.0.7.3.1.4.3":"Bsi Aux Data Community ID","0.4.0.127.0.7.3.1.5":"Bsi Defect List","0.4.0.127.0.7.3.1.5.1":"Bsi Defect Auth Defect","0.4.0.127.0.7.3.1.5.1.1":"Bsi Defect Cert Revoked","0.4.0.127.0.7.3.1.5.1.2":"Bsi Defect Cert Replaced","0.4.0.127.0.7.3.1.5.1.3":"Bsi Defect Chip Auth Key Revoked","0.4.0.127.0.7.3.1.5.1.4":"Bsi Defect Active Auth Key Revoked","0.4.0.127.0.7.3.1.5.2":"Bsi Defect EPassport Defect","0.4.0.127.0.7.3.1.5.2.1":"Bsi Defect EPassport DG Malformed","0.4.0.127.0.7.3.1.5.2.2":"Bsi Defect SOD Invalid","0.4.0.127.0.7.3.1.5.3":"Bsi Defect EID Defect","0.4.0.127.0.7.3.1.5.3.1":"Bsi Defect EIDDG Malformed","0.4.0.127.0.7.3.1.5.3.2":"Bsi Defect EID Integrity","0.4.0.127.0.7.3.1.5.4":"Bsi Defect Document Defect","0.4.0.127.0.7.3.1.5.4.1":"Bsi Defect Card Security Malformed","0.4.0.127.0.7.3.1.5.4.2":"Bsi Defect Chip Security Malformed","0.4.0.127.0.7.3.1.5.4.3":"Bsi Defect Power Down Req","0.4.0.127.0.7.3.1.6":"Bsi List Content Description","0.4.0.127.0.7.3.2.1":"Bsi Security Object","0.4.0.127.0.7.3.2.2":"Bsi Black List","0.4.0.1862":"Etsi Qcs Profile","0.4.0.1862.1":"Etsi Qcs","0.4.0.1862.1.1":"Etsi Qcs Compliance","0.4.0.1862.1.2":"Etsi Qcs Limit Value","0.4.0.1862.1.3":"Etsi Qcs Retention Period","0.4.0.1862.1.4":"Etsi Qcs SSCD","0.4.0.1862.1.5":"Etsi Qcs PDS","0.4.0.1862.1.6":"Etsi QcType","0.4.0.1862.1.6.1":"Etsi QcType eSign","0.4.0.1862.1.6.2":"Etsi QcType eSeal","0.4.0.1862.1.6.3":"Etsi QcType Web","0.4.0.194112.1.0":"QCP Natural Person","0.4.0.194112.1.1":"QCP Legal Person","0.4.0.194112.1.2":"QCP Natural QSCD","0.4.0.194112.1.3":"QCP Legal QSCD","0.4.0.194112.1.4":"QCP Web","0.9.2342.19200300.100.1.1":"User ID","0.9.2342.19200300.100.1.3":"Rfc822 Mailbox","0.9.2342.19200300.100.1.25":"Domain Component","1.0.10118.3.0.49":"Ripemd160","1.0.10118.3.0.50":"Ripemd128","1.0.10118.3.0.55":"Whirlpool","1.2.36.1.3.1.1.1":"Qgpki","1.2.36.1.3.1.1.1.1":"Qgpki Policies","1.2.36.1.3.1.1.1.1.1":"Qgpki Med Intermed CA","1.2.36.1.3.1.1.1.1.1.1":"Qgpki Med Intermed Individual","1.2.36.1.3.1.1.1.1.1.2":"Qgpki Med Intermed Device Control","1.2.36.1.3.1.1.1.1.1.3":"Qgpki Med Intermed Device","1.2.36.1.3.1.1.1.1.1.4":"Qgpki Med Intermed Authorised Party","1.2.36.1.3.1.1.1.1.1.5":"Qgpki Med Intermed Device System","1.2.36.1.3.1.1.1.1.2":"Qgpki Med Issuing CA","1.2.36.1.3.1.1.1.1.2.1":"Qgpki Med Issuing Individual","1.2.36.1.3.1.1.1.1.2.2":"Qgpki Med Issuing Device Control","1.2.36.1.3.1.1.1.1.2.3":"Qgpki Med Issuing Device","1.2.36.1.3.1.1.1.1.2.4":"Qgpki Med Issuing Authorised Party","1.2.36.1.3.1.1.1.1.2.5":"Qgpki Med Issuing Client Auth","1.2.36.1.3.1.1.1.1.2.6":"Qgpki Med Issuing Server Auth","1.2.36.1.3.1.1.1.1.2.7":"Qgpki Med Issuing Data Prot","1.2.36.1.3.1.1.1.1.2.8":"Qgpki Med Issuing Token Auth","1.2.36.1.3.1.1.1.1.3":"Qgpki Basic Intermed CA","1.2.36.1.3.1.1.1.1.3.1":"Qgpki Basic Intermed Device System","1.2.36.1.3.1.1.1.1.4":"Qgpki Basic Issuing CA","1.2.36.1.3.1.1.1.1.4.1":"Qgpki Basic Issuing Client Auth","1.2.36.1.3.1.1.1.1.4.2":"Qgpki Basic Issuing Server Auth","1.2.36.1.3.1.1.1.1.4.3":"Qgpki Basic Issuing Data Signing","1.2.36.1.3.1.1.1.2":"Qgpki Assurance Level","1.2.36.1.3.1.1.1.2.1":"Qgpki Assurance Rudimentary","1.2.36.1.3.1.1.1.2.2":"Qgpki Assurance Basic","1.2.36.1.3.1.1.1.2.3":"Qgpki Assurance Medium","1.2.36.1.3.1.1.1.2.4":"Qgpki Assurance High","1.2.36.1.3.1.1.1.3":"Qgpki Cert Function","1.2.36.1.3.1.1.1.3.1":"Qgpki Function Individual","1.2.36.1.3.1.1.1.3.2":"Qgpki Function Device","1.2.36.1.3.1.1.1.3.3":"Qgpki Function Authorised Party","1.2.36.1.3.1.1.1.3.4":"Qgpki Function Device Control","1.2.36.1.3.1.2":"Qpspki","1.2.36.1.3.1.2.1":"Qpspki Policies","1.2.36.1.3.1.2.1.2":"Qpspki Policy Basic","1.2.36.1.3.1.2.1.3":"Qpspki Policy Medium","1.2.36.1.3.1.2.1.4":"Qpspki Policy High","1.2.36.1.3.1.3.2":"Qtmrpki","1.2.36.1.3.1.3.2.1":"Qtmrpki Policies","1.2.36.1.3.1.3.2.2":"Qtmrpki Purpose","1.2.36.1.3.1.3.2.2.1":"Qtmrpki Individual","1.2.36.1.3.1.3.2.2.2":"Qtmrpki Device Control","1.2.36.1.3.1.3.2.2.3":"Qtmrpki Device","1.2.36.1.3.1.3.2.2.4":"Qtmrpki Authorised Party","1.2.36.1.3.1.3.2.2.5":"Qtmrpki Device System","1.2.36.1.3.1.3.2.3":"Qtmrpki Device","1.2.36.1.3.1.3.2.3.1":"Qtmrpki Driver License","1.2.36.1.3.1.3.2.3.2":"Qtmrpki Industry Authority","1.2.36.1.3.1.3.2.3.3":"Qtmrpki Marine License","1.2.36.1.3.1.3.2.3.4":"Qtmrpki Adult Proof Of Age","1.2.36.1.3.1.3.2.3.5":"Qtmrpki Sam","1.2.36.1.3.1.3.2.4":"Qtmrpki Authorised Party","1.2.36.1.3.1.3.2.4.1":"Qtmrpki Transport Inspector","1.2.36.1.3.1.3.2.4.2":"Qtmrpki Police Officer","1.2.36.1.3.1.3.2.4.3":"Qtmrpki System","1.2.36.1.3.1.3.2.4.4":"Qtmrpki Liquor Licensing Inspector","1.2.36.1.3.1.3.2.4.5":"Qtmrpki Marine Enforcement Officer","1.2.36.1.333.1":"Australian Business Number","1.2.36.68980861.1.1.2":"Signet Personal","1.2.36.68980861.1.1.3":"Signet Business","1.2.36.68980861.1.1.4":"Signet Legal","1.2.36.68980861.1.1.10":"Signet Pilot","1.2.36.68980861.1.1.11":"Signet Intra Net","1.2.36.68980861.1.1.20":"Signet Policy","1.2.36.75878867.1.100.1.1":"Certificates Australia Policy","1.2.40.0.17.1.22":"A-Trust EV policy","1.2.392.200011.61.1.1.1":"Mitsubishi Security Algorithm","1.2.392.200011.61.1.1.1.1":"Misty1-cbc","1.2.392.200091.100.721.1":"Security Communication (SECOM) EV policy","1.2.410.200004.1":"Kisa Algorithm","1.2.410.200004.1.1":"Kcdsa","1.2.410.200004.1.2":"Has160","1.2.410.200004.1.3":"Seed ECB","1.2.410.200004.1.4":"Seed CBC","1.2.410.200004.1.5":"Seed OFB","1.2.410.200004.1.6":"Seed CFB","1.2.410.200004.1.7":"Seed MAC","1.2.410.200004.1.8":"Kcdsa with HAS160","1.2.410.200004.1.9":"Kcdsa with SHA1","1.2.410.200004.1.10":"PBE with HAS160 And SEED-ECB","1.2.410.200004.1.11":"PBE with HAS160 And SEED-CBC","1.2.410.200004.1.12":"PBE with HAS160 And SEED-CFB","1.2.410.200004.1.13":"PBE with HAS160 And SEED-OFB","1.2.410.200004.1.14":"PBE with SHA1 And SEED-ECB","1.2.410.200004.1.15":"PBE with SHA1 And SEED-CBC","1.2.410.200004.1.16":"PBE with SHA1 And SEED-CFB","1.2.410.200004.1.17":"PBE with SHA1 And SEED-OFB","1.2.410.200004.1.20":"RSA with HAS160","1.2.410.200004.1.21":"Kcdsa1","1.2.410.200004.2":"Npki CP","1.2.410.200004.2.1":"Npki Signature Policy","1.2.410.200004.3":"Npki KP","1.2.410.200004.4":"Npki AT","1.2.410.200004.5":"Npki LCA","1.2.410.200004.5.1":"Npki Sign Korea","1.2.410.200004.5.2":"Npki Sign Gate","1.2.410.200004.5.3":"Npki Nca Sign","1.2.410.200004.6":"Npki ON","1.2.410.200004.7":"Npki APP","1.2.410.200004.7.1":"Npki SMIME","1.2.410.200004.7.1.1":"Npki SMIME Algo","1.2.410.200004.7.1.1.1":"Npki Cms SEED Wrap","1.2.410.200004.10":"Npki","1.2.410.200004.10.1":"Npki Attribute","1.2.410.200004.10.1.1":"Npki Identify Data","1.2.410.200004.10.1.1.1":"Npki VID","1.2.410.200004.10.1.1.2":"Npki Encrypted VID","1.2.410.200004.10.1.1.3":"Npki Random Num","1.2.410.200004.10.1.1.4":"Npki VID","1.2.410.200046.1.1":"Aria1 Algorithm Modes","1.2.410.200046.1.1.1":"Aria128-ecb","1.2.410.200046.1.1.2":"Aria128-cbc","1.2.410.200046.1.1.3":"Aria128-cfb","1.2.410.200046.1.1.4":"Aria128-ofb","1.2.410.200046.1.1.5":"Aria128-ctr","1.2.410.200046.1.1.6":"Aria192-ecb","1.2.410.200046.1.1.7":"Aria192-cbc","1.2.410.200046.1.1.8":"Aria192-cfb","1.2.410.200046.1.1.9":"Aria192-ofb","1.2.410.200046.1.1.10":"Aria192-ctr","1.2.410.200046.1.1.11":"Aria256-ecb","1.2.410.200046.1.1.12":"Aria256-cbc","1.2.410.200046.1.1.13":"Aria256-cfb","1.2.410.200046.1.1.14":"Aria256-ofb","1.2.410.200046.1.1.15":"Aria256-ctr","1.2.410.200046.1.1.21":"Aria128-cmac","1.2.410.200046.1.1.22":"Aria192-cmac","1.2.410.200046.1.1.23":"Aria256-cmac","1.2.410.200046.1.1.31":"Aria128-ocb2","1.2.410.200046.1.1.32":"Aria192-ocb2","1.2.410.200046.1.1.33":"Aria256-ocb2","1.2.410.200046.1.1.34":"Aria128-gcm","1.2.410.200046.1.1.35":"Aria192-gcm","1.2.410.200046.1.1.36":"Aria256-gcm","1.2.410.200046.1.1.37":"Aria128-ccm","1.2.410.200046.1.1.38":"Aria192-ccm","1.2.410.200046.1.1.39":"Aria256-ccm","1.2.410.200046.1.1.40":"Aria128-keywrap","1.2.410.200046.1.1.41":"Aria192-keywrap","1.2.410.200046.1.1.42":"Aria256-keywrap","1.2.410.200046.1.1.43":"Aria128-keywrap with Pad","1.2.410.200046.1.1.44":"Aria192-keywrap with Pad","1.2.410.200046.1.1.45":"Aria256-keywrap with Pad","1.2.643.2.2.3":"Gost Signature","1.2.643.2.2.4":"Gost94 Signature","1.2.643.2.2.9":"Gost Digest","1.2.643.2.2.10":"Hmac Gost","1.2.643.2.2.13.0":"Gost Wrap","1.2.643.2.2.13.1":"Crypto Pro Wrap","1.2.643.2.2.14.0":"Null Meshing","1.2.643.2.2.14.1":"Crypto Pro Meshing","1.2.643.2.2.19":"Gost Public Key","1.2.643.2.2.20":"Gost94 Public Key","1.2.643.2.2.21":"Gost Cipher","1.2.643.2.2.30.0":"Test Digest Params","1.2.643.2.2.30.1":"Crypto Pro Digest A","1.2.643.2.2.31.0":"Test Cipher Params","1.2.643.2.2.31.1":"Crypto Pro Cipher A","1.2.643.2.2.31.2":"Crypto Pro Cipher B","1.2.643.2.2.31.3":"Crypto Pro Cipher C","1.2.643.2.2.31.4":"Crypto Pro Cipher D","1.2.643.2.2.31.5":"Oscar11 Cipher","1.2.643.2.2.31.6":"Oscar10 Cipher","1.2.643.2.2.31.7":"Ric1 Cipher","1.2.643.2.2.35.0":"Test Sign Params","1.2.643.2.2.35.1":"Crypto Pro Sign A","1.2.643.2.2.35.2":"Crypto Pro Sign B","1.2.643.2.2.35.3":"Crypto Pro Sign C","1.2.643.2.2.36.0":"Crypto Pro Sign XA","1.2.643.2.2.36.1":"Crypto Pro Sign XB","1.2.643.2.2.96":"Crypto Pro ECDH Wrap","1.2.752.34.1":"Seis-cp","1.2.752.34.1.1":"SEIS high-assurance policy Identifier","1.2.752.34.1.2":"SEIS GAK policy Identifier","1.2.752.34.2":"SEI Spe","1.2.752.34.3":"SEI Sat","1.2.752.34.3.1":"SEI Sat-personal Identifier","1.2.840.10040.1":"Module","1.2.840.10040.1.1":"x9f1-cert-mgmt","1.2.840.10040.2":"Holdinstruction","1.2.840.10040.2.1":"Holdinstruction-none","1.2.840.10040.2.2":"Callissuer","1.2.840.10040.2.3":"Reject","1.2.840.10040.2.4":"Pickup Token","1.2.840.10040.3":"Attribute","1.2.840.10040.3.1":"Countersignature","1.2.840.10040.3.2":"Attribute-cert","1.2.840.10040.4":"Algorithm","1.2.840.10040.4.1":"DSA","1.2.840.10040.4.2":"DSA-match","1.2.840.10040.4.3":"DSA with SHA1","1.2.840.10045.1":"Field Type","1.2.840.10045.1.1":"Prime-field","1.2.840.10045.1.2":"Characteristic-two-field","1.2.840.10045.1.2.3":"Characteristic-two-basis","1.2.840.10045.1.2.3.1":"ON Basis","1.2.840.10045.1.2.3.2":"TP Basis","1.2.840.10045.1.2.3.3":"PP Basis","1.2.840.10045.2":"Public Key Type","1.2.840.10045.2.1":"EC Public Key","1.2.840.10045.3.0.1":"C2pnb163v1","1.2.840.10045.3.0.2":"C2pnb163v2","1.2.840.10045.3.0.3":"C2pnb163v3","1.2.840.10045.3.0.5":"C2tnb191v1","1.2.840.10045.3.0.6":"C2tnb191v2","1.2.840.10045.3.0.7":"C2tnb191v3","1.2.840.10045.3.0.10":"C2pnb208w1","1.2.840.10045.3.0.11":"C2tnb239v1","1.2.840.10045.3.0.12":"C2tnb239v2","1.2.840.10045.3.0.13":"C2tnb239v3","1.2.840.10045.3.0.16":"C2pnb272w1","1.2.840.10045.3.0.18":"C2tnb359v1","1.2.840.10045.3.0.19":"C2pnb368w1","1.2.840.10045.3.0.20":"C2tnb431r1","1.2.840.10045.3.1.1":"Prime192v1","1.2.840.10045.3.1.2":"Prime192v2","1.2.840.10045.3.1.3":"Prime192v3","1.2.840.10045.3.1.4":"Prime239v1","1.2.840.10045.3.1.5":"Prime239v2","1.2.840.10045.3.1.6":"Prime239v3","1.2.840.10045.3.1.7":"Prime256v1","1.2.840.10045.4.1":"ECDSA with SHA1","1.2.840.10045.4.2":"ECDSA with Recommended","1.2.840.10045.4.3":"ECDSA with Specified","1.2.840.10045.4.3.1":"ECDSA with SHA224","1.2.840.10045.4.3.2":"ECDSA with SHA256","1.2.840.10045.4.3.3":"ECDSA with SHA384","1.2.840.10045.4.3.4":"ECDSA with SHA512","1.2.840.10046.1":"Field Type","1.2.840.10046.1.1":"Gf-prime","1.2.840.10046.2":"Number Type","1.2.840.10046.2.1":"DH Public Key","1.2.840.10046.3":"Scheme","1.2.840.10046.3.1":"DH Static","1.2.840.10046.3.2":"DH Ephem","1.2.840.10046.3.3":"DH Hybrid1","1.2.840.10046.3.4":"DH Hybrid2","1.2.840.10046.3.5":"Mqv2","1.2.840.10046.3.6":"Mqv1","1.2.840.10065.2.2":"?","1.2.840.10065.2.3":"Healthcare License","1.2.840.10065.2.3.1.1":"License?","1.2.840.10070.":"Iec62351","1.2.840.10070.8":"Iec62351_8","1.2.840.10070.8.1":"Iec User Roles","1.2.840.113533.7":"NSN","1.2.840.113533.7.65":"NSN-ce","1.2.840.113533.7.65.0":"Entrust Version Info","1.2.840.113533.7.66":"NSN-alg","1.2.840.113533.7.66.3":"Cast3 CBC","1.2.840.113533.7.66.10":"Cast5 CBC","1.2.840.113533.7.66.11":"Cast5 MAC","1.2.840.113533.7.66.12":"PBE with MD5 And CAST5-CBC","1.2.840.113533.7.66.13":"Password Based Mac","1.2.840.113533.7.67":"NSN-oc","1.2.840.113533.7.67.0":"Entrust User","1.2.840.113533.7.68":"NSN-at","1.2.840.113533.7.68.0":"Entrust CA Info","1.2.840.113533.7.68.10":"Attribute Certificate","1.2.840.113549.1.1":"PKCS-1","1.2.840.113549.1.1.1":"RSA Encryption","1.2.840.113549.1.1.2":"MD2 with RSA Encryption","1.2.840.113549.1.1.3":"MD4 with RSA Encryption","1.2.840.113549.1.1.4":"MD5 with RSA Encryption","1.2.840.113549.1.1.5":"SHA1 with RSA Encryption","1.2.840.113549.1.1.6":"RSA OAEP Encryption SET","1.2.840.113549.1.1.7":"RSA OAEP","1.2.840.113549.1.1.8":"PKCS1-MGF","1.2.840.113549.1.1.9":"RSA OAEP-p Specified","1.2.840.113549.1.1.10":"RSA PSS","1.2.840.113549.1.1.11":"SHA256 with RSA Encryption","1.2.840.113549.1.1.12":"SHA384 with RSA Encryption","1.2.840.113549.1.1.13":"SHA512 with RSA Encryption","1.2.840.113549.1.1.14":"SHA224 with RSA Encryption","1.2.840.113549.1.2":"Bsafe Rsa Encr","1.2.840.113549.1.3":"PKCS-3","1.2.840.113549.1.3.1":"Dh Key Agreement","1.2.840.113549.1.5":"PKCS-5","1.2.840.113549.1.5.1":"PBE with MD2 And DES-CBC","1.2.840.113549.1.5.3":"PBE with MD5 And DES-CBC","1.2.840.113549.1.5.4":"PBE with MD2 And RC2-CBC","1.2.840.113549.1.5.6":"PBE with MD5 And RC2-CBC","1.2.840.113549.1.5.9":"PBE with MD5 And XOR","1.2.840.113549.1.5.10":"PBE with SHA And DES-CBC","1.2.840.113549.1.5.12":"PKCS5 PBKDF2","1.2.840.113549.1.5.13":"PKCS5 PBES2","1.2.840.113549.1.5.14":"PKCS5 PBMAC1","1.2.840.113549.1.7":"PKCS-7","1.2.840.113549.1.7.1":"Data","1.2.840.113549.1.7.2":"Signed Data","1.2.840.113549.1.7.3":"Enveloped Data","1.2.840.113549.1.7.4":"Signed And Enveloped Data","1.2.840.113549.1.7.5":"Digested Data","1.2.840.113549.1.7.6":"Encrypted Data","1.2.840.113549.1.7.7":"Data with Attributes","1.2.840.113549.1.7.8":"Encrypted Private Key Info","1.2.840.113549.1.9":"PKCS-9","1.2.840.113549.1.9.1":"Email","1.2.840.113549.1.9.2":"Unstructured Name","1.2.840.113549.1.9.3":"Content Type","1.2.840.113549.1.9.4":"Message Digest","1.2.840.113549.1.9.5":"Signing Time","1.2.840.113549.1.9.6":"Countersignature","1.2.840.113549.1.9.7":"Challenge Password","1.2.840.113549.1.9.8":"Unstructured Address","1.2.840.113549.1.9.9":"Extended Certificate Attributes","1.2.840.113549.1.9.10":"Issuer And Serial Number","1.2.840.113549.1.9.11":"Password Check","1.2.840.113549.1.9.12":"Public Key","1.2.840.113549.1.9.13":"Signing Description","1.2.840.113549.1.9.14":"Extension Request","1.2.840.113549.1.9.15":"S/MIME Capabilities","1.2.840.113549.1.9.15.1":"Prefer Signed Data","1.2.840.113549.1.9.15.2":"Can Not Decrypt Any","1.2.840.113549.1.9.15.3":"Receipt Request","1.2.840.113549.1.9.15.4":"Receipt","1.2.840.113549.1.9.15.5":"Content Hints","1.2.840.113549.1.9.15.6":"Ml Expansion History","1.2.840.113549.1.9.16":"Id-sMIME","1.2.840.113549.1.9.16.0":"Id-mod","1.2.840.113549.1.9.16.0.1":"Id-mod-cms","1.2.840.113549.1.9.16.0.2":"Id-mod-ess","1.2.840.113549.1.9.16.0.3":"Id-mod-oid","1.2.840.113549.1.9.16.0.4":"Id-mod-msg-v3","1.2.840.113549.1.9.16.0.5":"Id-mod-ets-e Signature-88","1.2.840.113549.1.9.16.0.6":"Id-mod-ets-e Signature-97","1.2.840.113549.1.9.16.0.7":"Id-mod-ets-e Sig Policy-88","1.2.840.113549.1.9.16.0.8":"Id-mod-ets-e Sig Policy-88","1.2.840.113549.1.9.16.1":"Content Type","1.2.840.113549.1.9.16.1.1":"Receipt","1.2.840.113549.1.9.16.1.2":"Auth Data","1.2.840.113549.1.9.16.1.3":"Publish Cert","1.2.840.113549.1.9.16.1.4":"TST Info","1.2.840.113549.1.9.16.1.5":"TDT Info","1.2.840.113549.1.9.16.1.6":"Content Info","1.2.840.113549.1.9.16.1.7":"DVCS Request Data","1.2.840.113549.1.9.16.1.8":"DVCS Response Data","1.2.840.113549.1.9.16.1.9":"Compressed Data","1.2.840.113549.1.9.16.1.10":"SCVP Cert Val Request","1.2.840.113549.1.9.16.1.11":"SCVP Cert Val Response","1.2.840.113549.1.9.16.1.12":"SCVP Val Pol Request","1.2.840.113549.1.9.16.1.13":"SCVP Val Pol Response","1.2.840.113549.1.9.16.1.14":"Attr Cert Enc Attrs","1.2.840.113549.1.9.16.1.15":"TS Req","1.2.840.113549.1.9.16.1.16":"Firmware Package","1.2.840.113549.1.9.16.1.17":"Firmware Load Receipt","1.2.840.113549.1.9.16.1.18":"Firmware Load Error","1.2.840.113549.1.9.16.1.19":"Content Collection","1.2.840.113549.1.9.16.1.20":"Content with Attrs","1.2.840.113549.1.9.16.1.21":"Enc Key with I D","1.2.840.113549.1.9.16.1.22":"Enc PEPSI","1.2.840.113549.1.9.16.1.23":"Auth Enveloped Data","1.2.840.113549.1.9.16.1.24":"Route Origin Attest","1.2.840.113549.1.9.16.1.25":"Symmetric Key Package","1.2.840.113549.1.9.16.1.26":"Rpki Manifest","1.2.840.113549.1.9.16.1.27":"Ascii Text with CRLF","1.2.840.113549.1.9.16.1.28":"XML","1.2.840.113549.1.9.16.1.29":"PDF","1.2.840.113549.1.9.16.1.30":"Postscript","1.2.840.113549.1.9.16.1.31":"Timestamped Data","1.2.840.113549.1.9.16.1.32":"As Adjacency Attest","1.2.840.113549.1.9.16.1.33":"Rpki Trust Anchor","1.2.840.113549.1.9.16.1.34":"Trust Anchor List","1.2.840.113549.1.9.16.2":"Authenticated Attributes","1.2.840.113549.1.9.16.2.1":"Receipt Request","1.2.840.113549.1.9.16.2.2":"Security Label","1.2.840.113549.1.9.16.2.3":"Ml Expand History","1.2.840.113549.1.9.16.2.4":"Content Hint","1.2.840.113549.1.9.16.2.5":"Msg Sig Digest","1.2.840.113549.1.9.16.2.6":"Encap Content Type","1.2.840.113549.1.9.16.2.7":"Content Identifier","1.2.840.113549.1.9.16.2.8":"Mac Value","1.2.840.113549.1.9.16.2.9":"Equivalent Labels","1.2.840.113549.1.9.16.2.10":"Content Reference","1.2.840.113549.1.9.16.2.11":"Encryp Key Pref","1.2.840.113549.1.9.16.2.12":"Signing Certificate","1.2.840.113549.1.9.16.2.13":"Smime Encrypt Certs","1.2.840.113549.1.9.16.2.14":"Time Stamp Token","1.2.840.113549.1.9.16.2.15":"Sig Policy Id","1.2.840.113549.1.9.16.2.16":"Commitment Type","1.2.840.113549.1.9.16.2.17":"Signer Location","1.2.840.113549.1.9.16.2.18":"Signer Attr","1.2.840.113549.1.9.16.2.19":"Other Sig Cert","1.2.840.113549.1.9.16.2.20":"Content Timestamp","1.2.840.113549.1.9.16.2.21":"Certificate Refs","1.2.840.113549.1.9.16.2.22":"Revocation Refs","1.2.840.113549.1.9.16.2.23":"Cert Values","1.2.840.113549.1.9.16.2.24":"Revocation Values","1.2.840.113549.1.9.16.2.25":"Esc Time Stamp","1.2.840.113549.1.9.16.2.26":"Cert CRL Timestamp","1.2.840.113549.1.9.16.2.27":"Archive Time Stamp","1.2.840.113549.1.9.16.2.28":"Signature Type","1.2.840.113549.1.9.16.2.29":"Dvcs Dvc","1.2.840.113549.1.9.16.2.30":"Cek Reference","1.2.840.113549.1.9.16.2.31":"Max CEK Decrypts","1.2.840.113549.1.9.16.2.32":"Kek Derivation Alg","1.2.840.113549.1.9.16.2.33":"Intended Recipients","1.2.840.113549.1.9.16.2.34":"Cmc Unsigned Data","1.2.840.113549.1.9.16.2.35":"Fw Package ID","1.2.840.113549.1.9.16.2.36":"Fw Target Hardware IDs","1.2.840.113549.1.9.16.2.37":"Fw Decrypt Key ID","1.2.840.113549.1.9.16.2.38":"Fw Impl Crypt Algs","1.2.840.113549.1.9.16.2.39":"Fw Wrapped Firmware Key","1.2.840.113549.1.9.16.2.40":"Fw Community Identifiers","1.2.840.113549.1.9.16.2.41":"Fw Pkg Message Digest","1.2.840.113549.1.9.16.2.42":"Fw Package Info","1.2.840.113549.1.9.16.2.43":"Fw Impl Compress Algs","1.2.840.113549.1.9.16.2.44":"Ets Attr Certificate Refs","1.2.840.113549.1.9.16.2.45":"Ets Attr Revocation Refs","1.2.840.113549.1.9.16.2.46":"Binary Signing Time","1.2.840.113549.1.9.16.2.47":"Signing Certificate V2","1.2.840.113549.1.9.16.2.48":"Ets Archive Time Stamp V2","1.2.840.113549.1.9.16.2.49":"Er Internal","1.2.840.113549.1.9.16.2.50":"Er External","1.2.840.113549.1.9.16.2.51":"Multiple Signatures","1.2.840.113549.1.9.16.3.1":"Es DHwith3 DES","1.2.840.113549.1.9.16.3.2":"Es DHwith RC2","1.2.840.113549.1.9.16.3.3":"3des Wrap","1.2.840.113549.1.9.16.3.4":"Rc2 Wrap","1.2.840.113549.1.9.16.3.5":"Es DH","1.2.840.113549.1.9.16.3.6":"Cms3 DESwrap","1.2.840.113549.1.9.16.3.7":"Cms RC2wrap","1.2.840.113549.1.9.16.3.8":"Zlib","1.2.840.113549.1.9.16.3.9":"Pwri KEK","1.2.840.113549.1.9.16.3.10":"Ss DH","1.2.840.113549.1.9.16.3.11":"Hmac With3 DE Swrap","1.2.840.113549.1.9.16.3.12":"Hmac with AE Swrap","1.2.840.113549.1.9.16.3.13":"MD5 Xor Experiment","1.2.840.113549.1.9.16.3.14":"RSA KEM","1.2.840.113549.1.9.16.3.15":"Auth Enc128","1.2.840.113549.1.9.16.3.16":"Auth Enc256","1.2.840.113549.1.9.16.4.1":"Cert Dist-ldap","1.2.840.113549.1.9.16.5.1":"Sig Policy Qualifier-spuri x","1.2.840.113549.1.9.16.5.2":"Sig Policy Qualifier-sp User Notice","1.2.840.113549.1.9.16.6.1":"Proof Of Origin","1.2.840.113549.1.9.16.6.2":"Proof Of Receipt","1.2.840.113549.1.9.16.6.3":"Proof Of Delivery","1.2.840.113549.1.9.16.6.4":"Proof Of Sender","1.2.840.113549.1.9.16.6.5":"Proof Of Approval","1.2.840.113549.1.9.16.6.6":"Proof Of Creation","1.2.840.113549.1.9.16.8.1":"Gl Use KEK","1.2.840.113549.1.9.16.8.2":"Gl Delete","1.2.840.113549.1.9.16.8.3":"Gl Add Member","1.2.840.113549.1.9.16.8.4":"Gl Delete Member","1.2.840.113549.1.9.16.8.5":"Gl Rekey","1.2.840.113549.1.9.16.8.6":"Gl Add Owner","1.2.840.113549.1.9.16.8.7":"Gl Remove Owner","1.2.840.113549.1.9.16.8.8":"Glk Compromise","1.2.840.113549.1.9.16.8.9":"Glk Refresh","1.2.840.113549.1.9.16.8.10":"Gl Fail Info","1.2.840.113549.1.9.16.8.11":"Gla Query Request","1.2.840.113549.1.9.16.8.12":"Gla Query Response","1.2.840.113549.1.9.16.8.13":"Gl Provide Cert","1.2.840.113549.1.9.16.8.14":"Gl Update Cert","1.2.840.113549.1.9.16.8.15":"Gl Key","1.2.840.113549.1.9.16.9":"Signature Type Identifier","1.2.840.113549.1.9.16.9.1":"Originator Sig","1.2.840.113549.1.9.16.9.2":"Domain Sig","1.2.840.113549.1.9.16.9.3":"Additional Attributes Sig","1.2.840.113549.1.9.16.9.4":"Review Sig","1.2.840.113549.1.9.16.11":"Capabilities","1.2.840.113549.1.9.16.11.1":"Prefer Binary Inside","1.2.840.113549.1.9.20":"Friendly Name (for PKCS #12)","1.2.840.113549.1.9.21":"Local Key I D (for PKCS #12)","1.2.840.113549.1.9.22":"Cert Types (for PKCS #12)","1.2.840.113549.1.9.22.1":"x509 Certificate (for PKCS #12)","1.2.840.113549.1.9.22.2":"SDSI Certificate (for PKCS #12)","1.2.840.113549.1.9.23":"CRL Types (for PKCS #12)","1.2.840.113549.1.9.23.1":"x509 Crl (for PKCS #12)","1.2.840.113549.1.9.24":"PKCS9object Class","1.2.840.113549.1.9.25":"PKCS9attributes","1.2.840.113549.1.9.25.1":"PKCS15 Token","1.2.840.113549.1.9.25.2":"Encrypted Private Key Info","1.2.840.113549.1.9.25.3":"Random Nonce","1.2.840.113549.1.9.25.4":"Sequence Number","1.2.840.113549.1.9.25.5":"PKCS7 PDU","1.2.840.113549.1.9.26":"PKCS9syntax","1.2.840.113549.1.9.27":"PKCS9matching Rules","1.2.840.113549.1.12":"PKCS-12","1.2.840.113549.1.12.1":"PKCS-12- Pbe Ids#12 mode ID","1.2.840.113549.1.12.1.1":"PBE with SHA And128 Bit RC4","1.2.840.113549.1.12.1.2":"PBE with SHA And40 Bit RC4","1.2.840.113549.1.12.1.3":"PBE with SHA And3-Key Triple DES-CBC","1.2.840.113549.1.12.1.4":"PBE with SHA And2-Key Triple DES-CBC","1.2.840.113549.1.12.1.5":"PBE with SHA And128 Bit RC2-CBC","1.2.840.113549.1.12.1.6":"PBE with SHA And40 Bit RC2-CBC","1.2.840.113549.1.12.2":"PKCS-12-ESPVKID","1.2.840.113549.1.12.2.1":"PKCS-12-PKCS8 Key Shrouding(1284011354911235) instead","1.2.840.113549.1.12.3":"PKCS-12-Bag Ids","1.2.840.113549.1.12.3.1":"PKCS-12-key Bag Id","1.2.840.113549.1.12.3.2":"PKCS-12-cert And CRL Bag Id","1.2.840.113549.1.12.3.3":"PKCS-12-secret Bag Id","1.2.840.113549.1.12.3.4":"PKCS-12-safe Contents Id","1.2.840.113549.1.12.3.5":"PKCS-12-pkcs","1.2.840.113549.1.12.4":"PKCS-12-Cert Bag ID","1.2.840.113549.1.12.4.1":"PKCS-12-x509 Cert CRL Bag I Dformerly assigned as pkcs-12-x509 Cert CRL Bag","1.2.840.113549.1.12.4.2":"PKCS-12-SDSI Cert Bag I Dformerly assigned as pkcs-12-SDSI Cert Bag","1.2.840.113549.1.12.5":"PKCS-12-OID","1.2.840.113549.1.12.5.1":"PKCS-12-PBEI Dthe partially compatible (128401135491121) OIDs instead","1.2.840.113549.1.12.5.1.1":"PKCS-12-PBE with SHA1 And128 Bit RC4use (1284011354911211) instead","1.2.840.113549.1.12.5.1.2":"PKCS-12-PBE with SHA1 And40 Bit RC4use (1284011354911212) instead","1.2.840.113549.1.12.5.1.3":"PKCS-12-PBE with SHA1 And Triple DESCB Cuse the incompatible but similar (1284011354911213) or (1284011354911214) instead","1.2.840.113549.1.12.5.1.4":"PKCS-12-PBE with SHA1 And128 Bit RC2CB Cuse (1284011354911215) instead","1.2.840.113549.1.12.5.1.5":"PKCS-12-PBE with SHA1 And40 Bit RC2CB Cuse (1284011354911216) instead","1.2.840.113549.1.12.5.1.6":"PKCS-12-PBE with SHA1 And RC4use the incompatible but similar (1284011354911211) or (1284011354911212) instead","1.2.840.113549.1.12.5.1.7":"PKCS-12-PBE with SHA1 And RC2CB Cuse the incompatible but similar (1284011354911215) or (1284011354911216) instead","1.2.840.113549.1.12.5.2":"PKCS-12-Enveloping I Dthe conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.2.1":"PKCS-12-RSA Encryption With128 Bit RC4use the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.2.2":"PKCS-12-RSA Encryption With40 Bit RC4use the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.2.3":"PKCS-12-RSA Encryption with Triple DESuse the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.3":"PKCS-12-Signature IDuse the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.5.3.1":"PKCS-12-RSA Signature with SHA1 Digestuse the conventional PKCS#1OIDs instead","1.2.840.113549.1.12.10":"PKCS-12 Version1","1.2.840.113549.1.12.10.1":"PKCS-12 Bad Ids","1.2.840.113549.1.12.10.1.1":"PKCS-12-key Bag","1.2.840.113549.1.12.10.1.2":"PKCS-12-pkcs","1.2.840.113549.1.12.10.1.3":"PKCS-12-cert Bag","1.2.840.113549.1.12.10.1.4":"PKCS-12-crl Bag","1.2.840.113549.1.12.10.1.5":"PKCS-12-secret Bag","1.2.840.113549.1.12.10.1.6":"PKCS-12-safe Contents Bag","1.2.840.113549.1.15.1":"PKCS15modules","1.2.840.113549.1.15.2":"PKCS15attributes","1.2.840.113549.1.15.3":"PKCS15content Type","1.2.840.113549.1.15.3.1":"PKCS15content","1.2.840.113549.2":"Digest Algorithm","1.2.840.113549.2.2":"MD2","1.2.840.113549.2.4":"MD4","1.2.840.113549.2.5":"MD5","1.2.840.113549.2.7":"HMAC with SHA1","1.2.840.113549.2.8":"HMAC with SHA224","1.2.840.113549.2.9":"HMAC with SHA256","1.2.840.113549.2.10":"HMAC with SHA384","1.2.840.113549.2.11":"HMAC with SHA512","1.2.840.113549.3":"Encryption Algorithm","1.2.840.113549.3.2":"Rc2CBC","1.2.840.113549.3.3":"Rc2ECB","1.2.840.113549.3.4":"Rc4","1.2.840.113549.3.5":"Rc4 with MAC","1.2.840.113549.3.6":"Desx-CBC","1.2.840.113549.3.7":"Des-EDE3-CBC","1.2.840.113549.3.8":"Rc5CBC","1.2.840.113549.3.9":"Rc5-CBCPad","1.2.840.113549.3.10":"DesCDMF","1.2.840.113556.1.2.241":"Delivery Mechanism","1.2.840.113556.1.2.281":"Nt Security Descriptor","1.2.840.113556.1.3.0":"Site-Addressing","1.2.840.113556.1.3.13":"Class Schema","1.2.840.113556.1.3.14":"Attribute Schema","1.2.840.113556.1.3.17":"Mailbox- Agent","1.2.840.113556.1.3.22":"Mailbox","1.2.840.113556.1.3.23":"Container","1.2.840.113556.1.3.46":"Mail Recipient","1.2.840.113556.1.4.145":"Revision","1.2.840.113556.1.4.1327":"PKI Default Key Spec","1.2.840.113556.1.4.1328":"PKI Key Usage","1.2.840.113556.1.4.1329":"PKI Max Issuing Depth","1.2.840.113556.1.4.1330":"PKI Critical Extensions","1.2.840.113556.1.4.1331":"PKI Expiration Period","1.2.840.113556.1.4.1332":"PKI Overlap Period","1.2.840.113556.1.4.1333":"PKI Extended Key Usage","1.2.840.113556.1.4.1334":"PKI Default CSPs","1.2.840.113556.1.4.1335":"PKI Enrollment Access","1.2.840.113556.1.4.1429":"MsPKI-RA-Signature","1.2.840.113556.1.4.1430":"MsPKI-Enrollment-Flag","1.2.840.113556.1.4.1431":"MsPKI-Private-Key","1.2.840.113556.1.4.1432":"MsPKI-Certificate-Name","1.2.840.113556.1.4.1433":"MsPKI-Minimal-Key","1.2.840.113556.1.4.1434":"MsPKI-Template-Schema","1.2.840.113556.1.4.1435":"MsPKI-Template-Minor","1.2.840.113556.1.4.1436":"MsPKI-Cert-Template","1.2.840.113556.1.4.1437":"MsPKI-Supersede-Templates","1.2.840.113556.1.4.1438":"MsPKI-RA-Policies","1.2.840.113556.1.4.1439":"MsPKI-Certificate-Policy","1.2.840.113556.1.4.1674":"MsPKI-Certificate-Application","1.2.840.113556.1.4.1675":"MsPKI-R A- Application","1.2.840.113556.4.3":"Microsoft Excel","1.2.840.113556.4.4":"Titled with OID","1.2.840.113556.4.5":"Microsoft Power Point","1.2.840.113583.1":"Adobe Acrobat","1.2.840.113583.1.1":"Acrobat Security","1.2.840.113583.1.1.1":"PDF Password","1.2.840.113583.1.1.2":"PDF Default Signing Credential","1.2.840.113583.1.1.3":"PDF Default Encryption Credential","1.2.840.113583.1.1.4":"PDF Password Timeout","1.2.840.113583.1.1.5":"PDF Authentic Documents Trust","1.2.840.113583.1.1.6":"PDF Dynamic Content Trust","1.2.840.113583.1.1.7":"PDF Ubiquity Trust","1.2.840.113583.1.1.8":"PDF Revocation Info Archival","1.2.840.113583.1.1.9":"PDF x509 Extension","1.2.840.113583.1.1.9.1":"Adobe Time-stamp","1.2.840.113583.1.1.9.2":"Adobe Archive Rev Info","1.2.840.113583.1.1.10":"PDF PPLK Lite Credential","1.2.840.113583.1.2.":"Acrobat CPS","1.2.840.113583.1.2.1":"PDF Authentic Documents CPS","1.2.840.113583.1.2.2":"PDF Test CPS","1.2.840.113583.1.2.3":"PDF Ubiquity CPS","1.2.840.113583.1.2.4":"PDF Adhoc CPS","1.2.840.113583.1.7":"Acrobat Ubiquity","1.2.840.113583.1.7.1":"PDF Ubiquity Sub Rights","1.2.840.113583.1.9":"Acrobat Extension","1.2.840.113628.114.1.7":"Adobe PKCS7","1.2.840.113635.100":"Apple Data Security","1.2.840.113635.100.1":"Apple Trust Policy","1.2.840.113635.100.1.1":"Apple I Sign TP","1.2.840.113635.100.1.2":"Apple x509 Basic","1.2.840.113635.100.1.3":"Apple SSL Policy","1.2.840.113635.100.1.4":"Apple Local Cert Gen Policy","1.2.840.113635.100.1.5":"Apple CSR Gen Policy","1.2.840.113635.100.1.6":"Apple CRL Policy","1.2.840.113635.100.1.7":"Apple OCSP Policy","1.2.840.113635.100.1.8":"Apple SMIME Policy","1.2.840.113635.100.1.9":"Apple EAP Policy","1.2.840.113635.100.1.10":"Apple SW Update Signing Policy","1.2.840.113635.100.1.11":"Apple IPSec Policy","1.2.840.113635.100.1.12":"Apple IChat Policy","1.2.840.113635.100.1.13":"Apple Resource Sign Policy","1.2.840.113635.100.1.14":"Apple PKINIT Client Policy","1.2.840.113635.100.1.15":"Apple PKINIT Server Policy","1.2.840.113635.100.1.16":"Apple Code Signing Policy","1.2.840.113635.100.1.17":"Apple Package Signing Policy","1.2.840.113635.100.2":"Apple Security Algorithm","1.2.840.113635.100.2.1":"Apple FEE","1.2.840.113635.100.2.2":"Apple ASC","1.2.840.113635.100.2.3":"Apple FEE_MD5","1.2.840.113635.100.2.4":"Apple FEE_SHA1","1.2.840.113635.100.2.5":"Apple FEED","1.2.840.113635.100.2.6":"Apple FEEDEXP","1.2.840.113635.100.2.7":"Apple ECDSA","1.2.840.113635.100.3":"Apple Dot Mac Certificate","1.2.840.113635.100.3.1":"Apple Dot Mac Certificate Request","1.2.840.113635.100.3.2":"Apple Dot Mac Certificate Extension","1.2.840.113635.100.3.3":"Apple Dot Mac Certificate Request Values","1.2.840.113635.100.4":"Apple Extended Key Usage","1.2.840.113635.100.4.1":"Apple Code Signing","1.2.840.113635.100.4.1.1":"Apple Code Signing Development","1.2.840.113635.100.4.1.2":"Apple Software Update Signing","1.2.840.113635.100.4.1.3":"Apple Code Signing Third Party","1.2.840.113635.100.4.1.4":"Apple Resource Signing","1.2.840.113635.100.4.2":"Apple I Chat Signing","1.2.840.113635.100.4.3":"Apple I Chat Encryption","1.2.840.113635.100.4.4":"Apple System Identity","1.2.840.113635.100.4.5":"Apple Crypto Env","1.2.840.113635.100.4.5.1":"Apple Crypto Production Env","1.2.840.113635.100.4.5.2":"Apple Crypto Maintenance Env","1.2.840.113635.100.4.5.3":"Apple Crypto Test Env","1.2.840.113635.100.4.5.4":"Apple Crypto Development Env","1.2.840.113635.100.4.6":"Apple Crypto Qo S","1.2.840.113635.100.4.6.1":"Apple Crypto Tier0 QoS","1.2.840.113635.100.4.6.2":"Apple Crypto Tier1 QoS","1.2.840.113635.100.4.6.3":"Apple Crypto Tier2 QoS","1.2.840.113635.100.4.6.4":"Apple Crypto Tier3 QoS","1.2.840.113635.100.4.7":"Apple ID Sharing Certificate","1.2.840.113635.100.5":"Apple Certificate Policies","1.2.840.113635.100.5.1":"Apple Certificate Policy ID","1.2.840.113635.100.5.2":"Apple Dot Mac Certificate Policy ID","1.2.840.113635.100.5.3":"Apple ADC Certificate Policy ID","1.2.840.113635.100.5.7.1":"Apple ID Sharing Certificate Policy","1.2.840.113635.100.6":"Apple Certificate Extensions","1.2.840.113635.100.6.1":"Apple Certificate Extension Code Signing","1.2.840.113635.100.6.1.1":"Apple Certificate Extension Apple Signing","1.2.840.113635.100.6.1.2":"Apple Certificate Extension ADC Developer Signing","1.2.840.113635.100.6.1.3":"Apple Certificate Extension ADC Apple Signing","1.2.840.113635.100.6.2.3":"Apple Application Integration","1.2.840.114021.1.6.1":"Identrus unknown policy Identifier","1.2.840.114021.4.1":"Identrus OCSP","1.3.6.1.4.1.188.7.1.1":"Ascom","1.3.6.1.4.1.188.7.1.1.1":"Idea ECB","1.3.6.1.4.1.188.7.1.1.2":"Idea CBC","1.3.6.1.4.1.188.7.1.1.3":"Idea CFB","1.3.6.1.4.1.188.7.1.1.4":"Idea OFB","1.3.6.1.4.1.311.2.1.4":"Spc Indirect Data Context","1.3.6.1.4.1.311.2.1.10":"Spc Agency Info","1.3.6.1.4.1.311.2.1.11":"Spc Statement Type","1.3.6.1.4.1.311.2.1.12":"Spc Sp Opus Info","1.3.6.1.4.1.311.2.1.14":"Cert Req Extensions","1.3.6.1.4.1.311.2.1.15":"Spc P E Image Data","1.3.6.1.4.1.311.2.1.18":"Spc Raw File Data","1.3.6.1.4.1.311.2.1.19":"Spc Structured Storage Data","1.3.6.1.4.1.311.2.1.20":"Spc Java ClassData (type 1extension',aka 'Glue extension)","1.3.6.1.4.1.311.2.1.21":"Individual Code Signing","1.3.6.1.4.1.311.2.1.22":"Commercial Code Signing","1.3.6.1.4.1.311.2.1.25":"Spc Link (type 2as 'Glue extension)","1.3.6.1.4.1.311.2.1.26":"Spc Minimal Criteria Info","1.3.6.1.4.1.311.2.1.27":"Spc Financial Criteria Info","1.3.6.1.4.1.311.2.1.28":"SpcLink (type 3as 'Glue extension)","1.3.6.1.4.1.311.2.1.29":"Spc Hash Info Obj ID","1.3.6.1.4.1.311.2.1.30":"Spc Sip Info Obj ID","1.3.6.1.4.1.311.2.2":"Ctl","1.3.6.1.4.1.311.2.2.1":"Ctl Trusted Codesigning CAList","1.3.6.1.4.1.311.2.2.2":"Ctl Trusted Client Auth CAList","1.3.6.1.4.1.311.2.2.3":"Ctl Trusted Server Auth CAList","1.3.6.1.4.1.311.3.2.1":"Timestamp Request","1.3.6.1.4.1.311.10.1":"Cert Trust List","1.3.6.1.4.1.311.10.1.1":"Sorted Ctl","1.3.6.1.4.1.311.10.2":"Next Update Location","1.3.6.1.4.1.311.10.3.1":"Cert Trust List Signing","1.3.6.1.4.1.311.10.3.2":"Time Stamp Signing","1.3.6.1.4.1.311.10.3.3":"Server Gated Crypto","1.3.6.1.4.1.311.10.3.3.1":"Serialized","1.3.6.1.4.1.311.10.3.4":"Encrypted File System","1.3.6.1.4.1.311.10.3.4.1":"Efs Recovery","1.3.6.1.4.1.311.10.3.5":"Whql Crypto","1.3.6.1.4.1.311.10.3.6":"Nt5 Crypto","1.3.6.1.4.1.311.10.3.7":"Oem WHQL Crypto","1.3.6.1.4.1.311.10.3.8":"Embedded NT Crypto","1.3.6.1.4.1.311.10.3.9":"Root List Signer","1.3.6.1.4.1.311.10.3.10":"Qualified Subordination","1.3.6.1.4.1.311.10.3.11":"Key Recovery","1.3.6.1.4.1.311.10.3.12":"Document Signing","1.3.6.1.4.1.311.10.3.13":"Lifetime Signing","1.3.6.1.4.1.311.10.3.14":"Mobile Device Software","1.3.6.1.4.1.311.10.3.15":"Smart Display","1.3.6.1.4.1.311.10.3.16":"Csp Signature","1.3.6.1.4.1.311.10.4.1":"yesno Trust Attr","1.3.6.1.4.1.311.10.5.1":"Drm","1.3.6.1.4.1.311.10.5.2":"Drm Individualization","1.3.6.1.4.1.311.10.6.1":"Licenses","1.3.6.1.4.1.311.10.6.2":"License Server","1.3.6.1.4.1.311.10.7.1":"Keyid Rdn","1.3.6.1.4.1.311.10.8.1":"Remove Certificate","1.3.6.1.4.1.311.10.9.1":"Cross Cert Dist Points","1.3.6.1.4.1.311.10.10.1":"Cmc Add Attributes","1.3.6.1.4.1.311.10.11":"Cert Prop Id Prefix","1.3.6.1.4.1.311.10.11.4":"Cert Md5 Hash Prop Id","1.3.6.1.4.1.311.10.11.20":"Cert Key Identifier Prop Id","1.3.6.1.4.1.311.10.11.28":"Cert Issuer Serial Number Md5 Hash Prop Id","1.3.6.1.4.1.311.10.11.29":"Cert Subject Name MD5 Hash Prop Id","1.3.6.1.4.1.311.10.12.1":"Any Application Policy","1.3.6.1.4.1.311.12":"Catalog","1.3.6.1.4.1.311.12.1.1":"Catalog List","1.3.6.1.4.1.311.12.1.2":"Catalog List Member","1.3.6.1.4.1.311.12.2.1":"Catalog Name Value Obj ID","1.3.6.1.4.1.311.12.2.2":"Catalog Member Info Obj ID","1.3.6.1.4.1.311.13.1":"Renewal Certificate","1.3.6.1.4.1.311.13.2.1":"Enrolment Name Value Pair","1.3.6.1.4.1.311.13.2.2":"Enrolment CSP","1.3.6.1.4.1.311.13.2.3":"Os Version","1.3.6.1.4.1.311.16.4":"Microsoft Recipient Info","1.3.6.1.4.1.311.17.1":"PKCS12 Key Provider Name Attr","1.3.6.1.4.1.311.17.2":"Local Machine Keyset","1.3.6.1.4.1.311.17.3":"PKCS12 Extended Attributes","1.3.6.1.4.1.311.20.1":"Auto Enroll Ctl Usage","1.3.6.1.4.1.311.20.2":"Microsoft Certificate Type","1.3.6.1.4.1.311.20.2.1":"Enrollment Agent","1.3.6.1.4.1.311.20.2.2":"Smartcard Logon","1.3.6.1.4.1.311.20.2.3":"NP Principal Name","1.3.6.1.4.1.311.20.3":"Cert Manifold","1.3.6.1.4.1.311.21.1":"Microsoft Certification Authority Renewal","1.3.6.1.4.1.311.21.2":"Microsoft Certificate Previous Hash","1.3.6.1.4.1.311.21.3":"CRL Virtual Base","1.3.6.1.4.1.311.21.4":"CRL Next Publish","1.3.6.1.4.1.311.21.5":"Ca Exchange","1.3.6.1.4.1.311.21.6":"Key Recovery","1.3.6.1.4.1.311.21.7":"Microsoft Certificate Template","1.3.6.1.4.1.311.21.8":"Enterprize OID Root","1.3.6.1.4.1.311.21.9":"Rdn Dummy Signer","1.3.6.1.4.1.311.21.10":"Microsoft Certificate Policies","1.3.6.1.4.1.311.21.11":"Application Policy Mappings","1.3.6.1.4.1.311.21.12":"Application Policy Constraints","1.3.6.1.4.1.311.21.13":"Archived Key","1.3.6.1.4.1.311.21.14":"CRL Self CDP","1.3.6.1.4.1.311.21.15":"Require Cert Chain Policy","1.3.6.1.4.1.311.21.16":"Archived Key Cert Hash","1.3.6.1.4.1.311.21.17":"Issued Cert Hash","1.3.6.1.4.1.311.21.19":"DS Email Replication","1.3.6.1.4.1.311.21.20":"Request Client Info","1.3.6.1.4.1.311.21.21":"Encrypted Key Hash","1.3.6.1.4.1.311.21.22":"Certsrv Cross CA Version","1.3.6.1.4.1.311.25.1":"Ntds Replication","1.3.6.1.4.1.311.31.1":"Product Update","1.3.6.1.4.1.311.47.1.1":"System Health","1.3.6.1.4.1.311.47.1.3":"System Health Loophole","1.3.6.1.4.1.311.60.1.1":"Root Program Flags","1.3.6.1.4.1.311.60.2.1.1":"Jurisdiction Of Incorporation L","1.3.6.1.4.1.311.60.2.1.2":"Jurisdiction Of Incorporation SP","1.3.6.1.4.1.311.60.2.1.3":"Jurisdiction Of Incorporation C","1.3.6.1.4.1.311.61.1.1":"Kernel Mode Code Signing","1.3.6.1.4.1.311.84.1.1":"ASP.NET HTTPS Development certificate","1.3.6.1.4.1.311.88":"CAPICOM","1.3.6.1.4.1.311.88.1":"CAPICOM version","1.3.6.1.4.1.311.88.2":"CAPICOM attribute","1.3.6.1.4.1.311.88.2.1":"Document type attribute","1.3.6.1.4.1.311.88.2.2":"Document description attribute","1.3.6.1.4.1.311.88.3":"CAPICOM encrypted data message","1.3.6.1.4.1.311.88.3.1":"CAPICOM content of encrypted data","1.3.6.1.4.1.782.1.2.1.8.1":"Network Solutions EV policy","1.3.6.1.4.1.2428.10.1.1":"UNINETT policy Identifier","1.3.6.1.4.1.2712.10":"ICE-TEL policy Identifier","1.3.6.1.4.1.2786.1.1.1":"ICE-TEL Italian","1.3.6.1.4.1.3029.1.1.1":"Blowfish ECB","1.3.6.1.4.1.3029.1.1.2":"Blowfish CBC","1.3.6.1.4.1.3029.1.1.3":"Blowfish CFB","1.3.6.1.4.1.3029.1.1.4":"Blowfish OFB","1.3.6.1.4.1.3029.1.2.1":"Elgamal","1.3.6.1.4.1.3029.1.2.1.1":"Elgamal with SHA-1","1.3.6.1.4.1.3029.1.2.1.2":"Elgamal with RIPEMD-160","1.3.6.1.4.1.3029.3.1.1":"Cryptlib Presence Check","1.3.6.1.4.1.3029.3.1.2":"Pki Boot","1.3.6.1.4.1.3029.3.1.4":"CRL Ext Reason","1.3.6.1.4.1.3029.3.1.5":"Key Features","1.3.6.1.4.1.3029.4.1":"Cryptlib Content","1.3.6.1.4.1.3029.4.1.1":"Cryptlib Config Data","1.3.6.1.4.1.3029.4.1.2":"Cryptlib User Index","1.3.6.1.4.1.3029.4.1.3":"Cryptlib User Info","1.3.6.1.4.1.3029.4.1.4":"Rtcs Request","1.3.6.1.4.1.3029.4.1.5":"Rtcs Response","1.3.6.1.4.1.3029.4.1.6":"Rtcs Response Ext","1.3.6.1.4.1.3029.42.11172.1":"Mpeg-1","1.3.6.1.4.1.3029.54.11940.54":"TSA policy 'Anythingpolicy","1.3.6.1.4.1.3029.88.89.90.90.89":"XYZZY policy Identifier","1.3.6.1.4.1.3401.8.1.1":"Pgp Extension","1.3.6.1.4.1.3576.7":"Ecia Asc X12 Edi","1.3.6.1.4.1.3576.7.1":"Plain ED Imessage","1.3.6.1.4.1.3576.7.2":"Signed ED Imessage","1.3.6.1.4.1.3576.7.5":"Integrity ED Imessage","1.3.6.1.4.1.3576.7.65":"Ia Receipt Message","1.3.6.1.4.1.3576.7.97":"Ia Status Message","1.3.6.1.4.1.3576.8":"Ecia Edifact","1.3.6.1.4.1.3576.9":"Ecia Non Edi","1.3.6.1.4.1.4146":"GlobalSign","1.3.6.1.4.1.4146.1":"GlobalSign Policy","1.3.6.1.4.1.4146.1.1":"GlobalSign EV policy","1.3.6.1.4.1.4146.1.10":"GlobalSign DV Policy","1.3.6.1.4.1.4146.1.20":"GlobalSign OV Policy","1.3.6.1.4.1.4146.1.30":"GlobalSign TSA Policy","1.3.6.1.4.1.4146.1.40":"GlobalSign Client Certificates Policy","1.3.6.1.4.1.4146.1.40.10":"GlobalSign Client Certificates Enterprise PKI Policy","1.3.6.1.4.1.4146.1.50":"GlobalSign Code Signing Certificates Policy","1.3.6.1.4.1.4146.1.60":"GlobalSign Root Sign Policy","1.3.6.1.4.1.4146.1.70":"GlobalSign Trusted Root Policy","1.3.6.1.4.1.4146.1.80":"GlobalSign EDI Client Policy","1.3.6.1.4.1.4146.1.81":"GlobalSign EDI Server Policy","1.3.6.1.4.1.4146.1.90":"GlobalSign TPM Root Policy","1.3.6.1.4.1.4146.1.95":"GlobalSign OCSP Policy","1.3.6.1.4.1.41482.3.3":"YubiKey Firmware Version","1.3.6.1.4.1.41482.3.7":"YubiKey Serial Number","1.3.6.1.4.1.41482.3.8":"YubiKey PIN Touch Policy","1.3.6.1.4.1.41482.3.9":"YubiKey Formfactor","1.3.6.1.4.1.4788.2.202.1":"D-TRUSTEV policy","1.3.6.1.4.1.5309.1":"Edel Web Policy","1.3.6.1.4.1.5309.1.2":"Edel Web Customer Policy","1.3.6.1.4.1.5309.1.2.1":"Edel Web Clepsydre Policy","1.3.6.1.4.1.5309.1.2.2":"Edel Web Experimental TSA Policy","1.3.6.1.4.1.5309.1.2.3":"Edel Web Open Evidence TSA Policy","1.3.6.1.4.1.53087.1.3":"Trademark Country Or Region Name","1.3.6.1.4.1.53087.1.4":"Trademark Registration Number","1.3.6.1.4.1.53087.1.6":"Word Mark","1.3.6.1.4.1.5472":"Timeproof","1.3.6.1.4.1.5472.1":"TSS","1.3.6.1.4.1.5472.1.1":"TSS80","1.3.6.1.4.1.5472.1.2":"TSS380","1.3.6.1.4.1.5472.1.3":"TSS400","1.3.6.1.4.1.5770.0.3":"Secondary Practices","1.3.6.1.4.1.5770.0.4":"Physician Identifiers","1.3.6.1.4.1.6334.1.100.1":"Cybertrust EV policy","1.3.6.1.4.1.6449.1.2.1.3.1":"Comodo Policy","1.3.6.1.4.1.6449.1.2.1.5.1":"Comodo EV policy","1.3.6.1.4.1.6449.1.2.2.7":"Comodo TLS DV","1.3.6.1.4.1.6449.1.2.2.15":"Wotrust Policy","1.3.6.1.4.1.6449.1.3.5.2":"Comodo Certified Delivery Service","1.3.6.1.4.1.6449.2.1.1":"Comodo Timestamping Policy","1.3.6.1.4.1.7879.13.24.1":"T-Tele Sec EV policy","1.3.6.1.4.1.8024.0.2.100.1.2":"QuoVadis EV policy","1.3.6.1.4.1.8231.1":"Rol Unico Nacional","1.3.6.1.4.1.8301.3.5.1":"alidity Model Chain","1.3.6.1.4.1.8301.3.5.2":"alidity Model Shell","1.3.6.1.4.1.11129.2.4.2":"Certificate Transparency","1.3.6.1.4.1.11591":"Gnu","1.3.6.1.4.1.11591.1":"Gnu Radius","1.3.6.1.4.1.11591.3":"Gnu Radar","1.3.6.1.4.1.11591.12":"Gnu Digest Algorithm","1.3.6.1.4.1.11591.12.2":"Tiger","1.3.6.1.4.1.11591.13":"Gnu Encryption Algorithm","1.3.6.1.4.1.11591.13.2":"Serpent","1.3.6.1.4.1.11591.13.2.1":"Serpent128_ECB","1.3.6.1.4.1.11591.13.2.2":"Serpent128_CBC","1.3.6.1.4.1.11591.13.2.3":"Serpent128_OFB","1.3.6.1.4.1.11591.13.2.4":"Serpent128_CFB","1.3.6.1.4.1.11591.13.2.21":"Serpent192_ECB","1.3.6.1.4.1.11591.13.2.22":"Serpent192_CBC","1.3.6.1.4.1.11591.13.2.23":"Serpent192_OFB","1.3.6.1.4.1.11591.13.2.24":"Serpent192_CFB","1.3.6.1.4.1.11591.13.2.41":"Serpent256_ECB","1.3.6.1.4.1.11591.13.2.42":"Serpent256_CBC","1.3.6.1.4.1.11591.13.2.43":"Serpent256_OFB","1.3.6.1.4.1.11591.13.2.44":"Serpent256_CFB","1.3.6.1.4.1.14370.1.6":"Geo Trust EV policy","1.3.6.1.4.1.14777.6.1.1":"Izenpe EV policy","1.3.6.1.4.1.14777.6.1.2":"Izenpe EV policy","1.3.6.1.4.1.16334.509.1.1":"Northrop Grumman ext Key Usage?","1.3.6.1.4.1.16334.509.2.1":"Ngc Class1","1.3.6.1.4.1.16334.509.2.2":"Ngc Class2","1.3.6.1.4.1.16334.509.2.3":"Ngc Class3","1.3.6.1.4.1.17326.10.8.12.1.2":"Camerfirma EV policy","1.3.6.1.4.1.17326.10.14.2.1.2":"Camerfirma EV policy","1.3.6.1.4.1.22234.2.5.2.3.1":"Cert Plus EV policy","1.3.6.1.4.1.23223.1.1.1":"Start Com EV policy","1.3.6.1.4.1.23629.1.4.2.1.1":"Safenet Usage Limit","1.3.6.1.4.1.23629.1.4.2.1.2":"Safenet End Date","1.3.6.1.4.1.23629.1.4.2.1.3":"Safenet Start Date","1.3.6.1.4.1.23629.1.4.2.1.4":"Safenet Admin Cert","1.3.6.1.4.1.23629.1.4.2.2.1":"Safenet Key Digest","1.3.6.1.4.1.34697.2.1":"Affirm Trust EV policy","1.3.6.1.4.1.34697.2.2":"Affirm Trust EV policy","1.3.6.1.4.1.34697.2.3":"Affirm Trust EV policy","1.3.6.1.4.1.34697.2.4":"Affirm Trust EV policy","1.3.6.1.4.1.40869.1.1.22.3":"TWCAEV policy","1.3.6.1.4.1.13177.10.1.2.2":"Corporate certificates for Natural Person","1.3.6.1.4.1.37476.9000.64.1":"Smallstep CA Provisioner ID","1.3.6.1.5.2.3.5":"KCD Authentication","1.3.6.1.5.5.7":"PKIX","1.3.6.1.5.5.7.0.12":"Attribute Cert","1.3.6.1.5.5.7.1":"Private Extension","1.3.6.1.5.5.7.1.1":"Certificate Authority Information Access","1.3.6.1.5.5.7.1.2":"Biometric Info","1.3.6.1.5.5.7.1.3":"Qualified Certificate Statements","1.3.6.1.5.5.7.1.4":"Ac Audit Identity","1.3.6.1.5.5.7.1.5":"Ac Targeting","1.3.6.1.5.5.7.1.6":"Ac Aa Controls","1.3.6.1.5.5.7.1.7":"Ip Addr Blocks","1.3.6.1.5.5.7.1.8":"Autonomous Sys Ids","1.3.6.1.5.5.7.1.9":"Router Identifier","1.3.6.1.5.5.7.1.10":"Ac Proxying","1.3.6.1.5.5.7.1.11":"Subject Info Access","1.3.6.1.5.5.7.1.12":"Logo Type","1.3.6.1.5.5.7.1.13":"Wlan SSID","1.3.6.1.5.5.7.1.26":"Telephone Number Authorization List","1.3.6.1.5.5.7.2":"Policy Qualifier Ids","1.3.6.1.5.5.7.2.1":"Certificate Policy Statement","1.3.6.1.5.5.7.2.2":"User Notice","1.3.6.1.5.5.7.2.3":"Text Notice","1.3.6.1.5.5.7.3":"Key Purpose","1.3.6.1.5.5.7.3.1":"Server Authentication","1.3.6.1.5.5.7.3.2":"Client Authentication","1.3.6.1.5.5.7.3.3":"Code Signing","1.3.6.1.5.5.7.3.4":"Email Protection","1.3.6.1.5.5.7.3.5":"Ipsec End System","1.3.6.1.5.5.7.3.6":"Ipsec Tunnel","1.3.6.1.5.5.7.3.7":"Ipsec User","1.3.6.1.5.5.7.3.8":"Time Stamping","1.3.6.1.5.5.7.3.9":"OCSP Signing","1.3.6.1.5.5.7.3.10":"DVCS","1.3.6.1.5.5.7.3.11":"Sbgp Cert AA Server Auth","1.3.6.1.5.5.7.3.13":"Eap Over PPP","1.3.6.1.5.5.7.3.14":"Eap Over LAN","1.3.6.1.5.5.7.3.31":"Brand Indicator for Message Identification","1.3.6.1.5.5.7.4":"Cmp Information Types","1.3.6.1.5.5.7.4.1":"Ca Prot Enc Cert","1.3.6.1.5.5.7.4.2":"Sign Key Pair Types","1.3.6.1.5.5.7.4.3":"Enc Key Pair Types","1.3.6.1.5.5.7.4.4":"Preferred Symm Alg","1.3.6.1.5.5.7.4.5":"CA Key Update Info","1.3.6.1.5.5.7.4.6":"Current CRL","1.3.6.1.5.5.7.4.7":"Unsupported OIDs","1.3.6.1.5.5.7.4.10":"Key Pair Param Req","1.3.6.1.5.5.7.4.11":"Key Pair Param Rep","1.3.6.1.5.5.7.4.12":"Rev Passphrase","1.3.6.1.5.5.7.4.13":"Implicit Confirm","1.3.6.1.5.5.7.4.14":"Confirm Wait Time","1.3.6.1.5.5.7.4.15":"Orig PKI Message","1.3.6.1.5.5.7.4.16":"Supp Lang Tags","1.3.6.1.5.5.7.5":"Crmf Registration","1.3.6.1.5.5.7.5.1":"Reg Ctrl","1.3.6.1.5.5.7.5.1.1":"Reg Token","1.3.6.1.5.5.7.5.1.2":"Authenticator","1.3.6.1.5.5.7.5.1.3":"Pki Publication Info","1.3.6.1.5.5.7.5.1.4":"Pki Archive Options","1.3.6.1.5.5.7.5.1.5":"Old Cert ID","1.3.6.1.5.5.7.5.1.6":"Protocol Encr Key","1.3.6.1.5.5.7.5.1.7":"Alt Cert Template","1.3.6.1.5.5.7.5.1.8":"Wtls Template","1.3.6.1.5.5.7.5.2":"Utf8 Pairs","1.3.6.1.5.5.7.5.2.1":"Utf8 Pairs","1.3.6.1.5.5.7.5.2.2":"Cert Req","1.3.6.1.5.5.7.6":"Algorithms","1.3.6.1.5.5.7.6.1":"Des40","1.3.6.1.5.5.7.6.2":"No Signature","1.3.6.1.5.5.7.6.3":"Dh-sig-hmac","1.3.6.1.5.5.7.6.4":"Dh-pop","1.3.6.1.5.5.7.7":"CMC Controls","1.3.6.1.5.5.7.8":"Other Names","1.3.6.1.5.5.7.8.1":"Personal Data","1.3.6.1.5.5.7.8.2":"User Group","1.3.6.1.5.5.7.8.3":"Permanent Identifier","1.3.6.1.5.5.7.8.5":"Xmpp Addr","1.3.6.1.5.5.7.9":"Personal Data","1.3.6.1.5.5.7.9.1":"Date Of Birth","1.3.6.1.5.5.7.9.2":"Place Of Birth","1.3.6.1.5.5.7.9.3":"Gender","1.3.6.1.5.5.7.9.4":"Country Of Citizenship","1.3.6.1.5.5.7.9.5":"Country Of Residence","1.3.6.1.5.5.7.10":"Attribute Certificate","1.3.6.1.5.5.7.10.1":"Authentication Info","1.3.6.1.5.5.7.10.2":"Access Identity","1.3.6.1.5.5.7.10.3":"Charging Identity","1.3.6.1.5.5.7.10.4":"Group","1.3.6.1.5.5.7.10.5":"Role","1.3.6.1.5.5.7.10.6":"Wlan SSID","1.3.6.1.5.5.7.11":"Personal Data","1.3.6.1.5.5.7.11.1":"Pkix QC Syntax v1","1.3.6.1.5.5.7.11.2":"Pkix QC Syntax v2","1.3.6.1.5.5.7.14.2":"Resource Certificate Policy","1.3.6.1.5.5.7.20":"Logo","1.3.6.1.5.5.7.20.1":"Logo Loyalty","1.3.6.1.5.5.7.20.2":"Logo Background","1.3.6.1.5.5.7.48.1":"OCSP","1.3.6.1.5.5.7.48.1.1":"OCSP Basic","1.3.6.1.5.5.7.48.1.2":"OCSP Nonce","1.3.6.1.5.5.7.48.1.3":"OCSP CRL","1.3.6.1.5.5.7.48.1.4":"OCSP Response","1.3.6.1.5.5.7.48.1.5":"OCSP No Check","1.3.6.1.5.5.7.48.1.6":"OCSP Archive Cutoff","1.3.6.1.5.5.7.48.1.7":"OCSP Service Locator","1.3.6.1.5.5.7.48.2":"CA Issuers","1.3.6.1.5.5.7.48.3":"Time Stamping","1.3.6.1.5.5.7.48.4":"DVCS","1.3.6.1.5.5.7.48.5":"CA Repository","1.3.6.1.5.5.7.48.7":"Signed Object Repository","1.3.6.1.5.5.7.48.10":"Rpki Manifest","1.3.6.1.5.5.7.48.11":"Signed Object","1.3.6.1.5.5.8.1.1":"HMAC MD5","1.3.6.1.5.5.8.1.2":"HMAC SHA","1.3.6.1.5.5.8.1.3":"HMAC Tiger","1.3.6.1.5.5.8.2.2":"IKE Intermediate","1.3.12.2.1011.7.1":"DEC Encryption Algorithm","1.3.12.2.1011.7.1.2":"DEC DEA","1.3.12.2.1011.7.2":"DEC Hash Algorithm","1.3.12.2.1011.7.2.1":"DECMD2","1.3.12.2.1011.7.2.2":"DECMD4","1.3.12.2.1011.7.3":"DEC Signature Algorithm","1.3.12.2.1011.7.3.1":"DEC MD2 with RSA","1.3.12.2.1011.7.3.2":"DEC MD4 with RSA","1.3.12.2.1011.7.3.3":"DEC DEAMAC","1.3.14.2.26.5":"SHA","1.3.14.3.2.1.1":"RSA","1.3.14.3.2.2":"MD4 with RSA","1.3.14.3.2.2.1":"Sqmod-N","1.3.14.3.2.3":"MD5 with RSA","1.3.14.3.2.3.1":"Sqmod-Nwith RSA","1.3.14.3.2.4":"MD4 with RSA Encryption","1.3.14.3.2.6":"DES ECB","1.3.14.3.2.7":"DES CBC","1.3.14.3.2.8":"DES OFB","1.3.14.3.2.9":"DES CFB","1.3.14.3.2.10":"DES MAC","1.3.14.3.2.11":"RSA Signature","1.3.14.3.2.12":"DSA","1.3.14.3.2.13":"DSA with SHA","1.3.14.3.2.14":"MDC2 with RSA Signature","1.3.14.3.2.15":"SHA with RSA Signature","1.3.14.3.2.16":"DH with Common Modulus","1.3.14.3.2.17":"Des EDE","1.3.14.3.2.18":"SHA","1.3.14.3.2.19":"MDC-2","1.3.14.3.2.20":"DSA Common","1.3.14.3.2.21":"DSA Common with SHA","1.3.14.3.2.22":"RSA Key Transport","1.3.14.3.2.23":"Keyed-hash-seal","1.3.14.3.2.24":"MD2 with RSA Signature","1.3.14.3.2.25":"MD5 with RSA Signature","1.3.14.3.2.26":"SHA1","1.3.14.3.2.27":"DSA with SHA1","1.3.14.3.2.28":"DSA with Common SHA1","1.3.14.3.2.29":"SHA-1 with RSA Encryption","1.3.14.3.3.1":"Simple-strong-auth","1.3.14.7.2.1.1":"El Gamal","1.3.14.7.2.3.1":"MD2 with RSA","1.3.14.7.2.3.2":"MD2 with El Gamal","1.3.36.1":"Document","1.3.36.1.1":"Final Version","1.3.36.1.2":"Draft","1.3.36.2":"Sio","1.3.36.2.1":"Sedu","1.3.36.3":"Algorithm","1.3.36.3.1":"Encryption Algorithm","1.3.36.3.1.1":"DES","1.3.36.3.1.1.1":"DES ECB_pad","1.3.36.3.1.1.1.1":"DES ECB_ISOpad","1.3.36.3.1.1.2.1":"DES CBC_pad","1.3.36.3.1.1.2.1.1":"DES CBC_ISOpad","1.3.36.3.1.2":"IDEA","1.3.36.3.1.2.1":"IDEA ECB","1.3.36.3.1.2.1.1":"IDEA ECB_pad","1.3.36.3.1.2.1.1.1":"IDEA ECB_ISOpad","1.3.36.3.1.2.2":"IDEA CBC","1.3.36.3.1.2.2.1":"IDEA CBC_pad","1.3.36.3.1.2.2.1.1":"IDEA CBC_ISOpad","1.3.36.3.1.2.3":"IDEA OFB","1.3.36.3.1.2.4":"IDEA CFB","1.3.36.3.1.3":"DES_3","1.3.36.3.1.3.1.1":"DES_3 ECB_pad","1.3.36.3.1.3.1.1.1":"DES_3 ECB_ISOpad","1.3.36.3.1.3.2.1":"DES_3 CBC_pad","1.3.36.3.1.3.2.1.1":"DES_3 CBC_ISOpad","1.3.36.3.1.4":"RSA Encryption","1.3.36.3.1.4.512.17":"RSA Encryption Withlmod512expe17","1.3.36.3.1.5":"BSI-1","1.3.36.3.1.5.1":"BSI_1 ECB_pad","1.3.36.3.1.5.2":"BSI_1 CBC_pad","1.3.36.3.1.5.2.1":"BSI_1 CBC_PEMpad","1.3.36.3.2":"Hash Algorithm","1.3.36.3.2.1":"Ripemd160","1.3.36.3.2.2":"Ripemd128","1.3.36.3.2.3":"Ripemd256","1.3.36.3.2.4":"Mdc2single Length","1.3.36.3.2.5":"Mdc2double Length","1.3.36.3.3":"Signature Algorithm","1.3.36.3.3.1":"RSA Signature","1.3.36.3.3.1.1":"RSA Signature WithSHA1","1.3.36.3.3.1.1.1024.11":"RSA Signature WithSHA1_l1024_l11","1.3.36.3.3.1.2":"RSA Signature Withripemd160","1.3.36.3.3.1.2.1024.11":"RSA Signature Withripemd160_l1024_l11","1.3.36.3.3.1.3":"RSA Signature Withrimpemd128","1.3.36.3.3.1.4":"RSA Signature Withrimpemd256","1.3.36.3.3.2":"Ecsie Sign","1.3.36.3.3.2.1":"Ecsie Sign WithSHA1","1.3.36.3.3.2.2":"Ecsie Sign Withripemd160","1.3.36.3.3.2.3":"Ecsie Sign Withmd2","1.3.36.3.3.2.4":"Ecsie Sign Withmd5","1.3.36.3.3.2.8.1.1.1":"Brainpool P160r1","1.3.36.3.3.2.8.1.1.2":"Brainpool P160t1","1.3.36.3.3.2.8.1.1.3":"Brainpool P192r1","1.3.36.3.3.2.8.1.1.4":"Brainpool P192t1","1.3.36.3.3.2.8.1.1.5":"Brainpool P224r1","1.3.36.3.3.2.8.1.1.6":"Brainpool P224t1","1.3.36.3.3.2.8.1.1.7":"Brainpool P256r1","1.3.36.3.3.2.8.1.1.8":"Brainpool P256t1","1.3.36.3.3.2.8.1.1.9":"Brainpool P320r1","1.3.36.3.3.2.8.1.1.10":"Brainpool P320t1","1.3.36.3.3.2.8.1.1.11":"Brainpool P384r1","1.3.36.3.3.2.8.1.1.12":"Brainpool P384t1","1.3.36.3.3.2.8.1.1.13":"Brainpool P512r1","1.3.36.3.3.2.8.1.1.14":"Brainpool P512t1","1.3.36.3.4":"Signature Scheme","1.3.36.3.4.1":"Sig S_ISO9796-1","1.3.36.3.4.2":"Sig S_ISO9796-2","1.3.36.3.4.2.1":"Sig S_ISO9796-2 with RED","1.3.36.3.4.2.2":"Sig S_ISO9796-2 with RSA","1.3.36.3.4.2.3":"Sig S_ISO9796-2 with RDN","1.3.36.4":"Attribute","1.3.36.5":"Policy","1.3.36.6":"Api","1.3.36.6.1":"Manufacturer-specific_api","1.3.36.6.1.1":"Utimaco-api","1.3.36.6.2":"Functionality-specific_api","1.3.36.7":"Keymgmnt","1.3.36.7.1":"Keyagree","1.3.36.7.1.1":"Bsi PKE","1.3.36.7.2":"Keytrans","1.3.36.7.2.1":"Enc ISO9796-2 Withrsa","1.3.36.8.1.1":"Teletrust Sig G Conform policy Identifier","1.3.36.8.2.1":"Directory Service","1.3.36.8.3.1":"Date Of Cert Gen","1.3.36.8.3.2":"Procuration","1.3.36.8.3.3":"Admission","1.3.36.8.3.4":"Monetary Limit","1.3.36.8.3.5":"Declaration Of Majority","1.3.36.8.3.6":"Integrated Circuit Card Serial Number","1.3.36.8.3.7":"PK Reference","1.3.36.8.3.8":"Restriction","1.3.36.8.3.9":"Retrieve If Allowed","1.3.36.8.3.10":"Requested Certificate","1.3.36.8.3.11":"Naming Authorities","1.3.36.8.3.11.1":"Recht Wirtschaft Steuern","1.3.36.8.3.11.1.1":"Rechtsanwaeltin","1.3.36.8.3.11.1.2":"Rechtsanwalt","1.3.36.8.3.11.1.3":"Rechts Beistand","1.3.36.8.3.11.1.4":"Steuer Beraterin","1.3.36.8.3.11.1.5":"Steuer Berater","1.3.36.8.3.11.1.6":"Steuer Bevollmaechtigte","1.3.36.8.3.11.1.7":"Steuer Bevollmaechtigter","1.3.36.8.3.11.1.8":"Notarin","1.3.36.8.3.11.1.9":"Notar","1.3.36.8.3.11.1.10":"Notar Vertreterin","1.3.36.8.3.11.1.11":"Notar Vertreter","1.3.36.8.3.11.1.12":"Notariats Verwalterin","1.3.36.8.3.11.1.13":"Notariats Verwalter","1.3.36.8.3.11.1.14":"Wirtschafts Prueferin","1.3.36.8.3.11.1.15":"Wirtschafts Pruefer","1.3.36.8.3.11.1.16":"ereidigte Buchprueferin","1.3.36.8.3.11.1.17":"ereidigter Buchpruefer","1.3.36.8.3.11.1.18":"Patent Anwaeltin","1.3.36.8.3.11.1.19":"Patent Anwalt","1.3.36.8.3.12":"Cert In Dir Since","1.3.36.8.3.13":"Cert Hash","1.3.36.8.3.14":"Name At Birth","1.3.36.8.3.15":"Additional Information","1.3.36.8.4.1":"Personal Data","1.3.36.8.4.8":"Restriction","1.3.36.8.5.1.1.1":"RSA Indicate SHA1","1.3.36.8.5.1.1.2":"RSA Indicate RIPEMD160","1.3.36.8.5.1.1.3":"RSA with SHA1","1.3.36.8.5.1.1.4":"RSA with RIPEMD160","1.3.36.8.5.1.2.1":"Dsa Extended","1.3.36.8.5.1.2.2":"Dsa with RIPEMD160","1.3.36.8.6.1":"Cert","1.3.36.8.6.2":"Cert Ref","1.3.36.8.6.3":"Attr Cert","1.3.36.8.6.4":"Attr Ref","1.3.36.8.6.5":"File Name","1.3.36.8.6.6":"Storage Time","1.3.36.8.6.7":"File Size","1.3.36.8.6.8":"Location","1.3.36.8.6.9":"Sig Number","1.3.36.8.6.10":"Auto Gen","1.3.36.8.7.1.1":"Pt Adobe ILL","1.3.36.8.7.1.2":"Pt Ami Pro","1.3.36.8.7.1.3":"Pt Auto CAD","1.3.36.8.7.1.4":"Pt Binary","1.3.36.8.7.1.5":"Pt BMP","1.3.36.8.7.1.6":"Pt CGM","1.3.36.8.7.1.7":"Pt Corel CRT","1.3.36.8.7.1.8":"Pt Corel DRW","1.3.36.8.7.1.9":"Pt Corel EXC","1.3.36.8.7.1.10":"Pt Corel PHT","1.3.36.8.7.1.11":"Pt Draw","1.3.36.8.7.1.12":"Pt DVI","1.3.36.8.7.1.13":"Pt EPS","1.3.36.8.7.1.14":"Pt Excel","1.3.36.8.7.1.15":"Pt GEM","1.3.36.8.7.1.16":"Pt GIF","1.3.36.8.7.1.17":"Pt HPGL","1.3.36.8.7.1.18":"Pt JPEG","1.3.36.8.7.1.19":"Pt Kodak","1.3.36.8.7.1.20":"Pt LaTeX","1.3.36.8.7.1.21":"Pt Lotus","1.3.36.8.7.1.22":"Pt Lotus PIC","1.3.36.8.7.1.23":"Pt Mac PICT","1.3.36.8.7.1.24":"Pt Mac Word","1.3.36.8.7.1.25":"Pt MSWfD","1.3.36.8.7.1.26":"Pt MSWord","1.3.36.8.7.1.27":"Pt MSWord2","1.3.36.8.7.1.28":"Pt MSWord6","1.3.36.8.7.1.29":"Pt MSWord8","1.3.36.8.7.1.30":"Pt PDF","1.3.36.8.7.1.31":"Pt PIF","1.3.36.8.7.1.32":"Pt Postscript","1.3.36.8.7.1.33":"Pt RTF","1.3.36.8.7.1.34":"Pt SCITEX","1.3.36.8.7.1.35":"Pt TAR","1.3.36.8.7.1.36":"Pt Targa","1.3.36.8.7.1.37":"Pt TeX","1.3.36.8.7.1.38":"Pt Text","1.3.36.8.7.1.39":"Pt TIFF","1.3.36.8.7.1.40":"Pt TIFF-FC","1.3.36.8.7.1.41":"Pt UID","1.3.36.8.7.1.42":"Pt UU Encode","1.3.36.8.7.1.43":"Pt WMF","1.3.36.8.7.1.44":"Pt Word Perfect","1.3.36.8.7.1.45":"Pt WP Grph","1.3.101.1.4":"Thawte-ce","1.3.101.1.4.1":"Strong Extranet","1.3.101.112":"Edwards-curve Digital Signature Algorithm (EdDSA) Ed25519","1.3.132.0.1":"Sect163k1","1.3.132.0.2":"Sect163r1","1.3.132.0.3":"Sect239k1","1.3.132.0.4":"Sect113r1","1.3.132.0.5":"Sect113r2","1.3.132.0.6":"Secp112r1","1.3.132.0.7":"Secp112r2","1.3.132.0.8":"Secp160r1","1.3.132.0.9":"Secp160k1","1.3.132.0.10":"Secp256k1","1.3.132.0.15":"Sect163r2","1.3.132.0.16":"Sect283k1","1.3.132.0.17":"Sect283r1","1.3.132.0.22":"Sect131r1","1.3.132.0.23":"Sect131r2","1.3.132.0.24":"Sect193r1","1.3.132.0.25":"Sect193r2","1.3.132.0.26":"Sect233k1","1.3.132.0.27":"Sect233r1","1.3.132.0.28":"Secp128r1","1.3.132.0.29":"Secp128r2","1.3.132.0.30":"Secp160r2","1.3.132.0.31":"Secp192k1","1.3.132.0.32":"Secp224k1","1.3.132.0.33":"Secp224r1","1.3.132.0.34":"Secp384r1","1.3.132.0.35":"Secp521r1","1.3.132.0.36":"Sect409k1","1.3.132.0.37":"Sect409r1","1.3.132.0.38":"Sect571k1","1.3.132.0.39":"Sect571r1","1.3.133.16.840.9.84":"x984","1.3.133.16.840.9.84.0":"x984 Module","1.3.133.16.840.9.84.0.1":"x984 Biometrics","1.3.133.16.840.9.84.0.2":"x984 CMS","1.3.133.16.840.9.84.0.3":"x984 Identifiers","1.3.133.16.840.9.84.1":"x984 Biometric","1.3.133.16.840.9.84.1.0":"Biometric Unknown Type","1.3.133.16.840.9.84.1.1":"Biometric Body Odor","1.3.133.16.840.9.84.1.2":"Biometric DNA","1.3.133.16.840.9.84.1.3":"Biometric Ear Shape","1.3.133.16.840.9.84.1.4":"Biometric Facial Features","1.3.133.16.840.9.84.1.5":"Biometric Finger Image","1.3.133.16.840.9.84.1.6":"Biometric Finger Geometry","1.3.133.16.840.9.84.1.7":"Biometric Hand Geometry","1.3.133.16.840.9.84.1.8":"Biometric Iris Features","1.3.133.16.840.9.84.1.9":"Biometric Keystroke Dynamics","1.3.133.16.840.9.84.1.10":"Biometric Palm","1.3.133.16.840.9.84.1.11":"Biometric Retina","1.3.133.16.840.9.84.1.12":"Biometric Signature","1.3.133.16.840.9.84.1.13":"Biometric Speech Pattern","1.3.133.16.840.9.84.1.14":"Biometric Thermal Image","1.3.133.16.840.9.84.1.15":"Biometric Vein Pattern","1.3.133.16.840.9.84.1.16":"Biometric Thermal Face Image","1.3.133.16.840.9.84.1.17":"Biometric Thermal Hand Image","1.3.133.16.840.9.84.1.18":"Biometric Lip Movement","1.3.133.16.840.9.84.1.19":"Biometric Gait","1.3.133.16.840.9.84.3":"x984 Matching Method","1.3.133.16.840.9.84.4":"x984 Format Owner","1.3.133.16.840.9.84.4.0":"x984 Cbeff Owner","1.3.133.16.840.9.84.4.1":"x984 Ibia Owner","1.3.133.16.840.9.84.4.1.1":"Ibia Owner SAFLINK","1.3.133.16.840.9.84.4.1.2":"Ibia Owner Bioscrypt","1.3.133.16.840.9.84.4.1.3":"Ibia Owner Visionics","1.3.133.16.840.9.84.4.1.4":"Ibia Owner Infineon Technologies AG","1.3.133.16.840.9.84.4.1.5":"Ibia Owner Iridian Technologies","1.3.133.16.840.9.84.4.1.6":"Ibia Owner Veridicom","1.3.133.16.840.9.84.4.1.7":"Ibia Owner Cyber SIGN","1.3.133.16.840.9.84.4.1.8":"Ibia Ownere Cryp","1.3.133.16.840.9.84.4.1.9":"Ibia Owner Fingerprint Cards AB","1.3.133.16.840.9.84.4.1.10":"Ibia Owner Secu Gen","1.3.133.16.840.9.84.4.1.11":"Ibia Owner Precise Biometric","1.3.133.16.840.9.84.4.1.12":"Ibia Owner Identix","1.3.133.16.840.9.84.4.1.13":"Ibia Owner DERMALOG","1.3.133.16.840.9.84.4.1.14":"Ibia Owner LOGICO","1.3.133.16.840.9.84.4.1.15":"Ibia Owner NIST","1.3.133.16.840.9.84.4.1.16":"Ibia Owner A3 Vision","1.3.133.16.840.9.84.4.1.17":"Ibia Owner NEC","1.3.133.16.840.9.84.4.1.18":"Ibia Owner ST Microelectronics","2.5.4.0":"Object Class","2.5.4.1":"Aliased Entry Name","2.5.4.2":"Knowledge Information","2.5.4.3":"Common Name","2.5.4.4":"Surname","2.5.4.5":"Serial Number","2.5.4.6":"Country Name","2.5.4.7":"Locality","2.5.4.7.1":"Collective Locality Name","2.5.4.8":"State","2.5.4.8.1":"Collective State Or Province Name","2.5.4.9":"Street Address","2.5.4.9.1":"Collective Street Address","2.5.4.97":"Organization Identifier","2.5.4.10":"Organization","2.5.4.10.1":"Collective Organization Name","2.5.4.11":"Organization Unit","2.5.4.11.1":"Collective Organization Unit Name","2.5.4.12":"Title","2.5.4.13":"Description","2.5.4.14":"Search Guide","2.5.4.15":"Business Category","2.5.4.16":"Postal Address","2.5.4.16.1":"Collective Postal Address","2.5.4.17":"Postal Code","2.5.4.17.1":"Collective Postal Code","2.5.4.18":"Post Office Box","2.5.4.18.1":"Collective Post Office Box","2.5.4.19":"Physical Delivery Office Name","2.5.4.19.1":"Collective Physical Delivery Office Name","2.5.4.20":"Telephone Number","2.5.4.20.1":"Collective Telephone Number","2.5.4.21":"Telex Number","2.5.4.21.1":"Collective Telex Number","2.5.4.22":"Teletex Terminal Identifier","2.5.4.22.1":"Collective Teletex Terminal Identifier","2.5.4.23":"Facsimile Telephone Number","2.5.4.23.1":"Collective Facsimile Telephone Number","2.5.4.24":"x121 Address","2.5.4.25":"International ISDN Number","2.5.4.25.1":"Collective International ISDN Number","2.5.4.26":"Registered Address","2.5.4.27":"Destination Indicator","2.5.4.28":"Preferred Delivery Mehtod","2.5.4.29":"Presentation Address","2.5.4.30":"Supported Application Context","2.5.4.31":"Member","2.5.4.32":"Owner","2.5.4.33":"Role Occupant","2.5.4.34":"See Also","2.5.4.35":"User Password","2.5.4.36":"User Certificate","2.5.4.37":"Ca Certificate","2.5.4.38":"Authority Revocation List","2.5.4.39":"Certificate Revocation List","2.5.4.40":"Cross Certificate Pair","2.5.4.41":"Name","2.5.4.42":"Given Name","2.5.4.43":"Initials","2.5.4.44":"Generation Qualifier","2.5.4.45":"Unique Identifier","2.5.4.46":"Dn Qualifier","2.5.4.47":"Enhanced Search Guide","2.5.4.48":"Protocol Information","2.5.4.49":"Distinguished Name","2.5.4.50":"Unique Member","2.5.4.51":"House Identifier","2.5.4.52":"Supported Algorithms","2.5.4.53":"Delta Revocation List","2.5.4.54":"DMD Name","2.5.4.55":"Clearance","2.5.4.56":"Default Dir Qop","2.5.4.57":"Attribute Integrity Info","2.5.4.58":"Attribute Certificate","2.5.4.59":"Attribute Certificate Revocation List","2.5.4.60":"Conf Key Info","2.5.4.61":"AA Certificate","2.5.4.62":"Attribute Descriptor Certificate","2.5.4.63":"Attribute Authority Revocation List","2.5.4.64":"Family Information","2.5.4.65":"Pseudonym","2.5.4.66":"Communications Service","2.5.4.67":"Communications Network","2.5.4.68":"Certification Practice Stmt","2.5.4.69":"Certificate Policy","2.5.4.70":"Pki Path","2.5.4.71":"Priv Policy","2.5.4.72":"Role","2.5.4.73":"Delegation Path","2.5.4.74":"Prot Priv Policy","2.5.4.75":"XML Privilege Info","2.5.4.76":"XML Priv Policy","2.5.4.82":"Permission","2.5.6.0":"Top","2.5.6.1":"Alias","2.5.6.2":"Country","2.5.6.3":"Locality","2.5.6.4":"Organization","2.5.6.5":"Organization Unit","2.5.6.6":"Person","2.5.6.7":"Organization Person","2.5.6.8":"Organization Role","2.5.6.9":"Group Of Names","2.5.6.10":"Residential Person","2.5.6.11":"Application Process","2.5.6.12":"Application Entity","2.5.6.13":"DSA","2.5.6.14":"Device","2.5.6.15":"Strong Authentication User","2.5.6.16":"Certificate Authority","2.5.6.17":"Group Of Unique Names","2.5.6.21":"Pki User","2.5.6.22":"Pki CA","2.5.8.1.1":"RSA","2.5.29.1":"Authority Key Identifier","2.5.29.2":"Key Attributes","2.5.29.3":"Certificate Policies","2.5.29.4":"Key Usage Restriction","2.5.29.5":"Policy Mapping","2.5.29.6":"Subtrees Constraint","2.5.29.7":"Subject Alt Name","2.5.29.8":"Issuer Alt Name","2.5.29.9":"Subject Directory Attributes","2.5.29.10":"Basic Constraints","2.5.29.11":"Name Constraints","2.5.29.12":"Policy Constraints","2.5.29.13":"Basic Constraints","2.5.29.14":"Subject Key Identifier","2.5.29.15":"Key Usage","2.5.29.16":"Private Key Usage Period","2.5.29.17":"Subject Alternative Name","2.5.29.18":"Issuer Alternative Name","2.5.29.19":"Basic Constraints","2.5.29.20":"CRL Number","2.5.29.21":"CRL Reason","2.5.29.22":"Expiration Date","2.5.29.23":"Instruction Code","2.5.29.24":"Invalidity Date","2.5.29.25":"CRL Distribution Points","2.5.29.26":"Issuing Distribution Point","2.5.29.27":"Delta CRL Indicator","2.5.29.28":"Issuing Distribution Point","2.5.29.29":"Certificate Issuer","2.5.29.30":"Name Constraints","2.5.29.31":"CRL Distribution Points","2.5.29.32":"Certificate Policies","2.5.29.32.0":"Any Policy","2.5.29.33":"Policy Mappings","2.5.29.34":"Policy Constraints","2.5.29.35":"Authority Key Identifier","2.5.29.36":"Policy Constraints","2.5.29.37":"Extended Key Usage","2.5.29.37.0":"Any Extended Key Usage","2.5.29.38":"Authority Attribute Identifier","2.5.29.39":"Role Spec Cert Identifier","2.5.29.40":"CRL Stream Identifier","2.5.29.41":"Basic Att Constraints","2.5.29.42":"Delegated Name Constraints","2.5.29.43":"Time Specification","2.5.29.44":"CRL Scope","2.5.29.45":"Status Referrals","2.5.29.46":"Freshest CRL","2.5.29.47":"Ordered List","2.5.29.48":"Attribute Descriptor","2.5.29.49":"User Notice","2.5.29.50":"SOA Identifier","2.5.29.51":"Base Update Time","2.5.29.52":"Acceptable Cert Policies","2.5.29.53":"Delta Info","2.5.29.54":"Inhibit Any Policy","2.5.29.55":"Target Information","2.5.29.56":"No Rev Avail","2.5.29.57":"Acceptable Privilege Policies","2.5.29.58":"To Be Revoked","2.5.29.59":"Revoked Groups","2.5.29.60":"Expired Certs On CRL","2.5.29.61":"Indirect Issuer","2.5.29.62":"No Assertion","2.5.29.63":"A Aissuing Distribution Point","2.5.29.64":"Issued On Behalf Of","2.5.29.65":"Single Use","2.5.29.66":"Group AC","2.5.29.67":"Allowed Att Ass","2.5.29.68":"Attribute Mappings","2.5.29.69":"Holder Name Constraints","2.16.528.1.1001.1.1.1.12.6.1.1.1":"Digi Notar EV policy","2.16.578.1.26.1.3.3":"Buy Pass EV policy","2.16.724.1.2.2.4.1":"Personal Data Info","2.16.756.1.89.1.2.1.1":"Swiss Sign EV policy","2.16.840.1.101.2.1.1.1":"Sdns Signature Algorithm","2.16.840.1.101.2.1.1.2":"Fortezza Signature Algorithm","2.16.840.1.101.2.1.1.3":"Sdns Confidentiality Algorithm","2.16.840.1.101.2.1.1.4":"Fortezza Confidentiality Algorithm","2.16.840.1.101.2.1.1.5":"Sdns Integrity Algorithm","2.16.840.1.101.2.1.1.6":"Fortezza Integrity Algorithm","2.16.840.1.101.2.1.1.7":"Sdns Token Protection Algorithm","2.16.840.1.101.2.1.1.8":"Fortezza Token Protection Algorithm","2.16.840.1.101.2.1.1.9":"Sdns Key Management Algorithm","2.16.840.1.101.2.1.1.10":"Fortezza Key Management Algorithm","2.16.840.1.101.2.1.1.11":"Sdns K Mand Sig Algorithm","2.16.840.1.101.2.1.1.12":"Fortezza K Mand Sig Algorithm","2.16.840.1.101.2.1.1.13":"Suite A Signature Algorithm","2.16.840.1.101.2.1.1.14":"Suite A Confidentiality Algorithm","2.16.840.1.101.2.1.1.15":"Suite A Integrity Algorithm","2.16.840.1.101.2.1.1.16":"Suite A Token Protection Algorithm","2.16.840.1.101.2.1.1.17":"Suite A Key Management Algorithm","2.16.840.1.101.2.1.1.18":"Suite AK Mand Sig Algorithm","2.16.840.1.101.2.1.1.19":"Fortezza Updated Sig Algorithm","2.16.840.1.101.2.1.1.20":"Fortezza K Mand Upd Sig Algorithms","2.16.840.1.101.2.1.1.21":"Fortezza Updated Integ Algorithm","2.16.840.1.101.2.1.1.22":"Key Exchange Algorithm","2.16.840.1.101.2.1.1.23":"Fortezza Wrap80 Algorithm","2.16.840.1.101.2.1.1.24":"KEA Key Encryption Algorithm","2.16.840.1.101.2.1.2.1":"Rfc822 Message Format","2.16.840.1.101.2.1.2.2":"Empty Content","2.16.840.1.101.2.1.2.3":"Csp Content Type","2.16.840.1.101.2.1.2.42":"MSP Rev3 Content Type","2.16.840.1.101.2.1.2.48":"MSP Content Type","2.16.840.1.101.2.1.2.49":"MSP Rekey Agent Protocol","2.16.840.1.101.2.1.2.50":"MSP MMP","2.16.840.1.101.2.1.2.66":"MSP Rev3-1 Content Type","2.16.840.1.101.2.1.2.72":"Forwarded MSP Message Body Part","2.16.840.1.101.2.1.2.73":"MSP Forwarded Message Parameters","2.16.840.1.101.2.1.2.74":"Forwarded CSP Msg Body Part","2.16.840.1.101.2.1.2.75":"CSP Forwarded Message Parameters","2.16.840.1.101.2.1.2.76":"MSP MMP2","2.16.840.1.101.2.1.3.1":"SDNS Security Policy","2.16.840.1.101.2.1.3.2":"SDNS PRBAC","2.16.840.1.101.2.1.3.3":"Mosaic PRBAC","2.16.840.1.101.2.1.3.10":"SI Security Policy","2.16.840.1.101.2.1.3.10.0":"SI NASP","2.16.840.1.101.2.1.3.10.1":"SI ELCO","2.16.840.1.101.2.1.3.10.2":"SI TK","2.16.840.1.101.2.1.3.10.3":"SI DSAP","2.16.840.1.101.2.1.3.10.4":"SI SSSS","2.16.840.1.101.2.1.3.10.5":"SI DNASP","2.16.840.1.101.2.1.3.10.6":"SI BYEMAN","2.16.840.1.101.2.1.3.10.7":"SI REL-US","2.16.840.1.101.2.1.3.10.8":"SI REL-AUS","2.16.840.1.101.2.1.3.10.9":"SI REL-CAN","2.16.840.1.101.2.1.3.10.10":"SI REL_UK","2.16.840.1.101.2.1.3.10.11":"SI REL-NZ","2.16.840.1.101.2.1.3.10.12":"SI Generic","2.16.840.1.101.2.1.3.11":"Genser","2.16.840.1.101.2.1.3.11.0":"Genser Nations","2.16.840.1.101.2.1.3.11.1":"Genser Comsec","2.16.840.1.101.2.1.3.11.2":"Genser Acquisition","2.16.840.1.101.2.1.3.11.3":"Genser Security Categories","2.16.840.1.101.2.1.3.11.3.0":"Genser Tag Set Name","2.16.840.1.101.2.1.3.12":"Default Security Policy","2.16.840.1.101.2.1.3.13":"Capco Markings","2.16.840.1.101.2.1.3.13.0":"Capco Security Categories","2.16.840.1.101.2.1.3.13.0.1":"Capco Tag Set Name1","2.16.840.1.101.2.1.3.13.0.2":"Capco Tag Set Name2","2.16.840.1.101.2.1.3.13.0.3":"Capco Tag Set Name3","2.16.840.1.101.2.1.3.13.0.4":"Capco Tag Set Name4","2.16.840.1.101.2.1.5.1":"SDNS Key Management Certificate","2.16.840.1.101.2.1.5.2":"SDNS User Signature Certificate","2.16.840.1.101.2.1.5.3":"SDNS K Mand Sig Certificate","2.16.840.1.101.2.1.5.4":"Fortezza Key Management Certificate","2.16.840.1.101.2.1.5.5":"Fortezza K Mand Sig Certificate","2.16.840.1.101.2.1.5.6":"Fortezza User Signature Certificate","2.16.840.1.101.2.1.5.7":"Fortezza CA Signature Certificate","2.16.840.1.101.2.1.5.8":"SDNS CA Signature Certificate","2.16.840.1.101.2.1.5.10":"Auxiliary Vector","2.16.840.1.101.2.1.5.11":"Ml Receipt Policy","2.16.840.1.101.2.1.5.12":"Ml Membership","2.16.840.1.101.2.1.5.13":"Ml Administrators","2.16.840.1.101.2.1.5.14":"Alid","2.16.840.1.101.2.1.5.20":"Jan UKMs","2.16.840.1.101.2.1.5.21":"Feb UKMs","2.16.840.1.101.2.1.5.22":"Mar UKMs","2.16.840.1.101.2.1.5.23":"Apr UKMs","2.16.840.1.101.2.1.5.24":"May UKMs","2.16.840.1.101.2.1.5.25":"Jun UKMs","2.16.840.1.101.2.1.5.26":"Jul UKMs","2.16.840.1.101.2.1.5.27":"Aug UKMs","2.16.840.1.101.2.1.5.28":"Sep UKMs","2.16.840.1.101.2.1.5.29":"Oct UKMs","2.16.840.1.101.2.1.5.30":"Nov UKMs","2.16.840.1.101.2.1.5.31":"Dec UKMs","2.16.840.1.101.2.1.5.40":"Meta SDN Sckl","2.16.840.1.101.2.1.5.41":"Sdns CKL","2.16.840.1.101.2.1.5.42":"Meta SDN Ssignature CKL","2.16.840.1.101.2.1.5.43":"Sdns Signature CKL","2.16.840.1.101.2.1.5.44":"Sdns Certificate Revocation List","2.16.840.1.101.2.1.5.45":"Fortezza Certificate Revocation List","2.16.840.1.101.2.1.5.46":"Fortezza CKL","2.16.840.1.101.2.1.5.47":"Al Exempted Address Processor","2.16.840.1.101.2.1.5.48":"Guard","2.16.840.1.101.2.1.5.49":"Algorithms Supported","2.16.840.1.101.2.1.5.50":"Suite A Key Management Certificate","2.16.840.1.101.2.1.5.51":"Suite AK Mand Sig Certificate","2.16.840.1.101.2.1.5.52":"Suite A User Signature Certificate","2.16.840.1.101.2.1.5.53":"Prbac Info","2.16.840.1.101.2.1.5.54":"Prbac CA Constraints","2.16.840.1.101.2.1.5.55":"Sig Or KM Privileges","2.16.840.1.101.2.1.5.56":"Comm Privileges","2.16.840.1.101.2.1.5.57":"Labeled Attribute","2.16.840.1.101.2.1.5.58":"Policy Information File","2.16.840.1.101.2.1.5.59":"Sec Policy Information File","2.16.840.1.101.2.1.5.60":"CA Clearance Constraint","2.16.840.1.101.2.1.7.1":"CSP Extns","2.16.840.1.101.2.1.7.1.0":"CSP Cs Extn","2.16.840.1.101.2.1.8.1":"MISSI Security Categories","2.16.840.1.101.2.1.8.2":"Standard Security Label Privileges","2.16.840.1.101.2.1.10.1":"SIG Privileges","2.16.840.1.101.2.1.10.2":"KM Privileges","2.16.840.1.101.2.1.10.3":"Named Tag Set Privilege","2.16.840.1.101.2.1.11.1":"UK Demo","2.16.840.1.101.2.1.11.2":"US DOD Class2","2.16.840.1.101.2.1.11.3":"US Medium Pilot","2.16.840.1.101.2.1.11.4":"US DOD Class4","2.16.840.1.101.2.1.11.5":"US DOD Class3","2.16.840.1.101.2.1.11.6":"US DOD Class5","2.16.840.1.101.2.1.12.0":"Test Security Policy","2.16.840.1.101.2.1.12.0.1":"TSP1","2.16.840.1.101.2.1.12.0.1.0":"TSP1 Security Categories","2.16.840.1.101.2.1.12.0.1.0.0":"TSP1 Tag Set Zero","2.16.840.1.101.2.1.12.0.1.0.1":"TSP1 Tag Set One","2.16.840.1.101.2.1.12.0.1.0.2":"TSP1 Tag Set Two","2.16.840.1.101.2.1.12.0.2":"TSP2","2.16.840.1.101.2.1.12.0.2.0":"TSP2 Security Categories","2.16.840.1.101.2.1.12.0.2.0.0":"TSP2 Tag Set Zero","2.16.840.1.101.2.1.12.0.2.0.1":"TSP2 Tag Set One","2.16.840.1.101.2.1.12.0.2.0.2":"TSP2 Tag Set Two","2.16.840.1.101.2.1.12.0.3":"Kafka","2.16.840.1.101.2.1.12.0.3.0":"Kafka Security Categories","2.16.840.1.101.2.1.12.0.3.0.1":"Kafka Tag Set Name1","2.16.840.1.101.2.1.12.0.3.0.2":"Kafka Tag Set Name2","2.16.840.1.101.2.1.12.0.3.0.3":"Kafka Tag Set Name3","2.16.840.1.101.2.1.12.1.1":"TCp1","2.16.840.1.101.3.1":"Slabel","2.16.840.1.101.3.2":"PKI","2.16.840.1.101.3.2.1":"NIST policy Identifier","2.16.840.1.101.3.2.1.2.7":"USPTO Basic 2003","2.16.840.1.101.3.2.1.2.8":"USPTO Medium 2003","2.16.840.1.101.3.2.1.2.9":"USPTO Medium Hardware","2.16.840.1.101.3.2.1.3.1":"FBCA Rudimentary Policy","2.16.840.1.101.3.2.1.3.2":"FBCA Basic Policy","2.16.840.1.101.3.2.1.3.3":"FBCA Medium Policy","2.16.840.1.101.3.2.1.3.4":"FBCA High Policy","2.16.840.1.101.3.2.1.3.12":"FBCA Medium Hardware Policy","2.16.840.1.101.3.2.1.48.1":"Nist Test Policy1","2.16.840.1.101.3.2.1.48.2":"Nist Test Policy2","2.16.840.1.101.3.2.1.48.3":"Nist Test Policy3","2.16.840.1.101.3.2.1.48.4":"Nist Test Policy4","2.16.840.1.101.3.2.1.48.5":"Nist Test Policy5","2.16.840.1.101.3.2.1.48.6":"Nist Test Policy6","2.16.840.1.101.3.2.2":"GAK","2.16.840.1.101.3.2.2.1":"KRA Key","2.16.840.1.101.3.2.3":"Extensions","2.16.840.1.101.3.2.3.1":"KR Technique","2.16.840.1.101.3.2.3.2":"K Recovery Capable","2.16.840.1.101.3.2.3.3":"KR","2.16.840.1.101.3.2.4":"Key Recovery Schemes","2.16.840.1.101.3.2.5":"Krapola","2.16.840.1.101.3.3":"ARPA","2.16.840.1.101.3.4":"Nist Algorithm","2.16.840.1.101.3.4.1":"AES","2.16.840.1.101.3.4.1.1":"AES128-ECB","2.16.840.1.101.3.4.1.2":"AES128-CBC","2.16.840.1.101.3.4.1.3":"AES128-OFB","2.16.840.1.101.3.4.1.4":"AES128-CFB","2.16.840.1.101.3.4.1.5":"AES128-wrap","2.16.840.1.101.3.4.1.6":"AES128-GCM","2.16.840.1.101.3.4.1.7":"AES128-CCM","2.16.840.1.101.3.4.1.8":"AES128-wrap-pad","2.16.840.1.101.3.4.1.21":"AES192-ECB","2.16.840.1.101.3.4.1.22":"AES192-CBC","2.16.840.1.101.3.4.1.23":"AES192-OFB","2.16.840.1.101.3.4.1.24":"AES192-CFB","2.16.840.1.101.3.4.1.25":"AES192-wrap","2.16.840.1.101.3.4.1.26":"AES192-GCM","2.16.840.1.101.3.4.1.27":"AES192-CCM","2.16.840.1.101.3.4.1.28":"AES192-wrap-pad","2.16.840.1.101.3.4.1.41":"AES256-ECB","2.16.840.1.101.3.4.1.42":"AES256-CBC","2.16.840.1.101.3.4.1.43":"AES256-OFB","2.16.840.1.101.3.4.1.44":"AES256-CFB","2.16.840.1.101.3.4.1.45":"AES256-wrap","2.16.840.1.101.3.4.1.46":"AES256-GCM","2.16.840.1.101.3.4.1.47":"AES256-CCM","2.16.840.1.101.3.4.1.48":"AES256-wrap-pad","2.16.840.1.101.3.4.2":"Hash Algos","2.16.840.1.101.3.4.2.1":"SHA-256","2.16.840.1.101.3.4.2.2":"SHA-384","2.16.840.1.101.3.4.2.3":"SHA-512","2.16.840.1.101.3.4.2.4":"SHA-224","2.16.840.1.101.3.4.3.1":"DSA with Sha224","2.16.840.1.101.3.4.3.2":"DSA with Sha256","2.16.840.1.113719.1.2.8":"Novell Algorithm","2.16.840.1.113719.1.2.8.22":"DES Cbc IV8","2.16.840.1.113719.1.2.8.23":"DES Cbc Pad IV8","2.16.840.1.113719.1.2.8.24":"DES EDE2 Cbc IV8","2.16.840.1.113719.1.2.8.25":"DES EDE2 Cbc Pad IV8","2.16.840.1.113719.1.2.8.26":"DES EDE3 Cbc IV8","2.16.840.1.113719.1.2.8.27":"DES EDE3 Cbc Pad IV8","2.16.840.1.113719.1.2.8.28":"Rc5 Cbc Pad","2.16.840.1.113719.1.2.8.29":"MD2 with RSA Encryption B Safe1","2.16.840.1.113719.1.2.8.30":"MD5 with RSA Encryption B Safe1","2.16.840.1.113719.1.2.8.31":"SHA1 with RSA Encryption B Safe1","2.16.840.1.113719.1.2.8.32":"Lm Digest","2.16.840.1.113719.1.2.8.40":"MD2","2.16.840.1.113719.1.2.8.50":"MD5","2.16.840.1.113719.1.2.8.51":"Ike Hmac with SHA1-RSA","2.16.840.1.113719.1.2.8.52":"Ike Hmac with MD5-RSA","2.16.840.1.113719.1.2.8.69":"RC2 Cbc Pad","2.16.840.1.113719.1.2.8.82":"SHA-1","2.16.840.1.113719.1.2.8.92":"RC2 B Safe1 Cbc","2.16.840.1.113719.1.2.8.95":"MD4","2.16.840.1.113719.1.2.8.130":"MD4 Packet","2.16.840.1.113719.1.2.8.131":"RSA Encryption Bsafe1","2.16.840.1.113719.1.2.8.132":"Nw Password","2.16.840.1.113719.1.2.8.133":"Novell Obfuscate-1","2.16.840.1.113719.1.9":"PKI","2.16.840.1.113719.1.9.4":"PKI Attribute Type","2.16.840.1.113719.1.9.4.1":"Security Attributes","2.16.840.1.113719.1.9.4.2":"Reliance Limit","2.16.840.1.113730.1":"Certificate Extension","2.16.840.1.113730.1.1":"Netscape Certificate Type","2.16.840.1.113730.1.2":"Netscape Base Url","2.16.840.1.113730.1.3":"Netscape Revocation Url","2.16.840.1.113730.1.4":"Netscape CA Revocation","2.16.840.1.113730.1.7":"Netscape Certificate Renewal","2.16.840.1.113730.1.8":"Netscape CA Policy","2.16.840.1.113730.1.9":"Home Page Url","2.16.840.1.113730.1.10":"Entity Logo","2.16.840.1.113730.1.11":"User Picture","2.16.840.1.113730.1.12":"Netscape Ssl Server","2.16.840.1.113730.1.13":"Netscape Comment","2.16.840.1.113730.2":"Data-type","2.16.840.1.113730.2.1":"Data GIF","2.16.840.1.113730.2.2":"Data JPEG","2.16.840.1.113730.2.3":"Data URL","2.16.840.1.113730.2.4":"Data HTML","2.16.840.1.113730.2.5":"Cert Sequence","2.16.840.1.113730.2.6":"Cert URL","2.16.840.1.113730.3":"Directory","2.16.840.1.113730.3.1":"Ldap Definitions","2.16.840.1.113730.3.1.1":"Car License","2.16.840.1.113730.3.1.2":"Department Number","2.16.840.1.113730.3.1.3":"Employee Number","2.16.840.1.113730.3.1.4":"Employee Type","2.16.840.1.113730.3.2.2":"Inet Org Person","2.16.840.1.113730.4.1":"Server Gated Crypto","2.16.840.1.113733.1":"PKI","2.16.840.1.113733.1.6.3":"Verisign CZAG","2.16.840.1.113733.1.6.6":"Verisign In Box","2.16.840.1.113733.1.6.11":"Verisign Onsite Jurisdiction Hash","2.16.840.1.113733.1.6.13":"Unknown Verisign VPN extension","2.16.840.1.113733.1.6.15":"Verisign Server ID","2.16.840.1.113733.1.7.1.1":"Verisign Cert Policies95 Qualifier1","2.16.840.1.113733.1.7.1.1.1":"Verisign CP Sv1notice","2.16.840.1.113733.1.7.1.1.2":"Verisign CP Sv1nsi","2.16.840.1.113733.1.7.54":"Symantec","2.16.840.1.113733.1.7.23.6":"Veri Sign EV policy","2.16.840.1.113733.1.7.48.1":"Thawte EV policy","2.16.840.1.113733.1.8.1":"erisign ISS Strong Crypto","2.16.840.1.113733.1.9":"PKCS7 Attribute","2.16.840.1.113733.1.9.2":"Message Type","2.16.840.1.113733.1.9.3":"PKI Status","2.16.840.1.113733.1.9.4":"Fail Info","2.16.840.1.113733.1.9.5":"Sender Nonce","2.16.840.1.113733.1.9.6":"Recipient Nonce","2.16.840.1.113733.1.9.7":"Trans ID","2.16.840.1.113733.1.9.8":"Extension Req","2.16.840.1.113741.2":"Intel CDSA","2.16.840.1.114028.10.1.2":"Entrust EV policy","2.16.840.1.114171.500.9":"Wells Fargo EV policy","2.16.840.1.114404.1.1.2.4.1":"Trust Wave EV policy","2.16.840.1.114412.1":"Digi Cert Non EV Certs","2.16.840.1.114412.1.1":"Digi Cert OV Cert","2.16.840.1.114412.1.2":"Digi Cert DV Cert","2.16.840.1.114412.1.3.0.1":"Digi Cert Global CA Policy","2.16.840.1.114412.1.3.0.2":"Digi Cert High Assurance EVCA Policy","2.16.840.1.114412.1.3.0.3":"Digi Cert Global Root CA Policy","2.16.840.1.114412.1.3.0.4":"Digi Cert Assured ID Root CA Policy","2.16.840.1.114412.1.11":"Digi Cert Federated Device Cert","2.16.840.1.114412.2.1":"Digi Cert EV policy","2.16.840.1.114412.2.2":"Digi Cert EV Cert","2.23.140.1.1":"EV guidelines certificate policy","2.16.840.1.114412.2.3":"Digi Cert Object Signing Cert","2.16.840.1.114412.2.3.1":"Digi Cert Code Signing Cert","2.16.840.1.114412.2.3.2":"Digi Cert EV Code Signing Cert","2.16.840.1.114412.2.3.11":"Digi Cert Kernel Code Signing Cert","2.16.840.1.114412.2.3.21":"Digi Cert Document Signing Cert","2.16.840.1.114412.2.4":"Digi Cert Client Cert","2.16.840.1.114412.2.4.1.1":"Digi Cert Level1 Personal Client Cert","2.16.840.1.114412.2.4.1.2":"Digi Cert Level1 Enterprise Client Cert","2.16.840.1.114412.2.4.2":"Digi Cert Level2 Client Cert","2.16.840.1.114412.2.4.3.1":"Digi Cert Level3 US Client Cert","2.16.840.1.114412.2.4.3.2":"Digi Cert Level3 CBP Client Cert","2.16.840.1.114412.2.4.4.1":"Digi Cert Level4 US Client Cert","2.16.840.1.114412.2.4.4.2":"Digi Cert Level4 CBP Client Cert","2.16.840.1.114412.2.4.5.1":"Digi Cert PIV Hardware Cert","2.16.840.1.114412.2.4.5.2":"Digi Cert PIV Card Auth Cert","2.16.840.1.114412.2.4.5.3":"Digi Cert PIV Content Signing Cert","2.16.840.1.114412.4.31":"Digi Cert Grid Classic Cert","2.16.840.1.114412.4.31.5":"Digi Cert Grid Integrated Cert","2.16.840.1.114412.31.4.31.1":"Digi Cert Grid Host Cert","2.16.840.1.114413.1.7.23.3":"Go Daddy EV policy","2.16.840.1.114414.1.7.23.3":"Starfield EV policy","2.16.840.1.114569.1.1.3":"SHAKEN/STIR Certificate Policy v1.3","2.23.42.0":"Content Type","2.23.42.0.0":"Pan Data","2.23.42.0.1":"Pan Token","2.23.42.0.2":"Pan Only","2.23.42.1":"Msg Ext","2.23.42.2":"Field","2.23.42.2.0":"Full Name","2.23.42.2.1":"Given Name","2.23.42.2.2":"Family Name","2.23.42.2.3":"Birth Family Name","2.23.42.2.4":"Place Name","2.23.42.2.5":"Identification Number","2.23.42.2.6":"Month","2.23.42.2.7":"Date","2.23.42.2.8":"Address","2.23.42.2.9":"Telephone","2.23.42.2.10":"Amount","2.23.42.2.11":"Account Number","2.23.42.2.12":"Pass Phrase","2.23.42.3":"Attribute","2.23.42.3.0":"Cert","2.23.42.3.0.0":"Root Key Thumb","2.23.42.3.0.1":"Additional Policy","2.23.42.4":"Algorithm","2.23.42.5":"Policy","2.23.42.5.0":"Root","2.23.42.6":"Module","2.23.42.7":"Cert Ext","2.23.42.7.0":"Hashed Root Key","2.23.42.7.1":"Certificate Type","2.23.42.7.2":"Merchant Data","2.23.42.7.3":"Card Cert Required","2.23.42.7.4":"Tunneling","2.23.42.7.5":"Set Extensions","2.23.42.7.6":"Set Qualifier","2.23.42.8":"Brand","2.23.42.8.1":"IATA-ATA","2.23.42.8.4":" ISA","2.23.42.8.5":"Master Card","2.23.42.8.30":"Diners","2.23.42.8.34":"American Express","2.23.42.8.6011":"Novus","2.23.42.9":"Vendor","2.23.42.9.0":"Globe Set","2.23.42.9.1":"IBM","2.23.42.9.2":"Cyber Cash","2.23.42.9.3":"Terisa","2.23.42.9.4":"RSADSI","2.23.42.9.5":"Veri Fone","2.23.42.9.6":"Trin Tech","2.23.42.9.7":"Bank Gate","2.23.42.9.8":"GTE","2.23.42.9.9":"Compu Source","2.23.42.9.10":"Griffin","2.23.42.9.11":"Certicom","2.23.42.9.12":"OSS","2.23.42.9.13":"Tenth Mountain","2.23.42.9.14":"Antares","2.23.42.9.15":"ECC","2.23.42.9.16":"Maithean","2.23.42.9.17":"Netscape","2.23.42.9.18":"erisign","2.23.42.9.19":"Blue Money","2.23.42.9.20":"Lacerte","2.23.42.9.21":"Fujitsu","2.23.42.9.22":"E Lab","2.23.42.9.23":"Entrust","2.23.42.9.24":"VI Anet","2.23.42.9.25":"III","2.23.42.9.26":"Open Market","2.23.42.9.27":"Lexem","2.23.42.9.28":"Intertrader","2.23.42.9.29":"Persimmon","2.23.42.9.30":"NABLE","2.23.42.9.31":"Espace-net","2.23.42.9.32":"Hitachi","2.23.42.9.33":"Microsoft","2.23.42.9.34":"NEC","2.23.42.9.35":"Mitsubishi","2.23.42.9.36":"NCR","2.23.42.9.37":"E-COMM","2.23.42.9.38":"Gemplus","2.23.42.10":"National","2.23.42.10.392":"Japan","2.23.43.1.4":"WTLS-ECC","2.23.43.1.4.1":"WTLS-ECC-curve1","2.23.43.1.4.6":"WTLS-ECC-curve6","2.23.43.1.4.8":"WTLS-ECC-curve8","2.23.43.1.4.9":"WTLS-ECC-curve9","2.23.133":"TCPA","2.23.133.1":"TCPA Spec Version","2.23.133.2":"TCPA Attribute","2.23.133.2.1":"TCPA Tpm Manufacturer","2.23.133.2.2":"TCPA Tpm Model","2.23.133.2.3":"TCPA Tpm Version","2.23.133.2.4":"TCPA Platform Manufacturer","2.23.133.2.5":"TCPA Platform Model","2.23.133.2.6":"TCPA Platform Version","2.23.133.2.7":"TCPA Component Manufacturer","2.23.133.2.8":"TCPA Component Model","2.23.133.2.9":"TCPA Component Version","2.23.133.2.10":"TCPA Security Qualities","2.23.133.2.11":"TCPA Tpm Protection Profile","2.23.133.2.12":"TCPA Tpm Security Target","2.23.133.2.13":"TCPA Foundation Protection Profile","2.23.133.2.14":"TCPA Foundation Security Target","2.23.133.2.15":"TCPA Tpm Id Label","2.23.133.3":"TCPA Protocol","2.23.133.3.1":"TCPA Prtt Tpm Id Protocol","2.23.134.1.2.1.8.210":"Post Signum Commercial Server Policy","2.23.134.1.2.2.3":"Post Signum Public CA","2.23.134.1.4.2.1":"Post Signum Root QCA","2.23.136.1.1.1":"MRTD Signature Data","2.54.1775.2":"Hashed Root Key","2.54.1775.3":"Certificate Type","2.54.1775.4":"Merchant Data","2.54.1775.5":"Card Cert Required","2.54.1775.6":"Tunneling","2.54.1775.7":"Set Qualifier","2.54.1775.99":"Set Data","1.3.6.1.4.1.11129.2.4.3":"CT Pre-Certificate Poison","2.23.140.1.2.2":"CA/B Forum Organization Validated","2.23.140.1.2.1":"CA/B Forum Domain Validated","1.3.6.1.4.1.44947.1.1.1":"Let's Encrypt","1.3.6.1.4.1.4329.7.2.4":"SslTlsCerts","1.3.6.1.4.1.4329.7":"Siemens Public Key Infrastructure","1.3.6.1.4.1.52266.1":"Legal Entity Identifier","1.3.6.1.4.1.52266.2":"Role","0.4.0.9496.1":"Domain Name Beneficiary","0.4.0.9496.2":"DNB Legal representative","0.4.0.9496.3":"Domain Name Owner","0.4.0.9496.4":"Domain Name Technical Operator","0.4.0.9496.5":"Type of relationship between DNB/DNO/DNT","0.4.0.9496.6":"DNB Main Activity Description","0.4.0.9496.7":"GDPR compliance attestation reference","0.4.0.9496.8":"Insurance coverage attestation","0.4.0.9496.9":"Valuation ranking"};
57
57
  /**
58
58
  * @license
59
59
  * Copyright (c) Peculiar Ventures, LLC.
@@ -61,7 +61,7 @@ const Nr={"2.5.4.3":"CN","2.5.4.6":"C","0.9.2342.19200300.100.1.25":"DC","1.2.84
61
61
  * This source code is licensed under the MIT license found in the
62
62
  * LICENSE file in the root directory of this source tree.
63
63
  */
64
- var kr,Kr,Hr=function(t,e,i,r,s){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!s)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!s:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?s.call(t,i):s?s.value=i:e.set(t,i),i};class jr{constructor(e){kr.set(this,new Re),t.BufferSourceConverter.isBufferSource(e)?Hr(this,kr,Se.parse(e,Re),"f"):Hr(this,kr,e,"f")}toJSON(){const t=[];return function(t,e,i,r){if("a"===i&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!r:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(t):r?r.value:e.get(t)}(this,kr,"f").forEach((e=>e.forEach((e=>{t.push({type:e.type,name:Mr[e.type],shortName:Nr[e.type],value:e.value.toString()})})))),t}}kr=new WeakMap;const _r=`${Ke}.2`;var Ur;!function(t){t[t.picture=0]="picture",t[t.handwrittenSignature=1]="handwrittenSignature"}(Ur||(Ur={}));let Fr=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:kt.Integer})],Fr.prototype,"predefinedBiometricType",void 0),ge([fe({type:kt.ObjectIdentifier})],Fr.prototype,"biometricDataOid",void 0),Fr=ge([de({type:Mt.Choice})],Fr);class Vr{constructor(t={}){this.typeOfBiometricData=new Fr,this.hashAlgorithm=new Gi,this.biometricDataHash=new ce,Object.assign(this,t)}}ge([fe({type:Fr})],Vr.prototype,"typeOfBiometricData",void 0),ge([fe({type:Gi})],Vr.prototype,"hashAlgorithm",void 0),ge([fe({type:ce})],Vr.prototype,"biometricDataHash",void 0),ge([fe({type:kt.IA5String,optional:!0})],Vr.prototype,"sourceDataUri",void 0);let Lr=Kr=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Kr.prototype)}};var Gr,$r;Lr=Kr=ge([de({type:Mt.Sequence,itemType:Vr})],Lr);const Qr=`${Ke}.3`;class Wr{constructor(){this.statementId="",this.statementInfo=new ArrayBuffer(0)}}ge([fe({type:kt.ObjectIdentifier})],Wr.prototype,"statementId",void 0),ge([fe({type:kt.Any,optional:!0})],Wr.prototype,"statementInfo",void 0);let qr=Gr=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Gr.prototype)}};qr=Gr=ge([de({type:Mt.Sequence,itemType:ke})],qr);class zr{constructor(t={}){Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier,optional:!0})],zr.prototype,"semanticsIdentifier",void 0),ge([fe({type:qr,optional:!0})],zr.prototype,"nameRegistrationAuthorities",void 0);let Jr=$r=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,$r.prototype)}};Jr=$r=ge([de({type:Mt.Sequence,itemType:Wr})],Jr);let Zr=class extends be{};var Xr,Yr;Zr=ge([de({type:Mt.Choice})],Zr),function(t){t.M="M",t.F="F",t.m="m",t.f="f"}(Xr||(Xr={}));let ts=Yr=class extends ei{constructor(t){super(t),Object.setPrototypeOf(this,Yr.prototype)}};ts=Yr=ge([de({type:Mt.Sequence})],ts);class es{constructor(t={}){this.templateID="",this.templateMajorVersion=0,this.templateMinorVersion=0,Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],es.prototype,"templateID",void 0),ge([fe({type:kt.Integer})],es.prototype,"templateMajorVersion",void 0),ge([fe({type:kt.Integer})],es.prototype,"templateMinorVersion",void 0);class is{constructor(t={}){this.name="",Object.assign(this,t)}}ge([fe({type:kt.Utf8String})],is.prototype,"name",void 0);let rs=class{constructor(t={}){Object.assign(this,t)}toString(){var t,e;return(null===(t=this.name)||void 0===t?void 0:t.toString())||(null===(e=this.spec)||void 0===e?void 0:e.name)||""}};ge([fe({type:be})],rs.prototype,"name",void 0),ge([fe({type:is})],rs.prototype,"spec",void 0),rs=ge([de({type:Mt.Choice})],rs);let ss=class{constructor(){this.value=new ArrayBuffer(0)}toString(){const t=this.getVersion();return`V${t.certificateIndex}.${t.keyIndex}`}getVersion(){let e=new Uint8Array(this.value);return this.value.byteLength<4&&(e=new Uint8Array(4),e.set(new Uint8Array(this.value),4-this.value.byteLength)),{keyIndex:parseInt(t.Convert.ToHex(e.slice(0,2)),16),certificateIndex:parseInt(t.Convert.ToHex(e.slice(2)),16)}}};ge([fe({type:kt.Integer,converter:_t})],ss.prototype,"value",void 0),ss=ge([de({type:Mt.Choice})],ss);let ns=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:kt.NumericString})],ns.prototype,"numericString",void 0),ge([fe({type:kt.PrintableString})],ns.prototype,"printableString",void 0),ge([fe({type:kt.TeletexString})],ns.prototype,"teletexString",void 0),ge([fe({type:kt.VideotexString})],ns.prototype,"videotexString",void 0),ge([fe({type:kt.IA5String})],ns.prototype,"ia5String",void 0),ge([fe({type:kt.GraphicString})],ns.prototype,"graphicString",void 0),ge([fe({type:kt.VisibleString})],ns.prototype,"visibleString",void 0),ge([fe({type:kt.GeneralString})],ns.prototype,"generalString",void 0),ge([fe({type:kt.UniversalString})],ns.prototype,"universalString",void 0),ge([fe({type:kt.BmpString})],ns.prototype,"bmpString",void 0),ns=ge([de({type:Mt.Choice})],ns);let os=class{constructor(t=new ArrayBuffer(0)){this.value=t}};var as;ge([fe({type:kt.Any})],os.prototype,"value",void 0),os=ge([de({type:Mt.Choice})],os);let cs=as=class extends Ji{constructor(t){super(t),Object.setPrototypeOf(this,as.prototype)}};cs=as=ge([de({type:Mt.Sequence})],cs);class ls{constructor(t={}){this.keySpec=0,this.cspName="",this.signature=new ArrayBuffer(0),Object.assign(this,t)}}var us;ge([fe({type:kt.Integer})],ls.prototype,"keySpec",void 0),ge([fe({type:kt.BmpString})],ls.prototype,"cspName",void 0),ge([fe({type:kt.BitString})],ls.prototype,"signature",void 0);let hs=us=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,us.prototype)}};var ps;hs=us=ge([de({type:Mt.Sequence,itemType:kt.Any})],hs);let ds=ps=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,ps.prototype)}};var fs;ds=ps=ge([de({type:Mt.Sequence,itemType:kt.Any})],ds);class ys{constructor(t={}){this.name="",this.value="",Object.assign(this,t)}}ge([fe({type:kt.BmpString})],ys.prototype,"name",void 0),ge([fe({type:kt.BmpString})],ys.prototype,"value",void 0);let Ss=fs=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,fs.prototype)}};Ss=fs=ge([de({type:Mt.Sequence,itemType:ys})],Ss);let Cs=class extends Ne{};Cs=ge([de({type:Mt.Sequence})],Cs);let As=class extends Ne{};As=ge([de({type:Mt.Sequence})],As);let ms=class extends Yi{};ms=ge([de({type:Mt.Sequence})],ms);class gs{constructor(t={}){this.clientId=0,this.machineName="",this.userName="",this.processName="",Object.assign(this,t)}}ge([fe({type:kt.Integer})],gs.prototype,"clientId",void 0),ge([fe({type:kt.Utf8String})],gs.prototype,"machineName",void 0),ge([fe({type:kt.Utf8String})],gs.prototype,"userName",void 0),ge([fe({type:kt.Utf8String})],gs.prototype,"processName",void 0);let vs=class{constructor(t){this.value="",t&&(this.value=t)}};ge([fe({type:kt.IA5String})],vs.prototype,"value",void 0),vs=ge([de({type:Mt.Choice})],vs);let Es=class{constructor(t){this.value="",t&&(this.value=t)}};ge([fe({type:kt.IA5String})],Es.prototype,"value",void 0),Es=ge([de({type:Mt.Choice})],Es);let ws=class{constructor(t){this.value="",t&&(this.value=t)}};ge([fe({type:kt.IA5String})],ws.prototype,"value",void 0),ws=ge([de({type:Mt.Choice})],ws);let Ps=class{constructor(t){this.value="",t&&(this.value=t)}};var Ds;ge([fe({type:kt.IA5String})],Ps.prototype,"value",void 0),Ps=ge([de({type:Mt.Choice})],Ps),function(t){t[t.sslClient=1]="sslClient",t[t.sslServer=2]="sslServer",t[t.sMime=4]="sMime",t[t.objectSigning=8]="objectSigning",t[t.sslCa=32]="sslCa",t[t.sMimeCa=64]="sMimeCa",t[t.objectSigningCa=128]="objectSigningCa"}(Ds||(Ds={}));class bs extends ae{toJSON(){const t=this.toNumber(),e=[];return t&Ds.objectSigning&&e.push("objectSigning"),t&Ds.objectSigningCa&&e.push("objectSigningCa"),t&Ds.sMime&&e.push("sMime"),t&Ds.sMimeCa&&e.push("sMimeCa"),t&Ds.sslCa&&e.push("sslCa"),t&Ds.sslClient&&e.push("sslClient"),t&Ds.sslServer&&e.push("sslServer"),e}toString(){return`[${this.toJSON().join(", ")}]`}}let Bs=class{constructor(t){this.value="",t&&(this.value=t)}};ge([fe({type:kt.IA5String})],Bs.prototype,"value",void 0),Bs=ge([de({type:Mt.Choice})],Bs);let Is=class{constructor(t){this.value="",t&&(this.value=t)}};ge([fe({type:kt.IA5String})],Is.prototype,"value",void 0),Is=ge([de({type:Mt.Choice})],Is);let Ts=class{constructor(t){this.value="",t&&(this.value=t)}};ge([fe({type:kt.IA5String})],Ts.prototype,"value",void 0),Ts=ge([de({type:Mt.Choice})],Ts);let xs=class{constructor(t={}){this.leiCode="",Object.assign(this,t)}};ge([fe({type:ft})],xs.prototype,"leiCode",void 0),ge([fe({type:ft,context:0,optional:!0})],xs.prototype,"leiRole",void 0),xs=ge([de({type:Mt.Sequence})],xs);let Rs=class{constructor(t){t&&(this.text=t)}get text(){return void 0!==this.bmpString?this.bmpString:void 0!==this.ia5String?this.ia5String:void 0!==this.printableString?this.printableString:void 0!==this.utf8String?this.utf8String:void 0!==this.visibleString?this.visibleString:void 0}set text(t){this.printableString=t}};ge([fe({type:kt.IA5String})],Rs.prototype,"ia5String",void 0),ge([fe({type:kt.VisibleString})],Rs.prototype,"visibleString",void 0),ge([fe({type:kt.BmpString})],Rs.prototype,"bmpString",void 0),ge([fe({type:kt.Utf8String})],Rs.prototype,"utf8String",void 0),ge([fe({type:kt.PrintableString})],Rs.prototype,"printableString",void 0),Rs=ge([de({type:Mt.Choice})],Rs);let Os=class extends Rs{constructor(t){super(),"string"==typeof t?this.text=t:t instanceof xs&&(this.struct=t)}};ge([fe({type:xs})],Os.prototype,"struct",void 0),Os=ge([de({type:Mt.Choice})],Os);let Ns=class extends Rs{};Ns=ge([de({type:Mt.Choice})],Ns);class Ms{constructor(e){this.offset=0,this.view=t.BufferSourceConverter.toUint8Array(e)}get position(){return this.offset}read(t=1){const e=this.view.slice(this.offset,this.offset+t);return this.offset=this.offset+e.length,e}readByte(){const t=this.read();if(!t.length)throw new Error("End of stream");return t[0]}readNumber(e){const i=this.read(e),r=t.Convert.ToHex(i);return parseInt(r,16)}readEnd(){return this.read(this.view.length-this.offset)}reset(){this.offset=0}}var ks,Ks,Hs,js,_s;!function(t){t[t.certificateTimestamp=0]="certificateTimestamp",t[t.treeHash=1]="treeHash"}(ks||(ks={})),function(t){t[t.none=0]="none",t[t.md5=1]="md5",t[t.sha1=2]="sha1",t[t.sha224=3]="sha224",t[t.sha256=4]="sha256",t[t.sha384=5]="sha384",t[t.sha512=6]="sha512"}(Ks||(Ks={})),function(t){t[t.anonymous=0]="anonymous",t[t.rsa=1]="rsa",t[t.dsa=2]="dsa",t[t.ecdsa=3]="ecdsa"}(Hs||(Hs={}));class Us extends class{static createStream(e){const i=t.BufferSourceConverter.toUint8Array(e);return new Ms(i)}}{constructor(t){super(),this.version=0,this.logId=new ArrayBuffer(32),this.timestamp=new Date,this.extensions=new ArrayBuffer(0),this.hashAlgorithm=0,this.signatureAlgorithm=0,this.signature=new ArrayBuffer(0),t&&this.parse(t)}parse(e){this.version=e.readByte(),e.read(2),this.logId=t.BufferSourceConverter.toArrayBuffer(e.read(32)),this.timestamp=new Date(e.readNumber(8));const i=e.readNumber(2);this.extensions=e.read(i).buffer,this.hashAlgorithm=e.readByte(),this.signatureAlgorithm=e.readByte(),this.signature=e.read(e.readNumber(2)).buffer}toJSON(){return{version:this.version,logId:t.Convert.ToHex(this.logId),timestamp:this.timestamp,extensions:t.Convert.ToBase64(this.extensions),hashAlgorithm:Ks[this.hashAlgorithm]||"undefined",signatureAlgorithm:Hs[this.signatureAlgorithm]||"undefined",signature:t.Convert.ToBase64(this.signature)}}}class Fs extends ce{constructor(){super(...arguments),this.items=[]}fromASN(t){super.fromASN(t);const e=new Ms(this.buffer),i=e.readNumber(2);for(this.items=[];e.position<i;)this.items.push(new Us(e));return this}toJSON(){return this.items.map((t=>t.toJSON()))}}!function(t){t[t.v1=1]="v1"}(js||(js={}));class Vs{constructor(t={}){this.version=js.v1,Object.assign(this,t)}}ge([fe({type:kt.Integer})],Vs.prototype,"version",void 0);class Ls{constructor(t={}){this.version=js.v1,this.location=new ke,this.requiresAuth=!1,Object.assign(this,t)}}ge([fe({type:kt.Integer})],Ls.prototype,"version",void 0),ge([fe({type:ke})],Ls.prototype,"location",void 0),ge([fe({type:kt.Boolean,defaultValue:!1,optional:!0})],Ls.prototype,"requiresAuth",void 0);class Gs{constructor(t={}){this.hashAlg=new Gi,this.hashValue=new ce,Object.assign(this,t)}}ge([fe({type:Gi})],Gs.prototype,"hashAlg",void 0),ge([fe({type:ce})],Gs.prototype,"hashValue",void 0);class $s{constructor(t={}){this.mediaType="",this.logotypeHash=[],this.logotypeURI=[],Object.assign(this,t)}}ge([fe({type:kt.IA5String})],$s.prototype,"mediaType",void 0),ge([fe({type:Gs,repeated:"sequence"})],$s.prototype,"logotypeHash",void 0),ge([fe({type:kt.IA5String,repeated:"sequence"})],$s.prototype,"logotypeURI",void 0),function(t){t[t.mono=1]="mono",t[t.stereo=2]="stereo",t[t.quad=4]="quad"}(_s||(_s={}));class Qs{constructor(t={}){this.fileSize=0,this.playTime=0,this.channels=_s.mono,Object.assign(this,t)}}ge([fe({type:kt.Integer})],Qs.prototype,"fileSize",void 0),ge([fe({type:kt.Integer})],Qs.prototype,"playTime",void 0),ge([fe({type:kt.Integer})],Qs.prototype,"channels",void 0),ge([fe({type:kt.Integer,implicit:!0,context:3,optional:!0})],Qs.prototype,"sampleRate",void 0),ge([fe({type:kt.IA5String,implicit:!0,context:4,optional:!0})],Qs.prototype,"language",void 0);class Ws{constructor(t={}){this.audioDetails=new $s,Object.assign(this,t)}}ge([fe({type:$s})],Ws.prototype,"audioDetails",void 0),ge([fe({type:Qs,optional:!0})],Ws.prototype,"audioInfo",void 0);let qs=class{constructor(t={}){Object.assign(this,t)}};var zs;ge([fe({type:kt.Integer,context:1,implicit:!0})],qs.prototype,"numBits",void 0),ge([fe({type:kt.Integer,context:2,implicit:!0})],qs.prototype,"tableSize",void 0),qs=ge([de({type:Mt.Choice})],qs),function(t){t[t.grayScale=0]="grayScale",t[t.color=1]="color"}(zs||(zs={}));class Js{constructor(t={}){this.type=zs.color,this.fileSize=0,this.xSize=0,this.ySize=0,Object.assign(this,t)}}ge([fe({type:kt.Integer,context:0,implicit:!0,defaultValue:zs.color})],Js.prototype,"type",void 0),ge([fe({type:kt.Integer})],Js.prototype,"fileSize",void 0),ge([fe({type:kt.Integer})],Js.prototype,"xSize",void 0),ge([fe({type:kt.Integer})],Js.prototype,"ySize",void 0),ge([fe({type:qs})],Js.prototype,"resolution",void 0),ge([fe({type:kt.IA5String,context:4,implicit:!0,optional:!0})],Js.prototype,"language",void 0);class Zs{constructor(t={}){this.imageDetails=new $s,Object.assign(this,t)}}ge([fe({type:$s})],Zs.prototype,"imageDetails",void 0),ge([fe({type:Js,optional:!0})],Zs.prototype,"imageInfo",void 0);class Xs{constructor(t={}){Object.assign(this,t)}}ge([fe({type:Zs,repeated:"sequence",optional:!0})],Xs.prototype,"image",void 0),ge([fe({type:Ws,repeated:"sequence",context:1,optional:!0})],Xs.prototype,"audio",void 0);class Ys{constructor(t={}){this.refStructHash=[],this.refStructURI=[],Object.assign(this,t)}}ge([fe({type:Gs,repeated:"sequence"})],Ys.prototype,"refStructHash",void 0),ge([fe({type:kt.IA5String,repeated:"sequence"})],Ys.prototype,"refStructURI",void 0);let tn=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:Xs,implicit:!0,context:0})],tn.prototype,"direct",void 0),ge([fe({type:Ys,implicit:!0,context:1})],tn.prototype,"indirect",void 0),tn=ge([de({type:Mt.Choice})],tn);class en{constructor(t={}){this.logotypeType="",this.info=new tn,Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],en.prototype,"logotypeType",void 0),ge([fe({type:tn})],en.prototype,"info",void 0);class rn{constructor(t={}){Object.assign(this,t)}}var sn,nn,on;ge([fe({type:tn,context:0,repeated:"sequence",optional:!0})],rn.prototype,"communityLogos",void 0),ge([fe({type:tn,context:1,optional:!0})],rn.prototype,"issuerLogo",void 0),ge([fe({type:tn,context:2,optional:!0})],rn.prototype,"subjectLogo",void 0),ge([fe({type:en,context:3,repeated:"sequence",optional:!0})],rn.prototype,"otherLogos",void 0);let an=sn=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,sn.prototype)}};an=sn=ge([de({type:Mt.Sequence,itemType:kt.IA5String})],an);class cn{constructor(t={}){this.claim="",this.permitted=[],Object.assign(this,t)}}ge([fe({type:kt.IA5String})],cn.prototype,"claim",void 0),ge([fe({type:kt.Utf8String,repeated:"sequence"})],cn.prototype,"permitted",void 0);let ln=nn=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,nn.prototype)}};ln=nn=ge([de({type:Mt.Sequence,itemType:cn})],ln);class un{constructor(t={}){Object.assign(this,t)}}ge([fe({type:an,optional:!0,context:0})],un.prototype,"mustInclude",void 0),ge([fe({type:ln,optional:!0,context:1})],un.prototype,"permittedValues",void 0);class hn{constructor(){this.start="",this.count=2}}ge([fe({type:kt.IA5String})],hn.prototype,"start",void 0),ge([fe({type:kt.Integer})],hn.prototype,"count",void 0);let pn=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:kt.IA5String,context:0})],pn.prototype,"spc",void 0),ge([fe({type:hn,context:1})],pn.prototype,"range",void 0),ge([fe({type:kt.IA5String,context:2})],pn.prototype,"one",void 0),pn=ge([de({type:Mt.Choice})],pn);let dn=on=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,on.prototype)}};dn=on=ge([de({type:Mt.Sequence,itemType:pn})],dn);
64
+ var Kr,jr,Hr=function(t,e,i,r,s){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!s)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!s:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?s.call(t,i):s?s.value=i:e.set(t,i),i};class _r{constructor(e){Kr.set(this,new Re),t.BufferSourceConverter.isBufferSource(e)?Hr(this,Kr,Ce.parse(e,Re),"f"):Hr(this,Kr,e,"f")}toJSON(){const t=[];return function(t,e,i,r){if("a"===i&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!r:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(t):r?r.value:e.get(t)}(this,Kr,"f").forEach((e=>e.forEach((e=>{t.push({type:e.type,name:Mr[e.type],shortName:kr[e.type],value:e.value.toString()})})))),t}}Kr=new WeakMap;const Ur=`${je}.2`;var Fr;!function(t){t[t.picture=0]="picture",t[t.handwrittenSignature=1]="handwrittenSignature"}(Fr||(Fr={}));let Vr=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Kt.Integer})],Vr.prototype,"predefinedBiometricType",void 0),ve([fe({type:Kt.ObjectIdentifier})],Vr.prototype,"biometricDataOid",void 0),Vr=ve([ye({type:Mt.Choice})],Vr);class Lr{constructor(t={}){this.typeOfBiometricData=new Vr,this.hashAlgorithm=new $i,this.biometricDataHash=new le,Object.assign(this,t)}}ve([fe({type:Vr})],Lr.prototype,"typeOfBiometricData",void 0),ve([fe({type:$i})],Lr.prototype,"hashAlgorithm",void 0),ve([fe({type:le})],Lr.prototype,"biometricDataHash",void 0),ve([fe({type:Kt.IA5String,optional:!0})],Lr.prototype,"sourceDataUri",void 0);let Gr=jr=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,jr.prototype)}};var $r,Qr;Gr=jr=ve([ye({type:Mt.Sequence,itemType:Lr})],Gr);const Wr=`${je}.3`;class qr{constructor(){this.statementId="",this.statementInfo=new ArrayBuffer(0)}}ve([fe({type:Kt.ObjectIdentifier})],qr.prototype,"statementId",void 0),ve([fe({type:Kt.Any,optional:!0})],qr.prototype,"statementInfo",void 0);let zr=$r=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,$r.prototype)}};zr=$r=ve([ye({type:Mt.Sequence,itemType:Ke})],zr);class Jr{constructor(t={}){Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier,optional:!0})],Jr.prototype,"semanticsIdentifier",void 0),ve([fe({type:zr,optional:!0})],Jr.prototype,"nameRegistrationAuthorities",void 0);let Zr=Qr=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Qr.prototype)}};Zr=Qr=ve([ye({type:Mt.Sequence,itemType:qr})],Zr);let Xr=class extends Ie{};var Yr,ts;Xr=ve([ye({type:Mt.Choice})],Xr),function(t){t.M="M",t.F="F",t.m="m",t.f="f"}(Yr||(Yr={}));let es=ts=class extends ii{constructor(t){super(t),Object.setPrototypeOf(this,ts.prototype)}};es=ts=ve([ye({type:Mt.Sequence})],es);class is{constructor(t={}){this.templateID="",this.templateMajorVersion=0,this.templateMinorVersion=0,Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],is.prototype,"templateID",void 0),ve([fe({type:Kt.Integer})],is.prototype,"templateMajorVersion",void 0),ve([fe({type:Kt.Integer})],is.prototype,"templateMinorVersion",void 0);class rs{constructor(t={}){this.name="",Object.assign(this,t)}}ve([fe({type:Kt.Utf8String})],rs.prototype,"name",void 0);let ss=class{constructor(t={}){Object.assign(this,t)}toString(){var t,e;return(null===(t=this.name)||void 0===t?void 0:t.toString())||(null===(e=this.spec)||void 0===e?void 0:e.name)||""}};ve([fe({type:Ie})],ss.prototype,"name",void 0),ve([fe({type:rs})],ss.prototype,"spec",void 0),ss=ve([ye({type:Mt.Choice})],ss);let ns=class{constructor(){this.value=new ArrayBuffer(0)}toString(){const t=this.getVersion();return`V${t.certificateIndex}.${t.keyIndex}`}getVersion(){let e=new Uint8Array(this.value);return this.value.byteLength<4&&(e=new Uint8Array(4),e.set(new Uint8Array(this.value),4-this.value.byteLength)),{keyIndex:parseInt(t.Convert.ToHex(e.slice(0,2)),16),certificateIndex:parseInt(t.Convert.ToHex(e.slice(2)),16)}}};ve([fe({type:Kt.Integer,converter:Ut})],ns.prototype,"value",void 0),ns=ve([ye({type:Mt.Choice})],ns);let os=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Kt.NumericString})],os.prototype,"numericString",void 0),ve([fe({type:Kt.PrintableString})],os.prototype,"printableString",void 0),ve([fe({type:Kt.TeletexString})],os.prototype,"teletexString",void 0),ve([fe({type:Kt.VideotexString})],os.prototype,"videotexString",void 0),ve([fe({type:Kt.IA5String})],os.prototype,"ia5String",void 0),ve([fe({type:Kt.GraphicString})],os.prototype,"graphicString",void 0),ve([fe({type:Kt.VisibleString})],os.prototype,"visibleString",void 0),ve([fe({type:Kt.GeneralString})],os.prototype,"generalString",void 0),ve([fe({type:Kt.UniversalString})],os.prototype,"universalString",void 0),ve([fe({type:Kt.BmpString})],os.prototype,"bmpString",void 0),os=ve([ye({type:Mt.Choice})],os);let as=class{constructor(t=new ArrayBuffer(0)){this.value=t}};var cs;ve([fe({type:Kt.Any})],as.prototype,"value",void 0),as=ve([ye({type:Mt.Choice})],as);let ls=cs=class extends Zi{constructor(t){super(t),Object.setPrototypeOf(this,cs.prototype)}};ls=cs=ve([ye({type:Mt.Sequence})],ls);class us{constructor(t={}){this.keySpec=0,this.cspName="",this.signature=new ArrayBuffer(0),Object.assign(this,t)}}var hs;ve([fe({type:Kt.Integer})],us.prototype,"keySpec",void 0),ve([fe({type:Kt.BmpString})],us.prototype,"cspName",void 0),ve([fe({type:Kt.BitString})],us.prototype,"signature",void 0);let ps=hs=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,hs.prototype)}};var ds;ps=hs=ve([ye({type:Mt.Sequence,itemType:Kt.Any})],ps);let ys=ds=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,ds.prototype)}};var fs;ys=ds=ve([ye({type:Mt.Sequence,itemType:Kt.Any})],ys);class Ss{constructor(t={}){this.name="",this.value="",Object.assign(this,t)}}ve([fe({type:Kt.BmpString})],Ss.prototype,"name",void 0),ve([fe({type:Kt.BmpString})],Ss.prototype,"value",void 0);let Cs=fs=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,fs.prototype)}};Cs=fs=ve([ye({type:Mt.Sequence,itemType:Ss})],Cs);let As=class extends ke{};As=ve([ye({type:Mt.Sequence})],As);let ms=class extends ke{};ms=ve([ye({type:Mt.Sequence})],ms);let gs=class extends tr{};gs=ve([ye({type:Mt.Sequence})],gs);class vs{constructor(t={}){this.clientId=0,this.machineName="",this.userName="",this.processName="",Object.assign(this,t)}}ve([fe({type:Kt.Integer})],vs.prototype,"clientId",void 0),ve([fe({type:Kt.Utf8String})],vs.prototype,"machineName",void 0),ve([fe({type:Kt.Utf8String})],vs.prototype,"userName",void 0),ve([fe({type:Kt.Utf8String})],vs.prototype,"processName",void 0);let Es=class{constructor(t){this.value="",t&&(this.value=t)}};ve([fe({type:Kt.IA5String})],Es.prototype,"value",void 0),Es=ve([ye({type:Mt.Choice})],Es);let ws=class{constructor(t){this.value="",t&&(this.value=t)}};ve([fe({type:Kt.IA5String})],ws.prototype,"value",void 0),ws=ve([ye({type:Mt.Choice})],ws);let Ps=class{constructor(t){this.value="",t&&(this.value=t)}};ve([fe({type:Kt.IA5String})],Ps.prototype,"value",void 0),Ps=ve([ye({type:Mt.Choice})],Ps);let bs=class{constructor(t){this.value="",t&&(this.value=t)}};var Ds;ve([fe({type:Kt.IA5String})],bs.prototype,"value",void 0),bs=ve([ye({type:Mt.Choice})],bs),function(t){t[t.sslClient=1]="sslClient",t[t.sslServer=2]="sslServer",t[t.sMime=4]="sMime",t[t.objectSigning=8]="objectSigning",t[t.sslCa=32]="sslCa",t[t.sMimeCa=64]="sMimeCa",t[t.objectSigningCa=128]="objectSigningCa"}(Ds||(Ds={}));class Is extends ce{toJSON(){const t=this.toNumber(),e=[];return t&Ds.objectSigning&&e.push("objectSigning"),t&Ds.objectSigningCa&&e.push("objectSigningCa"),t&Ds.sMime&&e.push("sMime"),t&Ds.sMimeCa&&e.push("sMimeCa"),t&Ds.sslCa&&e.push("sslCa"),t&Ds.sslClient&&e.push("sslClient"),t&Ds.sslServer&&e.push("sslServer"),e}toString(){return`[${this.toJSON().join(", ")}]`}}let Bs=class{constructor(t){this.value="",t&&(this.value=t)}};ve([fe({type:Kt.IA5String})],Bs.prototype,"value",void 0),Bs=ve([ye({type:Mt.Choice})],Bs);let Ts=class{constructor(t){this.value="",t&&(this.value=t)}};ve([fe({type:Kt.IA5String})],Ts.prototype,"value",void 0),Ts=ve([ye({type:Mt.Choice})],Ts);let xs=class{constructor(t){this.value="",t&&(this.value=t)}};ve([fe({type:Kt.IA5String})],xs.prototype,"value",void 0),xs=ve([ye({type:Mt.Choice})],xs);let Os=class{constructor(t={}){this.leiCode="",Object.assign(this,t)}};ve([fe({type:ft})],Os.prototype,"leiCode",void 0),ve([fe({type:ft,context:0,optional:!0})],Os.prototype,"leiRole",void 0),Os=ve([ye({type:Mt.Sequence})],Os);let Rs=class{constructor(t){t&&(this.text=t)}get text(){return void 0!==this.bmpString?this.bmpString:void 0!==this.ia5String?this.ia5String:void 0!==this.printableString?this.printableString:void 0!==this.utf8String?this.utf8String:void 0!==this.visibleString?this.visibleString:void 0}set text(t){this.printableString=t}};ve([fe({type:Kt.IA5String})],Rs.prototype,"ia5String",void 0),ve([fe({type:Kt.VisibleString})],Rs.prototype,"visibleString",void 0),ve([fe({type:Kt.BmpString})],Rs.prototype,"bmpString",void 0),ve([fe({type:Kt.Utf8String})],Rs.prototype,"utf8String",void 0),ve([fe({type:Kt.PrintableString})],Rs.prototype,"printableString",void 0),Rs=ve([ye({type:Mt.Choice})],Rs);let Ns=class extends Rs{constructor(t){super(),"string"==typeof t?this.text=t:t instanceof Os&&(this.struct=t)}};ve([fe({type:Os})],Ns.prototype,"struct",void 0),Ns=ve([ye({type:Mt.Choice})],Ns);let ks=class extends Rs{};ks=ve([ye({type:Mt.Choice})],ks);class Ms{constructor(e){this.offset=0,this.view=t.BufferSourceConverter.toUint8Array(e)}get position(){return this.offset}read(t=1){const e=this.view.slice(this.offset,this.offset+t);return this.offset=this.offset+e.length,e}readByte(){const t=this.read();if(!t.length)throw new Error("End of stream");return t[0]}readNumber(e){const i=this.read(e),r=t.Convert.ToHex(i);return parseInt(r,16)}readEnd(){return this.read(this.view.length-this.offset)}reset(){this.offset=0}}var Ks,js,Hs,_s,Us;!function(t){t[t.certificateTimestamp=0]="certificateTimestamp",t[t.treeHash=1]="treeHash"}(Ks||(Ks={})),function(t){t[t.none=0]="none",t[t.md5=1]="md5",t[t.sha1=2]="sha1",t[t.sha224=3]="sha224",t[t.sha256=4]="sha256",t[t.sha384=5]="sha384",t[t.sha512=6]="sha512"}(js||(js={})),function(t){t[t.anonymous=0]="anonymous",t[t.rsa=1]="rsa",t[t.dsa=2]="dsa",t[t.ecdsa=3]="ecdsa"}(Hs||(Hs={}));class Fs extends class{static createStream(e){const i=t.BufferSourceConverter.toUint8Array(e);return new Ms(i)}}{constructor(t){super(),this.version=0,this.logId=new ArrayBuffer(32),this.timestamp=new Date,this.extensions=new ArrayBuffer(0),this.hashAlgorithm=0,this.signatureAlgorithm=0,this.signature=new ArrayBuffer(0),t&&this.parse(t)}parse(e){this.version=e.readByte(),e.read(2),this.logId=t.BufferSourceConverter.toArrayBuffer(e.read(32)),this.timestamp=new Date(e.readNumber(8));const i=e.readNumber(2);this.extensions=e.read(i).buffer,this.hashAlgorithm=e.readByte(),this.signatureAlgorithm=e.readByte(),this.signature=e.read(e.readNumber(2)).buffer}toJSON(){return{version:this.version,logId:t.Convert.ToHex(this.logId),timestamp:this.timestamp,extensions:t.Convert.ToBase64(this.extensions),hashAlgorithm:js[this.hashAlgorithm]||"undefined",signatureAlgorithm:Hs[this.signatureAlgorithm]||"undefined",signature:t.Convert.ToBase64(this.signature)}}}class Vs extends le{constructor(){super(...arguments),this.items=[]}fromASN(t){super.fromASN(t);const e=new Ms(this.buffer),i=e.readNumber(2);for(this.items=[];e.position<i;)this.items.push(new Fs(e));return this}toJSON(){return this.items.map((t=>t.toJSON()))}}!function(t){t[t.v1=1]="v1"}(_s||(_s={}));class Ls{constructor(t={}){this.version=_s.v1,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],Ls.prototype,"version",void 0);class Gs{constructor(t={}){this.version=_s.v1,this.location=new Ke,this.requiresAuth=!1,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],Gs.prototype,"version",void 0),ve([fe({type:Ke})],Gs.prototype,"location",void 0),ve([fe({type:Kt.Boolean,defaultValue:!1,optional:!0})],Gs.prototype,"requiresAuth",void 0);class $s{constructor(t={}){this.hashAlg=new $i,this.hashValue=new le,Object.assign(this,t)}}ve([fe({type:$i})],$s.prototype,"hashAlg",void 0),ve([fe({type:le})],$s.prototype,"hashValue",void 0);class Qs{constructor(t={}){this.mediaType="",this.logotypeHash=[],this.logotypeURI=[],Object.assign(this,t)}}ve([fe({type:Kt.IA5String})],Qs.prototype,"mediaType",void 0),ve([fe({type:$s,repeated:"sequence"})],Qs.prototype,"logotypeHash",void 0),ve([fe({type:Kt.IA5String,repeated:"sequence"})],Qs.prototype,"logotypeURI",void 0),function(t){t[t.mono=1]="mono",t[t.stereo=2]="stereo",t[t.quad=4]="quad"}(Us||(Us={}));class Ws{constructor(t={}){this.fileSize=0,this.playTime=0,this.channels=Us.mono,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],Ws.prototype,"fileSize",void 0),ve([fe({type:Kt.Integer})],Ws.prototype,"playTime",void 0),ve([fe({type:Kt.Integer})],Ws.prototype,"channels",void 0),ve([fe({type:Kt.Integer,implicit:!0,context:3,optional:!0})],Ws.prototype,"sampleRate",void 0),ve([fe({type:Kt.IA5String,implicit:!0,context:4,optional:!0})],Ws.prototype,"language",void 0);class qs{constructor(t={}){this.audioDetails=new Qs,Object.assign(this,t)}}ve([fe({type:Qs})],qs.prototype,"audioDetails",void 0),ve([fe({type:Ws,optional:!0})],qs.prototype,"audioInfo",void 0);let zs=class{constructor(t={}){Object.assign(this,t)}};var Js;ve([fe({type:Kt.Integer,context:1,implicit:!0})],zs.prototype,"numBits",void 0),ve([fe({type:Kt.Integer,context:2,implicit:!0})],zs.prototype,"tableSize",void 0),zs=ve([ye({type:Mt.Choice})],zs),function(t){t[t.grayScale=0]="grayScale",t[t.color=1]="color"}(Js||(Js={}));class Zs{constructor(t={}){this.type=Js.color,this.fileSize=0,this.xSize=0,this.ySize=0,Object.assign(this,t)}}ve([fe({type:Kt.Integer,context:0,implicit:!0,defaultValue:Js.color})],Zs.prototype,"type",void 0),ve([fe({type:Kt.Integer})],Zs.prototype,"fileSize",void 0),ve([fe({type:Kt.Integer})],Zs.prototype,"xSize",void 0),ve([fe({type:Kt.Integer})],Zs.prototype,"ySize",void 0),ve([fe({type:zs})],Zs.prototype,"resolution",void 0),ve([fe({type:Kt.IA5String,context:4,implicit:!0,optional:!0})],Zs.prototype,"language",void 0);class Xs{constructor(t={}){this.imageDetails=new Qs,Object.assign(this,t)}}ve([fe({type:Qs})],Xs.prototype,"imageDetails",void 0),ve([fe({type:Zs,optional:!0})],Xs.prototype,"imageInfo",void 0);class Ys{constructor(t={}){Object.assign(this,t)}}ve([fe({type:Xs,repeated:"sequence",optional:!0})],Ys.prototype,"image",void 0),ve([fe({type:qs,repeated:"sequence",context:1,optional:!0})],Ys.prototype,"audio",void 0);class tn{constructor(t={}){this.refStructHash=[],this.refStructURI=[],Object.assign(this,t)}}ve([fe({type:$s,repeated:"sequence"})],tn.prototype,"refStructHash",void 0),ve([fe({type:Kt.IA5String,repeated:"sequence"})],tn.prototype,"refStructURI",void 0);let en=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Ys,implicit:!0,context:0})],en.prototype,"direct",void 0),ve([fe({type:tn,implicit:!0,context:1})],en.prototype,"indirect",void 0),en=ve([ye({type:Mt.Choice})],en);class rn{constructor(t={}){this.logotypeType="",this.info=new en,Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],rn.prototype,"logotypeType",void 0),ve([fe({type:en})],rn.prototype,"info",void 0);class sn{constructor(t={}){Object.assign(this,t)}}var nn,on,an;ve([fe({type:en,context:0,repeated:"sequence",optional:!0})],sn.prototype,"communityLogos",void 0),ve([fe({type:en,context:1,optional:!0})],sn.prototype,"issuerLogo",void 0),ve([fe({type:en,context:2,optional:!0})],sn.prototype,"subjectLogo",void 0),ve([fe({type:rn,context:3,repeated:"sequence",optional:!0})],sn.prototype,"otherLogos",void 0);let cn=nn=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,nn.prototype)}};cn=nn=ve([ye({type:Mt.Sequence,itemType:Kt.IA5String})],cn);class ln{constructor(t={}){this.claim="",this.permitted=[],Object.assign(this,t)}}ve([fe({type:Kt.IA5String})],ln.prototype,"claim",void 0),ve([fe({type:Kt.Utf8String,repeated:"sequence"})],ln.prototype,"permitted",void 0);let un=on=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,on.prototype)}};un=on=ve([ye({type:Mt.Sequence,itemType:ln})],un);class hn{constructor(t={}){Object.assign(this,t)}}ve([fe({type:cn,optional:!0,context:0})],hn.prototype,"mustInclude",void 0),ve([fe({type:un,optional:!0,context:1})],hn.prototype,"permittedValues",void 0);class pn{constructor(){this.start="",this.count=2}}ve([fe({type:Kt.IA5String})],pn.prototype,"start",void 0),ve([fe({type:Kt.Integer})],pn.prototype,"count",void 0);let dn=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Kt.IA5String,context:0})],dn.prototype,"spc",void 0),ve([fe({type:pn,context:1})],dn.prototype,"range",void 0),ve([fe({type:Kt.IA5String,context:2})],dn.prototype,"one",void 0),dn=ve([ye({type:Mt.Choice})],dn);let yn=an=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,an.prototype)}};yn=an=ve([ye({type:Mt.Sequence,itemType:dn})],yn);
65
65
  /**
66
66
  * @license
67
67
  * Copyright (c) Peculiar Ventures, LLC.
@@ -69,7 +69,7 @@ var kr,Kr,Hr=function(t,e,i,r,s){if("m"===r)throw new TypeError("Private method
69
69
  * This source code is licensed under the MIT license found in the
70
70
  * LICENSE file in the root directory of this source tree.
71
71
  */
72
- var fn,yn,Sn=function(t,e,i,r,s){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!s)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!s:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?s.call(t,i):s?s.value=i:e.set(t,i),i},Cn=function(t,e,i,r){if("a"===i&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!r:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(t):r?r.value:e.get(t)};class An{constructor(...e){fn.set(this,void 0),yn.set(this,void 0),1===e.length?(Sn(this,fn,e[0],"f"),Sn(this,yn,me.serialize(Cn(this,fn,"f")),"f")):(Sn(this,fn,me.parse(e[0],e[1]),"f"),Sn(this,yn,t.BufferSourceConverter.toArrayBuffer(e[0]),"f"))}get asn(){return Cn(this,fn,"f")}get raw(){return Cn(this,yn,"f")}}fn=new WeakMap,yn=new WeakMap;
72
+ var fn,Sn,Cn=function(t,e,i,r,s){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!s)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof e?t!==e||!s:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?s.call(t,i):s?s.value=i:e.set(t,i),i},An=function(t,e,i,r){if("a"===i&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof e?t!==e||!r:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(t):r?r.value:e.get(t)};class mn{constructor(...e){fn.set(this,void 0),Sn.set(this,void 0),1===e.length?(Cn(this,fn,e[0],"f"),Cn(this,Sn,ge.serialize(An(this,fn,"f")),"f")):(Cn(this,fn,ge.parse(e[0],e[1]),"f"),Cn(this,Sn,t.BufferSourceConverter.toArrayBuffer(e[0]),"f"))}get asn(){return An(this,fn,"f")}get raw(){return An(this,Sn,"f")}}fn=new WeakMap,Sn=new WeakMap;
73
73
  /**
74
74
  * @license
75
75
  * Copyright (c) Peculiar Ventures, LLC.
@@ -77,11 +77,11 @@ var fn,yn,Sn=function(t,e,i,r,s){if("m"===r)throw new TypeError("Private method
77
77
  * This source code is licensed under the MIT license found in the
78
78
  * LICENSE file in the root directory of this source tree.
79
79
  */
80
- class mn extends An{constructor(e){super(e,zi);const i=this.getAsnExtnValue();try{switch(this.asn.extnID){case je:this.value=Se.parse(i,Ue);break;case"2.5.29.35":this.value=Se.parse(i,Ve);break;case"2.5.29.19":this.value=Se.parse(i,Le);break;case"2.5.29.29":this.value=Se.parse(i,We);break;case"2.5.29.32":this.value=Se.parse(i,ei);break;case"2.5.29.31":case"2.5.29.46":this.value=Se.parse(i,li);break;case"2.5.29.21":this.value=Se.parse(i,fi);break;case"2.5.29.37":this.value=Se.parse(i,Si);break;case"2.5.29.54":this.value=Se.parse(i,Ci);break;case"2.5.29.24":this.value=Se.parse(i,Ai);break;case"2.5.29.18":this.value=Se.parse(i,gi);break;case"2.5.29.15":this.value=Se.parse(i,wi);break;case"2.5.29.30":this.value=Se.parse(i,bi);break;case"2.5.29.36":this.value=Se.parse(i,Bi);break;case"2.5.29.33":this.value=Se.parse(i,xi);break;case"2.5.29.17":this.value=Se.parse(i,Oi);break;case"2.5.29.9":this.value=Se.parse(i,ki);break;case"2.5.29.14":this.value=Se.parse(i,Ki);break;case Qr:this.value=Se.parse(i,Jr);break;case"1.3.6.1.4.1.311.21.7":this.value=Se.parse(i,es);break;case"1.3.6.1.4.1.311.20.2":this.value=Se.parse(i,rs);break;case"2.16.840.1.113730.1.13":this.value=Se.parse(i,Bs);break;case"2.16.840.1.113730.1.1":this.value=Se.parse(i,bs);break;case"1.3.6.1.4.1.311.21.1":this.value=Se.parse(i,ss);break;case"1.3.6.1.4.1.11129.2.4.2":this.value=Se.parse(i,Fs);break;case"1.3.6.1.4.1.52266.1":this.value=Se.parse(i,Os);break;case"1.3.6.1.4.1.52266.2":this.value=Se.parse(i,Ns);break;case"1.2.840.113583.1.1.9.1":this.value=Se.parse(i,Ls);break;case"1.2.840.113583.1.1.9.2":this.value=Se.parse(i,Vs);break;case"2.5.29.16":this.value=Se.parse(i,Hi);break;case"1.2.840.113533.7.65.0":this.value=Se.parse(i,Fi);break;case"2.16.724.1.2.2.4.1":case _r:this.value=Se.parse(i,Lr);break;case"1.3.6.1.5.5.7.1.12":this.value=Se.parse(i,rn);break;case"1.3.6.1.5.5.7.1.26":this.value=Se.parse(i,dn);break;case Vi:this.value=Se.parse(i,Li);break;default:console.warn(`Didn't detect parser for "${this.asn.extnID}" extension.`),this.value=t.Convert.ToHex(i)}}catch(e){console.error(`Error parse "${this.asn.extnID}" extension:`,e.message),this.value=t.Convert.ToHex(i)}}getAsnExtnValue(){return this.asn.extnValue.buffer}}
80
+ class gn extends mn{constructor(e){super(e,Ji);const i=this.getAsnExtnValue();try{switch(this.asn.extnID){case _e:this.value=Ce.parse(i,Fe);break;case"2.5.29.35":this.value=Ce.parse(i,Le);break;case"2.5.29.19":this.value=Ce.parse(i,Ge);break;case"2.5.29.29":this.value=Ce.parse(i,qe);break;case"2.5.29.32":this.value=Ce.parse(i,ii);break;case"2.5.29.31":case"2.5.29.46":this.value=Ce.parse(i,ui);break;case"2.5.29.28":this.value=Ce.parse(i,di);break;case"2.5.29.21":this.value=Ce.parse(i,fi);break;case"2.5.29.37":this.value=Ce.parse(i,Ci);break;case"2.5.29.54":this.value=Ce.parse(i,Ai);break;case"2.5.29.24":this.value=Ce.parse(i,mi);break;case"2.5.29.18":this.value=Ce.parse(i,vi);break;case"2.5.29.15":this.value=Ce.parse(i,Pi);break;case"2.5.29.30":this.value=Ce.parse(i,Ii);break;case"2.5.29.36":this.value=Ce.parse(i,Bi);break;case"2.5.29.33":this.value=Ce.parse(i,Oi);break;case"2.5.29.17":this.value=Ce.parse(i,Ni);break;case"2.5.29.9":this.value=Ce.parse(i,Ki);break;case"2.5.29.14":this.value=Ce.parse(i,ji);break;case Wr:this.value=Ce.parse(i,Zr);break;case"1.3.6.1.4.1.311.21.7":this.value=Ce.parse(i,is);break;case"1.3.6.1.4.1.311.20.2":this.value=Ce.parse(i,ss);break;case"2.16.840.1.113730.1.13":this.value=Ce.parse(i,Bs);break;case"2.16.840.1.113730.1.1":this.value=Ce.parse(i,Is);break;case"1.3.6.1.4.1.311.21.1":this.value=Ce.parse(i,ns);break;case"1.3.6.1.4.1.11129.2.4.2":this.value=Ce.parse(i,Vs);break;case"1.3.6.1.4.1.52266.1":this.value=Ce.parse(i,Ns);break;case"1.3.6.1.4.1.52266.2":this.value=Ce.parse(i,ks);break;case"1.2.840.113583.1.1.9.1":this.value=Ce.parse(i,Gs);break;case"1.2.840.113583.1.1.9.2":this.value=Ce.parse(i,Ls);break;case"2.5.29.16":this.value=Ce.parse(i,Hi);break;case"1.2.840.113533.7.65.0":this.value=Ce.parse(i,Vi);break;case"2.16.724.1.2.2.4.1":case Ur:this.value=Ce.parse(i,Gr);break;case"1.3.6.1.5.5.7.1.12":this.value=Ce.parse(i,sn);break;case"1.3.6.1.5.5.7.1.26":this.value=Ce.parse(i,yn);break;case Li:this.value=Ce.parse(i,Gi);break;case"2.5.29.20":this.value=Ce.parse(i,ri);break;case"2.5.29.27":this.value=Ce.parse(i,si);break;default:console.warn(`Didn't detect parser for "${this.asn.extnID}" extension.`),this.value=t.Convert.ToHex(i)}}catch(e){console.error(`Error parse "${this.asn.extnID}" extension:`,e.message),this.value=t.Convert.ToHex(i)}}getAsnExtnValue(){return this.asn.extnValue.buffer}}
81
81
  /**
82
82
  * @license
83
83
  * Copyright (c) Peculiar Ventures, LLC.
84
84
  *
85
85
  * This source code is licensed under the MIT license found in the
86
86
  * LICENSE file in the root directory of this source tree.
87
- */class gn{constructor(){this.providers=new Map;const t=window.crypto||window.msCrypto;void 0!==t&&this.set(gn.DEFAULT,t)}static isCryptoKeyPair(t){return t&&t.privateKey&&t.publicKey}get(t=gn.DEFAULT){const e=this.providers.get(t.toLowerCase());if(!e)throw new Error(`Cannot get Crypto by name '${t}'`);return e}set(t,e){if("string"==typeof t){if(!e)throw new TypeError("Argument 'value' is required");this.providers.set(t.toLowerCase(),e)}else this.providers.set(gn.DEFAULT,t);return this}}gn.DEFAULT="default";const vn=new gn,En=t=>t.replace(/(.{32})/g,"$1\n").replace(/(.{4})/g,"$1 ").trim(),wn=t=>t.replace(/(.{64})/g,"$1\n"),Pn=e=>{const i=e.replace(/.*base64,/,"").replace(/-----.+-----/g,"").replace(/[\s\r\n]/g,"");let s;return s=/^\s*(?:[0-9A-Fa-f][0-9A-Fa-f]\s*)+$/.test(i)?t.Convert.FromHex(i):(t=>{try{return window.atob(t),!0}catch(t){return!1}})(i)||r(i)?t.Convert.FromBase64(i):t.Convert.FromBinary(e),s},Dn=async(t,e)=>{const i=vn.get();if(i.subtle)return i.subtle.digest(t,e)};class bn{constructor(t={}){this.acIssuer=new ke,this.acSerial=0,this.attrs=[],Object.assign(this,t)}}var Bn;ge([fe({type:ke})],bn.prototype,"acIssuer",void 0),ge([fe({type:kt.Integer})],bn.prototype,"acSerial",void 0),ge([fe({type:Ni,repeated:"sequence"})],bn.prototype,"attrs",void 0);let In=Bn=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Bn.prototype)}};In=Bn=ge([de({type:Mt.Sequence,itemType:kt.ObjectIdentifier})],In);class Tn{constructor(t={}){this.permitUnSpecified=!0,Object.assign(this,t)}}ge([fe({type:kt.Integer,optional:!0})],Tn.prototype,"pathLenConstraint",void 0),ge([fe({type:In,implicit:!0,context:0,optional:!0})],Tn.prototype,"permittedAttrs",void 0),ge([fe({type:In,implicit:!0,context:1,optional:!0})],Tn.prototype,"excludedAttrs",void 0),ge([fe({type:kt.Boolean,defaultValue:!0})],Tn.prototype,"permitUnSpecified",void 0);class xn{constructor(t={}){this.issuer=new $e,this.serial=new ArrayBuffer(0),this.issuerUID=new ArrayBuffer(0),Object.assign(this,t)}}var Rn;ge([fe({type:$e})],xn.prototype,"issuer",void 0),ge([fe({type:kt.Integer,converter:_t})],xn.prototype,"serial",void 0),ge([fe({type:kt.BitString,optional:!0})],xn.prototype,"issuerUID",void 0),function(t){t[t.publicKey=0]="publicKey",t[t.publicKeyCert=1]="publicKeyCert",t[t.otherObjectTypes=2]="otherObjectTypes"}(Rn||(Rn={}));class On{constructor(t={}){this.digestedObjectType=Rn.publicKey,this.digestAlgorithm=new Gi,this.objectDigest=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.Enumerated})],On.prototype,"digestedObjectType",void 0),ge([fe({type:kt.ObjectIdentifier,optional:!0})],On.prototype,"otherObjectTypeID",void 0),ge([fe({type:Gi})],On.prototype,"digestAlgorithm",void 0),ge([fe({type:kt.BitString})],On.prototype,"objectDigest",void 0);class Nn{constructor(t={}){Object.assign(this,t)}}ge([fe({type:$e,optional:!0})],Nn.prototype,"issuerName",void 0),ge([fe({type:xn,context:0,implicit:!0,optional:!0})],Nn.prototype,"baseCertificateID",void 0),ge([fe({type:On,context:1,implicit:!0,optional:!0})],Nn.prototype,"objectDigestInfo",void 0);let Mn=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:ke,repeated:"sequence"})],Mn.prototype,"v1Form",void 0),ge([fe({type:Nn,context:0,implicit:!0})],Mn.prototype,"v2Form",void 0),Mn=ge([de({type:Mt.Choice})],Mn);class kn{constructor(t={}){this.notBeforeTime=new Date,this.notAfterTime=new Date,Object.assign(this,t)}}ge([fe({type:kt.GeneralizedTime})],kn.prototype,"notBeforeTime",void 0),ge([fe({type:kt.GeneralizedTime})],kn.prototype,"notAfterTime",void 0);class Kn{constructor(t={}){Object.assign(this,t)}}var Hn,jn,_n;ge([fe({type:xn,implicit:!0,context:0,optional:!0})],Kn.prototype,"baseCertificateID",void 0),ge([fe({type:$e,implicit:!0,context:1,optional:!0})],Kn.prototype,"entityName",void 0),ge([fe({type:On,implicit:!0,context:2,optional:!0})],Kn.prototype,"objectDigestInfo",void 0),function(t){t[t.v2=1]="v2"}(Hn||(Hn={}));class Un{constructor(t={}){this.version=Hn.v2,this.holder=new Kn,this.issuer=new Mn,this.signature=new Gi,this.serialNumber=new ArrayBuffer(0),this.attrCertValidityPeriod=new kn,this.attributes=[],Object.assign(this,t)}}ge([fe({type:kt.Integer})],Un.prototype,"version",void 0),ge([fe({type:Kn})],Un.prototype,"holder",void 0),ge([fe({type:Mn})],Un.prototype,"issuer",void 0),ge([fe({type:Gi})],Un.prototype,"signature",void 0),ge([fe({type:kt.Integer,converter:_t})],Un.prototype,"serialNumber",void 0),ge([fe({type:kn})],Un.prototype,"attrCertValidityPeriod",void 0),ge([fe({type:Ni,repeated:"sequence"})],Un.prototype,"attributes",void 0),ge([fe({type:kt.BitString,optional:!0})],Un.prototype,"issuerUniqueID",void 0),ge([fe({type:Ji,optional:!0})],Un.prototype,"extensions",void 0);class Fn{constructor(t={}){this.acinfo=new Un,this.signatureAlgorithm=new Gi,this.signatureValue=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:Un})],Fn.prototype,"acinfo",void 0),ge([fe({type:Gi})],Fn.prototype,"signatureAlgorithm",void 0),ge([fe({type:kt.BitString})],Fn.prototype,"signatureValue",void 0),function(t){t[t.unmarked=1]="unmarked",t[t.unclassified=2]="unclassified",t[t.restricted=4]="restricted",t[t.confidential=8]="confidential",t[t.secret=16]="secret",t[t.topSecret=32]="topSecret"}(jn||(jn={}));class Vn extends ae{}class Ln{constructor(t={}){this.type="",this.value=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier,implicit:!0,context:0})],Ln.prototype,"type",void 0),ge([fe({type:kt.Any,implicit:!0,context:1})],Ln.prototype,"value",void 0);class Gn{constructor(t={}){this.policyId="",this.classList=new Vn(jn.unclassified),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],Gn.prototype,"policyId",void 0),ge([fe({type:Vn,defaultValue:new Vn(jn.unclassified)})],Gn.prototype,"classList",void 0),ge([fe({type:Ln,repeated:"set"})],Gn.prototype,"securityCategories",void 0);class $n{constructor(t={}){Object.assign(this,t)}}ge([fe({type:ce})],$n.prototype,"cotets",void 0),ge([fe({type:kt.ObjectIdentifier})],$n.prototype,"oid",void 0),ge([fe({type:kt.Utf8String})],$n.prototype,"string",void 0);class Qn{constructor(t={}){this.values=[],Object.assign(this,t)}}ge([fe({type:$e,implicit:!0,context:0,optional:!0})],Qn.prototype,"policyAuthority",void 0),ge([fe({type:$n,repeated:"sequence"})],Qn.prototype,"values",void 0);class Wn{constructor(t={}){this.targetCertificate=new xn,Object.assign(this,t)}}ge([fe({type:xn})],Wn.prototype,"targetCertificate",void 0),ge([fe({type:ke,optional:!0})],Wn.prototype,"targetName",void 0),ge([fe({type:On,optional:!0})],Wn.prototype,"certDigestInfo",void 0);let qn=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:ke,context:0,implicit:!0})],qn.prototype,"targetName",void 0),ge([fe({type:ke,context:1,implicit:!0})],qn.prototype,"targetGroup",void 0),ge([fe({type:Wn,context:2,implicit:!0})],qn.prototype,"targetCert",void 0),qn=ge([de({type:Mt.Choice})],qn);let zn=_n=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,_n.prototype)}};var Jn;zn=_n=ge([de({type:Mt.Sequence,itemType:qn})],zn);let Zn=Jn=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Jn.prototype)}};Zn=Jn=ge([de({type:Mt.Sequence,itemType:zn})],Zn);class Xn{constructor(t={}){Object.assign(this,t)}}ge([fe({type:$e,implicit:!0,context:0,optional:!0})],Xn.prototype,"roleAuthority",void 0),ge([fe({type:ke,implicit:!0,context:1})],Xn.prototype,"roleName",void 0);class Yn{constructor(t={}){this.service=new ke,this.ident=new ke,Object.assign(this,t)}}ge([fe({type:ke})],Yn.prototype,"service",void 0),ge([fe({type:ke})],Yn.prototype,"ident",void 0),ge([fe({type:ce,optional:!0})],Yn.prototype,"authInfo",void 0);const to="0.4.0.9496.6";let eo=class{constructor(t={}){this.codeAuthority=new ke,this.codeId=new ke,this.shortName="",this.shortDescription="",Object.assign(this,t)}};ge([fe({type:ke,context:0})],eo.prototype,"codeAuthority",void 0),ge([fe({type:ke,context:1})],eo.prototype,"codeId",void 0),ge([fe({type:kt.Utf8String,context:2})],eo.prototype,"shortName",void 0),ge([fe({type:kt.Utf8String,context:3})],eo.prototype,"shortDescription",void 0),eo=ge([de({type:Mt.Sequence})],eo);let io=class extends Re{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};io=ge([de({type:Mt.Sequence})],io);const ro="0.4.0.9496.1";let so=class extends io{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};so=ge([de({type:Mt.Sequence})],so);const no="0.4.0.9496.2";let oo=class extends io{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};oo=ge([de({type:Mt.Sequence})],oo);const ao="0.4.0.9496.3";let co=class extends io{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};co=ge([de({type:Mt.Sequence})],co);const lo="0.4.0.9496.4";let uo=class extends io{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};uo=ge([de({type:Mt.Sequence})],uo);const ho="0.4.0.9496.8";let po=class{constructor(t={}){this.location="",this.base=0,this.degree=0,Object.assign(this,t)}toString(){return`${this.base} x 10^${this.degree} ${this.location}`}};ge([fe({type:kt.PrintableString})],po.prototype,"location",void 0),ge([fe({type:kt.Integer})],po.prototype,"base",void 0),ge([fe({type:kt.Integer})],po.prototype,"degree",void 0),po=ge([de({type:Mt.Sequence})],po);const fo="0.4.0.9496.9";let yo=class{constructor(t={}){this.stars5=0,this.stars4=0,this.stars3=0,this.stars2=0,this.stars1=0,Object.assign(this,t)}};ge([fe({type:kt.Integer})],yo.prototype,"stars5",void 0),ge([fe({type:kt.Integer})],yo.prototype,"stars4",void 0),ge([fe({type:kt.Integer})],yo.prototype,"stars3",void 0),ge([fe({type:kt.Integer})],yo.prototype,"stars2",void 0),ge([fe({type:kt.Integer})],yo.prototype,"stars1",void 0),yo=ge([de({type:Mt.Sequence})],yo);const So="0.4.0.9496.5";let Co=class{constructor(t={}){this.DNBvsDNO=new ae(0),this.DNBvsDNT=new ae(0),this.DNOvsDNT=new ae(0),Object.assign(this,t)}};ge([fe({type:ae,context:0})],Co.prototype,"DNBvsDNO",void 0),ge([fe({type:ae,context:1})],Co.prototype,"DNBvsDNT",void 0),ge([fe({type:ae,context:2})],Co.prototype,"DNOvsDNT",void 0),Co=ge([de({type:Mt.Sequence})],Co);const Ao="0.4.0.9496.7";let mo=class{constructor(t={}){this.assessmentAuthority=new ke,this.assessmentRef=new ke,this.assessmentLocation=new ke,this.dataStorageTerritory="",this.description="",Object.assign(this,t)}};ge([fe({type:ke,context:0})],mo.prototype,"assessmentAuthority",void 0),ge([fe({type:ke,context:1})],mo.prototype,"assessmentRef",void 0),ge([fe({type:ke,context:2})],mo.prototype,"assessmentLocation",void 0),ge([fe({type:kt.PrintableString,context:3})],mo.prototype,"dataStorageTerritory",void 0),ge([fe({type:kt.Utf8String,context:4})],mo.prototype,"description",void 0),mo=ge([de({type:Mt.Sequence})],mo);class go{constructor(t={}){this.attrType="",this.attrValues=[],Object.assign(this,t)}}var vo;ge([fe({type:kt.ObjectIdentifier})],go.prototype,"attrType",void 0),ge([fe({type:kt.Any,repeated:"set"})],go.prototype,"attrValues",void 0);class Eo{constructor(t={}){this.otherCertFormat="",this.otherCert=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],Eo.prototype,"otherCertFormat",void 0),ge([fe({type:kt.Any})],Eo.prototype,"otherCert",void 0);let wo=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:Yi})],wo.prototype,"certificate",void 0),ge([fe({type:Fn,context:2,implicit:!0})],wo.prototype,"v2AttrCert",void 0),ge([fe({type:Eo,context:3,implicit:!0})],wo.prototype,"other",void 0),wo=ge([de({type:Mt.Choice})],wo);let Po=vo=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,vo.prototype)}};Po=vo=ge([de({type:Mt.Set,itemType:wo})],Po);class Do{constructor(t={}){this.contentType="",this.content=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],Do.prototype,"contentType",void 0),ge([fe({type:kt.Any,context:0})],Do.prototype,"content",void 0);let bo=class{constructor(t={}){Object.assign(this,t)}};ge([fe({type:ce})],bo.prototype,"single",void 0),ge([fe({type:kt.Any})],bo.prototype,"any",void 0),bo=ge([de({type:Mt.Choice})],bo);class Bo{constructor(t={}){this.eContentType="",Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],Bo.prototype,"eContentType",void 0),ge([fe({type:bo,context:0,optional:!0})],Bo.prototype,"eContent",void 0);class Io{constructor(t={}){this.issuer=new Re,this.serialNumber=new ArrayBuffer(0),Object.assign(this,t)}}var To;ge([fe({type:Re})],Io.prototype,"issuer",void 0),ge([fe({type:kt.Integer,converter:_t})],Io.prototype,"serialNumber",void 0);class xo{constructor(t={}){this.otherRevInfoFormat="",this.otherRevInfo=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],xo.prototype,"otherRevInfoFormat",void 0),ge([fe({type:kt.Any})],xo.prototype,"otherRevInfo",void 0);let Ro=class{constructor(t={}){this.other=new xo,Object.assign(this,t)}};ge([fe({type:xo,context:1,implicit:!0})],Ro.prototype,"other",void 0),Ro=ge([de({type:Mt.Choice})],Ro);let Oo=To=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,To.prototype)}};var No;Oo=To=ge([de({type:Mt.Set,itemType:Ro})],Oo),function(t){t[t.v0=0]="v0",t[t.v1=1]="v1",t[t.v2=2]="v2",t[t.v3=3]="v3",t[t.v4=4]="v4",t[t.v5=5]="v5"}(No||(No={}));let Mo=class extends Gi{};Mo=ge([de({type:Mt.Sequence})],Mo);let ko=class extends Gi{};ko=ge([de({type:Mt.Sequence})],ko);let Ko=class{constructor(t={}){Object.assign(this,t)}};var Ho;ge([fe({type:Ki,context:0,implicit:!0})],Ko.prototype,"subjectKeyIdentifier",void 0),ge([fe({type:Io})],Ko.prototype,"issuerAndSerialNumber",void 0),Ko=ge([de({type:Mt.Choice})],Ko);class jo{constructor(t={}){this.version=No.v0,this.sid=new Ko,this.digestAlgorithm=new Mo,this.signatureAlgorithm=new ko,this.signature=new ce,Object.assign(this,t)}}ge([fe({type:kt.Integer})],jo.prototype,"version",void 0),ge([fe({type:Ko})],jo.prototype,"sid",void 0),ge([fe({type:Mo})],jo.prototype,"digestAlgorithm",void 0),ge([fe({type:go,repeated:"set",context:0,implicit:!0,optional:!0})],jo.prototype,"signedAttrs",void 0),ge([fe({type:ko})],jo.prototype,"signatureAlgorithm",void 0),ge([fe({type:ce})],jo.prototype,"signature",void 0),ge([fe({type:go,repeated:"set",context:1,implicit:!0,optional:!0})],jo.prototype,"unsignedAttrs",void 0);let _o=Ho=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Ho.prototype)}};var Uo;_o=Ho=ge([de({type:Mt.Set,itemType:jo})],_o);let Fo=Uo=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Uo.prototype)}};Fo=Uo=ge([de({type:Mt.Set,itemType:Mo})],Fo);class Vo{constructor(t={}){this.version=No.v0,this.digestAlgorithms=new Fo,this.encapContentInfo=new Bo,this.signerInfos=new _o,Object.assign(this,t)}}var Lo;ge([fe({type:kt.Integer})],Vo.prototype,"version",void 0),ge([fe({type:Fo})],Vo.prototype,"digestAlgorithms",void 0),ge([fe({type:Bo})],Vo.prototype,"encapContentInfo",void 0),ge([fe({type:Po,context:0,implicit:!0,optional:!0})],Vo.prototype,"certificates",void 0),ge([fe({type:Ro,context:1,implicit:!0,optional:!0})],Vo.prototype,"crls",void 0),ge([fe({type:_o})],Vo.prototype,"signerInfos",void 0);class Go{constructor(t={}){this.attrId="",this.attrValues=[],Object.assign(t)}}ge([fe({type:kt.ObjectIdentifier})],Go.prototype,"attrId",void 0),ge([fe({type:kt.Any,repeated:"set"})],Go.prototype,"attrValues",void 0);let $o=Lo=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Lo.prototype)}};var Qo;$o=Lo=ge([de({type:Mt.Sequence,itemType:Go})],$o);let Wo=Qo=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Qo.prototype)}};Wo=Qo=ge([de({type:Mt.Sequence,itemType:Do})],Wo);class qo{constructor(t={}){this.certId="",this.certValue=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],qo.prototype,"certId",void 0),ge([fe({type:kt.Any,context:0})],qo.prototype,"certValue",void 0);class zo{constructor(t={}){this.crlId="",this.crltValue=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],zo.prototype,"crlId",void 0),ge([fe({type:kt.Any,context:0})],zo.prototype,"crltValue",void 0);class Jo extends ce{}class Zo{constructor(t={}){this.encryptionAlgorithm=new Gi,this.encryptedData=new Jo,Object.assign(this,t)}}var Xo,Yo;ge([fe({type:Gi})],Zo.prototype,"encryptionAlgorithm",void 0),ge([fe({type:Jo})],Zo.prototype,"encryptedData",void 0),function(t){t[t.v1=0]="v1"}(Yo||(Yo={}));class ta extends ce{}let ea=Xo=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Xo.prototype)}};ea=Xo=ge([de({type:Mt.Sequence,itemType:Ni})],ea);class ia{constructor(t={}){this.version=Yo.v1,this.privateKeyAlgorithm=new Gi,this.privateKey=new ta,Object.assign(this,t)}}ge([fe({type:kt.Integer})],ia.prototype,"version",void 0),ge([fe({type:Gi})],ia.prototype,"privateKeyAlgorithm",void 0),ge([fe({type:ta})],ia.prototype,"privateKey",void 0),ge([fe({type:ea,implicit:!0,context:0,optional:!0})],ia.prototype,"attributes",void 0);let ra=class extends ia{};ra=ge([de({type:Mt.Sequence})],ra);let sa=class extends Zo{};sa=ge([de({type:Mt.Sequence})],sa);class na{constructor(t={}){this.secretTypeId="",this.secretValue=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],na.prototype,"secretTypeId",void 0),ge([fe({type:kt.Any,context:0})],na.prototype,"secretValue",void 0);class oa{constructor(t={}){this.mac=new Br,this.macSalt=new ce,this.iterations=1,Object.assign(this,t)}}ge([fe({type:Br})],oa.prototype,"mac",void 0),ge([fe({type:ce})],oa.prototype,"macSalt",void 0),ge([fe({type:kt.Integer,defaultValue:1})],oa.prototype,"iterations",void 0);class aa{constructor(t={}){this.version=3,this.authSafe=new Do,this.macData=new oa,Object.assign(this,t)}}var ca;ge([fe({type:kt.Integer})],aa.prototype,"version",void 0),ge([fe({type:Do})],aa.prototype,"authSafe",void 0),ge([fe({type:oa,optional:!0})],aa.prototype,"macData",void 0);class la{constructor(t={}){this.bagId="",this.bagValue=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:kt.ObjectIdentifier})],la.prototype,"bagId",void 0),ge([fe({type:kt.Any,context:0})],la.prototype,"bagValue",void 0),ge([fe({type:Go,repeated:"set",optional:!0})],la.prototype,"bagAttributes",void 0);let ua=ca=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,ca.prototype)}};var ha,pa,da;ua=ca=ge([de({type:Mt.Sequence,itemType:la})],ua);const fa="1.2.840.113549.1.9",ya=`${fa}.2`,Sa=`${fa}.7`,Ca=`${fa}.14`;let Aa=class extends be{constructor(t={}){super(t)}toString(){return{}.toString(),this.ia5String||super.toString()}};ge([fe({type:kt.IA5String})],Aa.prototype,"ia5String",void 0),Aa=ge([de({type:Mt.Choice})],Aa);let ma=class extends Do{};ma=ge([de({type:Mt.Sequence})],ma);let ga=class extends aa{};ga=ge([de({type:Mt.Sequence})],ga);let va=class extends Zo{};va=ge([de({type:Mt.Sequence})],va);let Ea=class{constructor(t=""){this.value=t}toString(){return this.value}};ge([fe({type:kt.IA5String})],Ea.prototype,"value",void 0),Ea=ge([de({type:Mt.Choice})],Ea);let wa=class extends Aa{};wa=ge([de({type:Mt.Choice})],wa);let Pa=class extends be{};Pa=ge([de({type:Mt.Choice})],Pa);let Da=class{constructor(t=new Date){this.value=t}};ge([fe({type:kt.GeneralizedTime})],Da.prototype,"value",void 0),Da=ge([de({type:Mt.Choice})],Da);let ba=class extends be{};ba=ge([de({type:Mt.Choice})],ba);let Ba=class{constructor(t="M"){this.value=t}toString(){return this.value}};ge([fe({type:kt.PrintableString})],Ba.prototype,"value",void 0),Ba=ge([de({type:Mt.Choice})],Ba);let Ia=class{constructor(t=""){this.value=t}toString(){return this.value}};ge([fe({type:kt.PrintableString})],Ia.prototype,"value",void 0),Ia=ge([de({type:Mt.Choice})],Ia);let Ta=class extends Ia{};Ta=ge([de({type:Mt.Choice})],Ta);let xa=class extends be{};xa=ge([de({type:Mt.Choice})],xa);let Ra=class{constructor(t=""){this.value=t}toString(){return this.value}};ge([fe({type:kt.ObjectIdentifier})],Ra.prototype,"value",void 0),Ra=ge([de({type:Mt.Choice})],Ra);let Oa=class extends Qi{};Oa=ge([de({type:Mt.Choice})],Oa);let Na=class{constructor(t=0){this.value=t}toString(){return this.value.toString()}};ge([fe({type:kt.Integer})],Na.prototype,"value",void 0),Na=ge([de({type:Mt.Choice})],Na);let Ma=class extends jo{};Ma=ge([de({type:Mt.Sequence})],Ma);let ka=class extends be{};ka=ge([de({type:Mt.Choice})],ka);let Ka=ha=class extends Ji{constructor(t){super(t),Object.setPrototypeOf(this,ha.prototype)}};Ka=ha=ge([de({type:Mt.Sequence})],Ka);let Ha=pa=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,pa.prototype)}};Ha=pa=ge([de({type:Mt.Set,itemType:go})],Ha);let ja=class{constructor(t=""){this.value=t}toString(){return this.value}};ge([fe({type:kt.BmpString})],ja.prototype,"value",void 0),ja=ge([de({type:Mt.Choice})],ja);let _a=class extends Gi{};_a=ge([de({type:Mt.Sequence})],_a);let Ua=da=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,da.prototype)}};var Fa;Ua=da=ge([de({type:Mt.Sequence,itemType:_a})],Ua);let Va=Fa=class extends Ae{constructor(t){super(t),Object.setPrototypeOf(this,Fa.prototype)}};Va=Fa=ge([de({type:Mt.Sequence,itemType:Ni})],Va);class La{constructor(t={}){this.version=0,this.subject=new Re,this.subjectPKInfo=new $i,this.attributes=new Va,Object.assign(this,t)}}ge([fe({type:kt.Integer})],La.prototype,"version",void 0),ge([fe({type:Re})],La.prototype,"subject",void 0),ge([fe({type:$i})],La.prototype,"subjectPKInfo",void 0),ge([fe({type:Va,implicit:!0,context:0})],La.prototype,"attributes",void 0);class Ga{constructor(t={}){this.certificationRequestInfo=new La,this.signatureAlgorithm=new Gi,this.signature=new ArrayBuffer(0),Object.assign(this,t)}}ge([fe({type:La})],Ga.prototype,"certificationRequestInfo",void 0),ge([fe({type:Gi})],Ga.prototype,"signatureAlgorithm",void 0),ge([fe({type:kt.BitString})],Ga.prototype,"signature",void 0);export{Le as $,An as A,lo as B,Yi as C,uo as D,mn as E,ao as F,co as G,no as H,po as I,oo as J,ro as K,so as L,Ga as M,jr as N,Mr as O,Re as P,Ne as Q,Or as R,ze as S,Co as T,wa as U,yo as V,mo as W,Ze as X,Me as Y,_t as Z,wi as _,s as a,Si as a0,Ki as a1,Ve as a2,li as a3,Ue as a4,Li as a5,Oi as a6,ei as a7,Fs as a8,bi as a9,es as aa,rs as ab,ss as ac,Jr as ad,Bs as ae,bs as af,Ns as ag,Os as ah,Ls as ai,Vs as aj,fi as ak,ki as al,Hi as am,Fi as an,Lr as ao,rn as ap,dn as aq,Bi as ar,xi as as,n as b,o as c,Pn as d,me as e,rr as f,nr as g,lr as h,r as i,En as j,wn as k,Dn as l,Fn as m,Ni as n,Ca as o,Se as p,Ka as q,ya as r,Sa as s,ka as t,fo as u,ho as v,Ao as w,to as x,eo as y,So as z}
87
+ */class vn{constructor(){this.providers=new Map;const t=window.crypto||window.msCrypto;void 0!==t&&this.set(vn.DEFAULT,t)}static isCryptoKeyPair(t){return t&&t.privateKey&&t.publicKey}get(t=vn.DEFAULT){const e=this.providers.get(t.toLowerCase());if(!e)throw new Error(`Cannot get Crypto by name '${t}'`);return e}set(t,e){if("string"==typeof t){if(!e)throw new TypeError("Argument 'value' is required");this.providers.set(t.toLowerCase(),e)}else this.providers.set(vn.DEFAULT,t);return this}}vn.DEFAULT="default";const En=new vn,wn=t=>t.replace(/(.{32})/g,"$1\n").replace(/(.{4})/g,"$1 ").trim(),Pn=t=>t.replace(/(.{64})/g,"$1\n"),bn=e=>{const i=e.replace(/.*base64,/,"").replace(/-----.+-----/g,"").replace(/[\s\r\n]/g,"");let s;return s=/^\s*(?:[0-9A-Fa-f][0-9A-Fa-f]\s*)+$/.test(i)?t.Convert.FromHex(i):(t=>{try{return window.atob(t),!0}catch(t){return!1}})(i)||r(i)?t.Convert.FromBase64(i):t.Convert.FromBinary(e),s},Dn=async(t,e)=>{const i=En.get();if(i.subtle)return i.subtle.digest(t,e)};class In{constructor(t={}){this.acIssuer=new Ke,this.acSerial=0,this.attrs=[],Object.assign(this,t)}}var Bn;ve([fe({type:Ke})],In.prototype,"acIssuer",void 0),ve([fe({type:Kt.Integer})],In.prototype,"acSerial",void 0),ve([fe({type:ki,repeated:"sequence"})],In.prototype,"attrs",void 0);let Tn=Bn=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Bn.prototype)}};Tn=Bn=ve([ye({type:Mt.Sequence,itemType:Kt.ObjectIdentifier})],Tn);class xn{constructor(t={}){this.permitUnSpecified=!0,Object.assign(this,t)}}ve([fe({type:Kt.Integer,optional:!0})],xn.prototype,"pathLenConstraint",void 0),ve([fe({type:Tn,implicit:!0,context:0,optional:!0})],xn.prototype,"permittedAttrs",void 0),ve([fe({type:Tn,implicit:!0,context:1,optional:!0})],xn.prototype,"excludedAttrs",void 0),ve([fe({type:Kt.Boolean,defaultValue:!0})],xn.prototype,"permitUnSpecified",void 0);class On{constructor(t={}){this.issuer=new Qe,this.serial=new ArrayBuffer(0),this.issuerUID=new ArrayBuffer(0),Object.assign(this,t)}}var Rn;ve([fe({type:Qe})],On.prototype,"issuer",void 0),ve([fe({type:Kt.Integer,converter:Ut})],On.prototype,"serial",void 0),ve([fe({type:Kt.BitString,optional:!0})],On.prototype,"issuerUID",void 0),function(t){t[t.publicKey=0]="publicKey",t[t.publicKeyCert=1]="publicKeyCert",t[t.otherObjectTypes=2]="otherObjectTypes"}(Rn||(Rn={}));class Nn{constructor(t={}){this.digestedObjectType=Rn.publicKey,this.digestAlgorithm=new $i,this.objectDigest=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.Enumerated})],Nn.prototype,"digestedObjectType",void 0),ve([fe({type:Kt.ObjectIdentifier,optional:!0})],Nn.prototype,"otherObjectTypeID",void 0),ve([fe({type:$i})],Nn.prototype,"digestAlgorithm",void 0),ve([fe({type:Kt.BitString})],Nn.prototype,"objectDigest",void 0);class kn{constructor(t={}){Object.assign(this,t)}}ve([fe({type:Qe,optional:!0})],kn.prototype,"issuerName",void 0),ve([fe({type:On,context:0,implicit:!0,optional:!0})],kn.prototype,"baseCertificateID",void 0),ve([fe({type:Nn,context:1,implicit:!0,optional:!0})],kn.prototype,"objectDigestInfo",void 0);let Mn=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Ke,repeated:"sequence"})],Mn.prototype,"v1Form",void 0),ve([fe({type:kn,context:0,implicit:!0})],Mn.prototype,"v2Form",void 0),Mn=ve([ye({type:Mt.Choice})],Mn);class Kn{constructor(t={}){this.notBeforeTime=new Date,this.notAfterTime=new Date,Object.assign(this,t)}}ve([fe({type:Kt.GeneralizedTime})],Kn.prototype,"notBeforeTime",void 0),ve([fe({type:Kt.GeneralizedTime})],Kn.prototype,"notAfterTime",void 0);class jn{constructor(t={}){Object.assign(this,t)}}var Hn,_n,Un;ve([fe({type:On,implicit:!0,context:0,optional:!0})],jn.prototype,"baseCertificateID",void 0),ve([fe({type:Qe,implicit:!0,context:1,optional:!0})],jn.prototype,"entityName",void 0),ve([fe({type:Nn,implicit:!0,context:2,optional:!0})],jn.prototype,"objectDigestInfo",void 0),function(t){t[t.v2=1]="v2"}(Hn||(Hn={}));class Fn{constructor(t={}){this.version=Hn.v2,this.holder=new jn,this.issuer=new Mn,this.signature=new $i,this.serialNumber=new ArrayBuffer(0),this.attrCertValidityPeriod=new Kn,this.attributes=[],Object.assign(this,t)}}ve([fe({type:Kt.Integer})],Fn.prototype,"version",void 0),ve([fe({type:jn})],Fn.prototype,"holder",void 0),ve([fe({type:Mn})],Fn.prototype,"issuer",void 0),ve([fe({type:$i})],Fn.prototype,"signature",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Fn.prototype,"serialNumber",void 0),ve([fe({type:Kn})],Fn.prototype,"attrCertValidityPeriod",void 0),ve([fe({type:ki,repeated:"sequence"})],Fn.prototype,"attributes",void 0),ve([fe({type:Kt.BitString,optional:!0})],Fn.prototype,"issuerUniqueID",void 0),ve([fe({type:Zi,optional:!0})],Fn.prototype,"extensions",void 0);class Vn{constructor(t={}){this.acinfo=new Fn,this.signatureAlgorithm=new $i,this.signatureValue=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Fn})],Vn.prototype,"acinfo",void 0),ve([fe({type:$i})],Vn.prototype,"signatureAlgorithm",void 0),ve([fe({type:Kt.BitString})],Vn.prototype,"signatureValue",void 0),function(t){t[t.unmarked=1]="unmarked",t[t.unclassified=2]="unclassified",t[t.restricted=4]="restricted",t[t.confidential=8]="confidential",t[t.secret=16]="secret",t[t.topSecret=32]="topSecret"}(_n||(_n={}));class Ln extends ce{}class Gn{constructor(t={}){this.type="",this.value=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier,implicit:!0,context:0})],Gn.prototype,"type",void 0),ve([fe({type:Kt.Any,implicit:!0,context:1})],Gn.prototype,"value",void 0);class $n{constructor(t={}){this.policyId="",this.classList=new Ln(_n.unclassified),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],$n.prototype,"policyId",void 0),ve([fe({type:Ln,defaultValue:new Ln(_n.unclassified)})],$n.prototype,"classList",void 0),ve([fe({type:Gn,repeated:"set"})],$n.prototype,"securityCategories",void 0);class Qn{constructor(t={}){Object.assign(this,t)}}ve([fe({type:le})],Qn.prototype,"cotets",void 0),ve([fe({type:Kt.ObjectIdentifier})],Qn.prototype,"oid",void 0),ve([fe({type:Kt.Utf8String})],Qn.prototype,"string",void 0);class Wn{constructor(t={}){this.values=[],Object.assign(this,t)}}ve([fe({type:Qe,implicit:!0,context:0,optional:!0})],Wn.prototype,"policyAuthority",void 0),ve([fe({type:Qn,repeated:"sequence"})],Wn.prototype,"values",void 0);class qn{constructor(t={}){this.targetCertificate=new On,Object.assign(this,t)}}ve([fe({type:On})],qn.prototype,"targetCertificate",void 0),ve([fe({type:Ke,optional:!0})],qn.prototype,"targetName",void 0),ve([fe({type:Nn,optional:!0})],qn.prototype,"certDigestInfo",void 0);let zn=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Ke,context:0,implicit:!0})],zn.prototype,"targetName",void 0),ve([fe({type:Ke,context:1,implicit:!0})],zn.prototype,"targetGroup",void 0),ve([fe({type:qn,context:2,implicit:!0})],zn.prototype,"targetCert",void 0),zn=ve([ye({type:Mt.Choice})],zn);let Jn=Un=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Un.prototype)}};var Zn;Jn=Un=ve([ye({type:Mt.Sequence,itemType:zn})],Jn);let Xn=Zn=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Zn.prototype)}};Xn=Zn=ve([ye({type:Mt.Sequence,itemType:Jn})],Xn);class Yn{constructor(t={}){Object.assign(this,t)}}ve([fe({type:Qe,implicit:!0,context:0,optional:!0})],Yn.prototype,"roleAuthority",void 0),ve([fe({type:Ke,implicit:!0,context:1})],Yn.prototype,"roleName",void 0);class to{constructor(t={}){this.service=new Ke,this.ident=new Ke,Object.assign(this,t)}}ve([fe({type:Ke})],to.prototype,"service",void 0),ve([fe({type:Ke})],to.prototype,"ident",void 0),ve([fe({type:le,optional:!0})],to.prototype,"authInfo",void 0);const eo="0.4.0.9496.6";let io=class{constructor(t={}){this.codeAuthority=new Ke,this.codeId=new Ke,this.shortName="",this.shortDescription="",Object.assign(this,t)}};ve([fe({type:Ke,context:0})],io.prototype,"codeAuthority",void 0),ve([fe({type:Ke,context:1})],io.prototype,"codeId",void 0),ve([fe({type:Kt.Utf8String,context:2})],io.prototype,"shortName",void 0),ve([fe({type:Kt.Utf8String,context:3})],io.prototype,"shortDescription",void 0),io=ve([ye({type:Mt.Sequence})],io);let ro=class extends Re{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};ro=ve([ye({type:Mt.Sequence})],ro);const so="0.4.0.9496.1";let no=class extends ro{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};no=ve([ye({type:Mt.Sequence})],no);const oo="0.4.0.9496.2";let ao=class extends ro{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};ao=ve([ye({type:Mt.Sequence})],ao);const co="0.4.0.9496.3";let lo=class extends ro{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};lo=ve([ye({type:Mt.Sequence})],lo);const uo="0.4.0.9496.4";let ho=class extends ro{constructor(t){super(t),Object.setPrototypeOf(this,Re.prototype)}};ho=ve([ye({type:Mt.Sequence})],ho);const po="0.4.0.9496.8";let yo=class{constructor(t={}){this.location="",this.base=0,this.degree=0,Object.assign(this,t)}toString(){return`${this.base} x 10^${this.degree} ${this.location}`}};ve([fe({type:Kt.PrintableString})],yo.prototype,"location",void 0),ve([fe({type:Kt.Integer})],yo.prototype,"base",void 0),ve([fe({type:Kt.Integer})],yo.prototype,"degree",void 0),yo=ve([ye({type:Mt.Sequence})],yo);const fo="0.4.0.9496.9";let So=class{constructor(t={}){this.stars5=0,this.stars4=0,this.stars3=0,this.stars2=0,this.stars1=0,Object.assign(this,t)}};ve([fe({type:Kt.Integer})],So.prototype,"stars5",void 0),ve([fe({type:Kt.Integer})],So.prototype,"stars4",void 0),ve([fe({type:Kt.Integer})],So.prototype,"stars3",void 0),ve([fe({type:Kt.Integer})],So.prototype,"stars2",void 0),ve([fe({type:Kt.Integer})],So.prototype,"stars1",void 0),So=ve([ye({type:Mt.Sequence})],So);const Co="0.4.0.9496.5";let Ao=class{constructor(t={}){this.DNBvsDNO=new ce(0),this.DNBvsDNT=new ce(0),this.DNOvsDNT=new ce(0),Object.assign(this,t)}};ve([fe({type:ce,context:0})],Ao.prototype,"DNBvsDNO",void 0),ve([fe({type:ce,context:1})],Ao.prototype,"DNBvsDNT",void 0),ve([fe({type:ce,context:2})],Ao.prototype,"DNOvsDNT",void 0),Ao=ve([ye({type:Mt.Sequence})],Ao);const mo="0.4.0.9496.7";let go=class{constructor(t={}){this.assessmentAuthority=new Ke,this.assessmentRef=new Ke,this.assessmentLocation=new Ke,this.dataStorageTerritory="",this.description="",Object.assign(this,t)}};ve([fe({type:Ke,context:0})],go.prototype,"assessmentAuthority",void 0),ve([fe({type:Ke,context:1})],go.prototype,"assessmentRef",void 0),ve([fe({type:Ke,context:2})],go.prototype,"assessmentLocation",void 0),ve([fe({type:Kt.PrintableString,context:3})],go.prototype,"dataStorageTerritory",void 0),ve([fe({type:Kt.Utf8String,context:4})],go.prototype,"description",void 0),go=ve([ye({type:Mt.Sequence})],go);class vo{constructor(t={}){this.attrType="",this.attrValues=[],Object.assign(this,t)}}var Eo;ve([fe({type:Kt.ObjectIdentifier})],vo.prototype,"attrType",void 0),ve([fe({type:Kt.Any,repeated:"set"})],vo.prototype,"attrValues",void 0);class wo{constructor(t={}){this.otherCertFormat="",this.otherCert=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],wo.prototype,"otherCertFormat",void 0),ve([fe({type:Kt.Any})],wo.prototype,"otherCert",void 0);let Po=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:tr})],Po.prototype,"certificate",void 0),ve([fe({type:Vn,context:2,implicit:!0})],Po.prototype,"v2AttrCert",void 0),ve([fe({type:wo,context:3,implicit:!0})],Po.prototype,"other",void 0),Po=ve([ye({type:Mt.Choice})],Po);let bo=Eo=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Eo.prototype)}};bo=Eo=ve([ye({type:Mt.Set,itemType:Po})],bo);class Do{constructor(t={}){this.contentType="",this.content=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],Do.prototype,"contentType",void 0),ve([fe({type:Kt.Any,context:0})],Do.prototype,"content",void 0);let Io=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:le})],Io.prototype,"single",void 0),ve([fe({type:Kt.Any})],Io.prototype,"any",void 0),Io=ve([ye({type:Mt.Choice})],Io);class Bo{constructor(t={}){this.eContentType="",Object.assign(this,t)}}var To;ve([fe({type:Kt.ObjectIdentifier})],Bo.prototype,"eContentType",void 0),ve([fe({type:Io,context:0,optional:!0})],Bo.prototype,"eContent",void 0),function(t){t[t.v0=0]="v0",t[t.v1=1]="v1",t[t.v2=2]="v2",t[t.v3=3]="v3",t[t.v4=4]="v4",t[t.v5=5]="v5"}(To||(To={}));let xo=class extends $i{};xo=ve([ye({type:Mt.Sequence})],xo);let Oo=class extends $i{};Oo=ve([ye({type:Mt.Sequence})],Oo);let Ro=class extends $i{};Ro=ve([ye({type:Mt.Sequence})],Ro);let No=class extends $i{};No=ve([ye({type:Mt.Sequence})],No);let ko=class extends $i{};ko=ve([ye({type:Mt.Sequence})],ko);let Mo=class extends $i{};Mo=ve([ye({type:Mt.Sequence})],Mo);let Ko=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:le})],Ko.prototype,"single",void 0),ve([fe({type:Kt.Any})],Ko.prototype,"any",void 0),Ko=ve([ye({type:Mt.Choice})],Ko);class jo{constructor(t={}){this.contentType="",this.contentEncryptionAlgorithm=new No,Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],jo.prototype,"contentType",void 0),ve([fe({type:No})],jo.prototype,"contentEncryptionAlgorithm",void 0),ve([fe({type:le,context:0,implicit:!0,optional:!0})],jo.prototype,"encryptedContent",void 0);class Ho{constructor(t={}){this.contentType="",this.contentEncryptionAlgorithm=new No,Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],Ho.prototype,"contentType",void 0),ve([fe({type:No})],Ho.prototype,"contentEncryptionAlgorithm",void 0),ve([fe({type:Ko,context:0,optional:!0})],Ho.prototype,"encryptedContent",void 0);let _o=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:jo,optional:!0})],_o.prototype,"implicitEncryptedContentInfo",void 0),ve([fe({type:Ho,optional:!0})],_o.prototype,"explicitEncryptedContentInfo",void 0),_o=ve([ye({type:Mt.Choice})],_o);class Uo{constructor(t={}){this.issuer=new Re,this.serialNumber=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Re})],Uo.prototype,"issuer",void 0),ve([fe({type:Kt.Integer,converter:Ut})],Uo.prototype,"serialNumber",void 0);class Fo{constructor(t={}){this.keyAttrId="",Object.assign(this,t)}}var Vo;ve([fe({type:Kt.ObjectIdentifier})],Fo.prototype,"keyAttrId",void 0),ve([fe({type:Kt.Any,optional:!0})],Fo.prototype,"keyAttr",void 0);class Lo{constructor(t={}){this.subjectKeyIdentifier=new ji,Object.assign(this,t)}}ve([fe({type:ji})],Lo.prototype,"subjectKeyIdentifier",void 0),ve([fe({type:Kt.GeneralizedTime,optional:!0})],Lo.prototype,"date",void 0),ve([fe({type:Fo,optional:!0})],Lo.prototype,"other",void 0);let Go=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:Lo,context:0,implicit:!0,optional:!0})],Go.prototype,"rKeyId",void 0),ve([fe({type:Uo,optional:!0})],Go.prototype,"issuerAndSerialNumber",void 0),Go=ve([ye({type:Mt.Choice})],Go);class $o{constructor(t={}){this.rid=new Go,this.encryptedKey=new le,Object.assign(this,t)}}ve([fe({type:Go})],$o.prototype,"rid",void 0),ve([fe({type:le})],$o.prototype,"encryptedKey",void 0);let Qo=Vo=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Vo.prototype)}};Qo=Vo=ve([ye({type:Mt.Sequence,itemType:$o})],Qo);class Wo{constructor(t={}){this.algorithm=new $i,this.publicKey=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:$i})],Wo.prototype,"algorithm",void 0),ve([fe({type:Kt.BitString})],Wo.prototype,"publicKey",void 0);let qo=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:ji,context:0,implicit:!0,optional:!0})],qo.prototype,"subjectKeyIdentifier",void 0),ve([fe({type:Wo,context:1,implicit:!0,optional:!0})],qo.prototype,"originatorKey",void 0),ve([fe({type:Uo,optional:!0})],qo.prototype,"issuerAndSerialNumber",void 0),qo=ve([ye({type:Mt.Choice})],qo);class zo{constructor(t={}){this.version=To.v3,this.originator=new qo,this.keyEncryptionAlgorithm=new Ro,this.recipientEncryptedKeys=new Qo,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],zo.prototype,"version",void 0),ve([fe({type:qo,context:0})],zo.prototype,"originator",void 0),ve([fe({type:le,context:1,optional:!0})],zo.prototype,"ukm",void 0),ve([fe({type:Ro})],zo.prototype,"keyEncryptionAlgorithm",void 0),ve([fe({type:Qo})],zo.prototype,"recipientEncryptedKeys",void 0);let Jo=class{constructor(t={}){Object.assign(this,t)}};ve([fe({type:ji,context:0,implicit:!0})],Jo.prototype,"subjectKeyIdentifier",void 0),ve([fe({type:Uo})],Jo.prototype,"issuerAndSerialNumber",void 0),Jo=ve([ye({type:Mt.Choice})],Jo);class Zo{constructor(t={}){this.version=To.v0,this.rid=new Jo,this.keyEncryptionAlgorithm=new Ro,this.encryptedKey=new le,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],Zo.prototype,"version",void 0),ve([fe({type:Jo})],Zo.prototype,"rid",void 0),ve([fe({type:Ro})],Zo.prototype,"keyEncryptionAlgorithm",void 0),ve([fe({type:le})],Zo.prototype,"encryptedKey",void 0);class Xo{constructor(t={}){this.keyIdentifier=new le,Object.assign(this,t)}}ve([fe({type:le})],Xo.prototype,"keyIdentifier",void 0),ve([fe({type:Kt.GeneralizedTime,optional:!0})],Xo.prototype,"date",void 0),ve([fe({type:Fo,optional:!0})],Xo.prototype,"other",void 0);class Yo{constructor(t={}){this.version=To.v4,this.kekid=new Xo,this.keyEncryptionAlgorithm=new Ro,this.encryptedKey=new le,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],Yo.prototype,"version",void 0),ve([fe({type:Xo})],Yo.prototype,"kekid",void 0),ve([fe({type:Ro})],Yo.prototype,"keyEncryptionAlgorithm",void 0),ve([fe({type:le})],Yo.prototype,"encryptedKey",void 0);class ta{constructor(t={}){this.version=To.v0,this.keyEncryptionAlgorithm=new Ro,this.encryptedKey=new le,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],ta.prototype,"version",void 0),ve([fe({type:Mo,context:0,optional:!0})],ta.prototype,"keyDerivationAlgorithm",void 0),ve([fe({type:Ro})],ta.prototype,"keyEncryptionAlgorithm",void 0),ve([fe({type:le})],ta.prototype,"encryptedKey",void 0);class ea{constructor(t={}){this.oriType="",this.oriValue=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],ea.prototype,"oriType",void 0),ve([fe({type:Kt.Any})],ea.prototype,"oriValue",void 0);let ia=class{constructor(t={}){Object.assign(this,t)}};var ra;ve([fe({type:Zo,optional:!0})],ia.prototype,"ktri",void 0),ve([fe({type:zo,context:1,implicit:!0,optional:!0})],ia.prototype,"kari",void 0),ve([fe({type:Yo,context:2,implicit:!0,optional:!0})],ia.prototype,"kekri",void 0),ve([fe({type:ta,context:3,implicit:!0,optional:!0})],ia.prototype,"pwri",void 0),ve([fe({type:ea,context:4,implicit:!0,optional:!0})],ia.prototype,"ori",void 0),ia=ve([ye({type:Mt.Choice})],ia);let sa=ra=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,ra.prototype)}};var na;sa=ra=ve([ye({type:Mt.Set,itemType:ia})],sa);class oa{constructor(t={}){this.otherRevInfoFormat="",this.otherRevInfo=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],oa.prototype,"otherRevInfoFormat",void 0),ve([fe({type:Kt.Any})],oa.prototype,"otherRevInfo",void 0);let aa=class{constructor(t={}){this.other=new oa,Object.assign(this,t)}};ve([fe({type:oa,context:1,implicit:!0})],aa.prototype,"other",void 0),aa=ve([ye({type:Mt.Choice})],aa);let ca=na=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,na.prototype)}};ca=na=ve([ye({type:Mt.Set,itemType:aa})],ca);class la{constructor(t={}){Object.assign(this,t)}}var ua;ve([fe({type:bo,context:0,implicit:!0,optional:!0})],la.prototype,"certs",void 0),ve([fe({type:ca,context:1,implicit:!0,optional:!0})],la.prototype,"crls",void 0);let ha=ua=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,ua.prototype)}};ha=ua=ve([ye({type:Mt.Set,itemType:vo})],ha);class pa{constructor(t={}){this.version=To.v0,this.recipientInfos=new sa,this.encryptedContentInfo=new _o,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],pa.prototype,"version",void 0),ve([fe({type:la,context:0,implicit:!0,optional:!0})],pa.prototype,"originatorInfo",void 0),ve([fe({type:sa})],pa.prototype,"recipientInfos",void 0),ve([fe({type:_o})],pa.prototype,"encryptedContentInfo",void 0),ve([fe({type:ha,context:1,implicit:!0,optional:!0})],pa.prototype,"unprotectedAttrs",void 0);let da=class{constructor(t={}){Object.assign(this,t)}};var ya;ve([fe({type:ji,context:0,implicit:!0})],da.prototype,"subjectKeyIdentifier",void 0),ve([fe({type:Uo})],da.prototype,"issuerAndSerialNumber",void 0),da=ve([ye({type:Mt.Choice})],da);class fa{constructor(t={}){this.version=To.v0,this.sid=new da,this.digestAlgorithm=new xo,this.signatureAlgorithm=new Oo,this.signature=new le,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],fa.prototype,"version",void 0),ve([fe({type:da})],fa.prototype,"sid",void 0),ve([fe({type:xo})],fa.prototype,"digestAlgorithm",void 0),ve([fe({type:vo,repeated:"set",context:0,implicit:!0,optional:!0})],fa.prototype,"signedAttrs",void 0),ve([fe({type:Oo})],fa.prototype,"signatureAlgorithm",void 0),ve([fe({type:le})],fa.prototype,"signature",void 0),ve([fe({type:vo,repeated:"set",context:1,implicit:!0,optional:!0})],fa.prototype,"unsignedAttrs",void 0);let Sa=ya=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,ya.prototype)}};var Ca;Sa=ya=ve([ye({type:Mt.Set,itemType:fa})],Sa);let Aa=Ca=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Ca.prototype)}};Aa=Ca=ve([ye({type:Mt.Set,itemType:xo})],Aa);class ma{constructor(t={}){this.version=To.v0,this.digestAlgorithms=new Aa,this.encapContentInfo=new Bo,this.signerInfos=new Sa,Object.assign(this,t)}}var ga;ve([fe({type:Kt.Integer})],ma.prototype,"version",void 0),ve([fe({type:Aa})],ma.prototype,"digestAlgorithms",void 0),ve([fe({type:Bo})],ma.prototype,"encapContentInfo",void 0),ve([fe({type:bo,context:0,implicit:!0,optional:!0})],ma.prototype,"certificates",void 0),ve([fe({type:aa,context:1,implicit:!0,optional:!0})],ma.prototype,"crls",void 0),ve([fe({type:Sa})],ma.prototype,"signerInfos",void 0);class va{constructor(t={}){this.attrId="",this.attrValues=[],Object.assign(t)}}ve([fe({type:Kt.ObjectIdentifier})],va.prototype,"attrId",void 0),ve([fe({type:Kt.Any,repeated:"set"})],va.prototype,"attrValues",void 0);let Ea=ga=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,ga.prototype)}};var wa;Ea=ga=ve([ye({type:Mt.Sequence,itemType:va})],Ea);let Pa=wa=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,wa.prototype)}};Pa=wa=ve([ye({type:Mt.Sequence,itemType:Do})],Pa);class ba{constructor(t={}){this.certId="",this.certValue=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],ba.prototype,"certId",void 0),ve([fe({type:Kt.Any,context:0})],ba.prototype,"certValue",void 0);class Da{constructor(t={}){this.crlId="",this.crltValue=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],Da.prototype,"crlId",void 0),ve([fe({type:Kt.Any,context:0})],Da.prototype,"crltValue",void 0);class Ia extends le{}class Ba{constructor(t={}){this.encryptionAlgorithm=new $i,this.encryptedData=new Ia,Object.assign(this,t)}}var Ta,xa;ve([fe({type:$i})],Ba.prototype,"encryptionAlgorithm",void 0),ve([fe({type:Ia})],Ba.prototype,"encryptedData",void 0),function(t){t[t.v1=0]="v1"}(xa||(xa={}));class Oa extends le{}let Ra=Ta=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Ta.prototype)}};Ra=Ta=ve([ye({type:Mt.Sequence,itemType:ki})],Ra);class Na{constructor(t={}){this.version=xa.v1,this.privateKeyAlgorithm=new $i,this.privateKey=new Oa,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],Na.prototype,"version",void 0),ve([fe({type:$i})],Na.prototype,"privateKeyAlgorithm",void 0),ve([fe({type:Oa})],Na.prototype,"privateKey",void 0),ve([fe({type:Ra,implicit:!0,context:0,optional:!0})],Na.prototype,"attributes",void 0);let ka=class extends Na{};ka=ve([ye({type:Mt.Sequence})],ka);let Ma=class extends Ba{};Ma=ve([ye({type:Mt.Sequence})],Ma);class Ka{constructor(t={}){this.secretTypeId="",this.secretValue=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],Ka.prototype,"secretTypeId",void 0),ve([fe({type:Kt.Any,context:0})],Ka.prototype,"secretValue",void 0);class ja{constructor(t={}){this.mac=new Br,this.macSalt=new le,this.iterations=1,Object.assign(this,t)}}ve([fe({type:Br})],ja.prototype,"mac",void 0),ve([fe({type:le})],ja.prototype,"macSalt",void 0),ve([fe({type:Kt.Integer,defaultValue:1})],ja.prototype,"iterations",void 0);class Ha{constructor(t={}){this.version=3,this.authSafe=new Do,this.macData=new ja,Object.assign(this,t)}}var _a;ve([fe({type:Kt.Integer})],Ha.prototype,"version",void 0),ve([fe({type:Do})],Ha.prototype,"authSafe",void 0),ve([fe({type:ja,optional:!0})],Ha.prototype,"macData",void 0);class Ua{constructor(t={}){this.bagId="",this.bagValue=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:Kt.ObjectIdentifier})],Ua.prototype,"bagId",void 0),ve([fe({type:Kt.Any,context:0})],Ua.prototype,"bagValue",void 0),ve([fe({type:va,repeated:"set",optional:!0})],Ua.prototype,"bagAttributes",void 0);let Fa=_a=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,_a.prototype)}};var Va,La,Ga;Fa=_a=ve([ye({type:Mt.Sequence,itemType:Ua})],Fa);const $a="1.2.840.113549.1.9",Qa=`${$a}.2`,Wa=`${$a}.7`,qa=`${$a}.14`;let za=class extends Ie{constructor(t={}){super(t)}toString(){return{}.toString(),this.ia5String||super.toString()}};ve([fe({type:Kt.IA5String})],za.prototype,"ia5String",void 0),za=ve([ye({type:Mt.Choice})],za);let Ja=class extends Do{};Ja=ve([ye({type:Mt.Sequence})],Ja);let Za=class extends Ha{};Za=ve([ye({type:Mt.Sequence})],Za);let Xa=class extends Ba{};Xa=ve([ye({type:Mt.Sequence})],Xa);let Ya=class{constructor(t=""){this.value=t}toString(){return this.value}};ve([fe({type:Kt.IA5String})],Ya.prototype,"value",void 0),Ya=ve([ye({type:Mt.Choice})],Ya);let tc=class extends za{};tc=ve([ye({type:Mt.Choice})],tc);let ec=class extends Ie{};ec=ve([ye({type:Mt.Choice})],ec);let ic=class{constructor(t=new Date){this.value=t}};ve([fe({type:Kt.GeneralizedTime})],ic.prototype,"value",void 0),ic=ve([ye({type:Mt.Choice})],ic);let rc=class extends Ie{};rc=ve([ye({type:Mt.Choice})],rc);let sc=class{constructor(t="M"){this.value=t}toString(){return this.value}};ve([fe({type:Kt.PrintableString})],sc.prototype,"value",void 0),sc=ve([ye({type:Mt.Choice})],sc);let nc=class{constructor(t=""){this.value=t}toString(){return this.value}};ve([fe({type:Kt.PrintableString})],nc.prototype,"value",void 0),nc=ve([ye({type:Mt.Choice})],nc);let oc=class extends nc{};oc=ve([ye({type:Mt.Choice})],oc);let ac=class extends Ie{};ac=ve([ye({type:Mt.Choice})],ac);let cc=class{constructor(t=""){this.value=t}toString(){return this.value}};ve([fe({type:Kt.ObjectIdentifier})],cc.prototype,"value",void 0),cc=ve([ye({type:Mt.Choice})],cc);let lc=class extends Wi{};lc=ve([ye({type:Mt.Choice})],lc);let uc=class{constructor(t=0){this.value=t}toString(){return this.value.toString()}};ve([fe({type:Kt.Integer})],uc.prototype,"value",void 0),uc=ve([ye({type:Mt.Choice})],uc);let hc=class extends fa{};hc=ve([ye({type:Mt.Sequence})],hc);let pc=class extends Ie{};pc=ve([ye({type:Mt.Choice})],pc);let dc=Va=class extends Zi{constructor(t){super(t),Object.setPrototypeOf(this,Va.prototype)}};dc=Va=ve([ye({type:Mt.Sequence})],dc);let yc=La=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,La.prototype)}};yc=La=ve([ye({type:Mt.Set,itemType:vo})],yc);let fc=class{constructor(t=""){this.value=t}toString(){return this.value}};ve([fe({type:Kt.BmpString})],fc.prototype,"value",void 0),fc=ve([ye({type:Mt.Choice})],fc);let Sc=class extends $i{};Sc=ve([ye({type:Mt.Sequence})],Sc);let Cc=Ga=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Ga.prototype)}};var Ac;Cc=Ga=ve([ye({type:Mt.Sequence,itemType:Sc})],Cc);let mc=Ac=class extends me{constructor(t){super(t),Object.setPrototypeOf(this,Ac.prototype)}};mc=Ac=ve([ye({type:Mt.Sequence,itemType:ki})],mc);class gc{constructor(t={}){this.version=0,this.subject=new Re,this.subjectPKInfo=new Qi,this.attributes=new mc,Object.assign(this,t)}}ve([fe({type:Kt.Integer})],gc.prototype,"version",void 0),ve([fe({type:Re})],gc.prototype,"subject",void 0),ve([fe({type:Qi})],gc.prototype,"subjectPKInfo",void 0),ve([fe({type:mc,implicit:!0,context:0})],gc.prototype,"attributes",void 0);class vc{constructor(t={}){this.certificationRequestInfo=new gc,this.signatureAlgorithm=new $i,this.signature=new ArrayBuffer(0),Object.assign(this,t)}}ve([fe({type:gc})],vc.prototype,"certificationRequestInfo",void 0),ve([fe({type:$i})],vc.prototype,"signatureAlgorithm",void 0),ve([fe({type:Kt.BitString})],vc.prototype,"signature",void 0);export{Ut as $,mn as A,uo as B,tr as C,ho as D,gn as E,co as F,lo as G,oo as H,yo as I,ao as J,so as K,no as L,Vn as M,_r as N,vc as O,rr as P,Mr as Q,Nr as R,Re as S,Ao as T,tc as U,So as V,go as W,ke as X,Je as Y,Xe as Z,Me as _,s as a,Pi as a0,Ge as a1,Ci as a2,ji as a3,Le as a4,ui as a5,Fe as a6,Gi as a7,Ni as a8,ii as a9,Vs as aa,Ii as ab,is as ac,ss as ad,ns as ae,Zr as af,Bs as ag,Is as ah,ks as ai,Ns as aj,Gs as ak,Ls as al,fi as am,Ki as an,Hi as ao,Vi as ap,Gr as aq,sn as ar,yn as as,Bi as at,Oi as au,ri as av,di as aw,o as b,a as c,n as d,bn as e,ge as f,sr as g,or as h,r as i,ur as j,wn as k,Pn as l,Dn as m,ki as n,qa as o,Ce as p,dc as q,Qa as r,Wa as s,pc as t,fo as u,po as v,mo as w,eo as x,io as y,Co as z}