JavaScript generic ASN.1 parser (mirror)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update ignore files.

+26 -16
+12 -10
.gitignore
··· 1 - .DS_Store 2 - .vscode 3 - git-*.txt 4 - node_modules 1 + _MTN/ 2 + .DS_Store/ 3 + .vscode/ 4 + node_modules/ 5 5 package-lock.json 6 6 pnpm-lock.yaml 7 - 8 - # Artifacts from parseRFC.js 9 - # Maybe we should commit this to the repo? 10 - rfc* 11 - 12 - # From updateOID.sh 7 + # Artifacts from release.sh 8 + sha256sums.asc 9 + # Artifacts from mirror_to_github.sh 10 + git-*.txt 11 + # Artifacts from updateOID.sh 13 12 dumpasn1.cfg 13 + # Artifacts from parseRFC.js 14 + rfc/ 15 + rfcdef.json
+14 -6
.mtn-ignore
··· 1 - .DS_Store 2 - .vscode 3 - git-*.txt 4 - node_modules 5 - package-lock.json 6 - pnpm-lock.yaml 1 + [.]DS_Store$ 2 + [.]vscode$ 3 + node_modules$ 4 + package-lock[.]json 5 + pnpm-lock[.]yaml 6 + # Artifacts from release.sh 7 + sha256sums[.]asc 8 + # Artifacts from mirror_to_github.sh 9 + git-[^.]*[.]txt 10 + # Artifacts from updateOID.sh 11 + dumpasn1[.]cfg 12 + # Artifacts from parseRFC.js 13 + rfc$ 14 + rfcdef[.]json