├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ ├── node-aught.yml │ ├── node-pretest.yml │ ├── node-tens.yml │ ├── node-twenties.yml │ ├── rebase.yml │ └── require-allow-edits.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── aesid.json ├── asn1.js ├── certificate.js ├── fixProc.js ├── index.js ├── package.json └── test ├── 1024.priv ├── 1024.pub ├── cert.priv ├── cert.pub ├── dsa.1024.priv ├── dsa.1024.pub ├── dsa.2048.priv ├── dsa.2048.pub ├── ec.pass.priv ├── ec.priv ├── ec.pub ├── index.js ├── node.cert ├── pass.1024.priv ├── pass.1024.pub ├── pass.dsa.1024.priv ├── pass.dsa.1024.pub ├── pass.rsa.1024.priv ├── pass.rsa.1024.pub ├── pass.rsa.2028.priv ├── pass.rsa.2028.pub ├── pass2.dsa.1024.priv ├── pass2.dsa.1024.pub ├── rsa.1024.priv ├── rsa.1024.pub ├── rsa.2028.priv ├── rsa.2028.pub ├── vector.js ├── vector.priv └── vector2.priv /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/node-aught.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.github/workflows/node-aught.yml -------------------------------------------------------------------------------- /.github/workflows/node-pretest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.github/workflows/node-pretest.yml -------------------------------------------------------------------------------- /.github/workflows/node-tens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.github/workflows/node-tens.yml -------------------------------------------------------------------------------- /.github/workflows/node-twenties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.github/workflows/node-twenties.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/require-allow-edits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.github/workflows/require-allow-edits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | allow-same-version=true 3 | message=v%s 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/README.md -------------------------------------------------------------------------------- /aesid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/aesid.json -------------------------------------------------------------------------------- /asn1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/asn1.js -------------------------------------------------------------------------------- /certificate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/certificate.js -------------------------------------------------------------------------------- /fixProc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/fixProc.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/package.json -------------------------------------------------------------------------------- /test/1024.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/1024.priv -------------------------------------------------------------------------------- /test/1024.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/1024.pub -------------------------------------------------------------------------------- /test/cert.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/cert.priv -------------------------------------------------------------------------------- /test/cert.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/cert.pub -------------------------------------------------------------------------------- /test/dsa.1024.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/dsa.1024.priv -------------------------------------------------------------------------------- /test/dsa.1024.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/dsa.1024.pub -------------------------------------------------------------------------------- /test/dsa.2048.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/dsa.2048.priv -------------------------------------------------------------------------------- /test/dsa.2048.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/dsa.2048.pub -------------------------------------------------------------------------------- /test/ec.pass.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/ec.pass.priv -------------------------------------------------------------------------------- /test/ec.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/ec.priv -------------------------------------------------------------------------------- /test/ec.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/ec.pub -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/index.js -------------------------------------------------------------------------------- /test/node.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/node.cert -------------------------------------------------------------------------------- /test/pass.1024.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass.1024.priv -------------------------------------------------------------------------------- /test/pass.1024.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass.1024.pub -------------------------------------------------------------------------------- /test/pass.dsa.1024.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass.dsa.1024.priv -------------------------------------------------------------------------------- /test/pass.dsa.1024.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass.dsa.1024.pub -------------------------------------------------------------------------------- /test/pass.rsa.1024.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass.rsa.1024.priv -------------------------------------------------------------------------------- /test/pass.rsa.1024.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass.rsa.1024.pub -------------------------------------------------------------------------------- /test/pass.rsa.2028.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass.rsa.2028.priv -------------------------------------------------------------------------------- /test/pass.rsa.2028.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass.rsa.2028.pub -------------------------------------------------------------------------------- /test/pass2.dsa.1024.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass2.dsa.1024.priv -------------------------------------------------------------------------------- /test/pass2.dsa.1024.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/pass2.dsa.1024.pub -------------------------------------------------------------------------------- /test/rsa.1024.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/rsa.1024.priv -------------------------------------------------------------------------------- /test/rsa.1024.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/rsa.1024.pub -------------------------------------------------------------------------------- /test/rsa.2028.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/rsa.2028.priv -------------------------------------------------------------------------------- /test/rsa.2028.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/rsa.2028.pub -------------------------------------------------------------------------------- /test/vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/vector.js -------------------------------------------------------------------------------- /test/vector.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/vector.priv -------------------------------------------------------------------------------- /test/vector2.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/browserify/parse-asn1/HEAD/test/vector2.priv --------------------------------------------------------------------------------