
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
typepki-asn1parse
Advanced tools
The 'TypePKI' library is an opensource free TypeScript PKI library which is the successor of the long lived jsrsasign library.
The 'typepki-asn1parse' is a ASN.1 parser utility for TypePKI library.
import { asn1parse } from "typepki-asn1parse";
console.log(asn1parse("300602010a02010b"));
This shows
{
"t": "seq",
"v": [
{ "t": "int", "v": "0a" },
{ "t": "int", "v": "0b" },
]
}
Result will be a Record object which has following members:
| short name | ASN.1 name | code | value | value sample |
|---|---|---|---|---|
| bool | INTEGER | 01 | ||
| int | INTEGER | 02 | ||
| bitstr | BitString | 03 | ||
| octstr | OctetString | 04 | ||
| null | NULL | 05 | ||
| oid | ObjectIdentifier | 06 | {oid: "0.2.3.15"} | |
| enum | Enumerated | 0a | ||
| utf8str | UTF8String | 0c | {str: "りんご3"} | |
| prnstr | PrintableString | 13 | {str: "test12"} | |
| ia5str | IA5String | 16 | {str: "u1@example.com"} | |
| utctime | UTCTime | 17 | 131231235959Z | |
| gentime | GeneralizedTime | 18 | 20131231235959Z | |
| seq | SEQUENCE | 30 | array of Record | [{t:"int",v:"0123"}] |
| set | SET | 31 | array of Record | [{t:"int",v:"0123"}] |
When the ASN.1 value is a ASN.1 TLV or a sequence of ASN.1 TLV, the V will also be parsed.
This will be applied to ASN.1 application tag TLV such as "[0]" or "[1]".
FAQs
ASN.1 parser utility for TypePKI library (beta)
The npm package typepki-asn1parse receives a total of 7 weekly downloads. As such, typepki-asn1parse popularity was classified as not popular.
We found that typepki-asn1parse demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.