These libraries were generated entirely or in part by the ASN.1 Compilation Service offered by Wildboar Software. The ASN.1 compiler itself is closed-source and proprietary, but some of the libraries produced with it are released publicly under the MIT license.
If you would like to see additional ASN.1 libraries in TypeScript or other programming languages, or if you have any other questions, please contact us at contact@wildboarsoftware.com.
This is slow and will crash from running out of memory if you try this for the whole project at once. Just do this for a single project at a time:
npx tslint --config tslint-imports.json --fix --project ./libs/<project>/tsconfig.lib.json
cd
into dist/libs
, then run
for dir in $(ls -1);
do
cd $dir
npm publish
cd ..
done
- Fix
TRUE
bug whereBOOLEAN
values should have beenTRUE
.- (Search for occurences of
TRUE
in ASN.1 files and find the corresponding incorrectFALSE
and change it.)
- (Search for occurences of
- Documentation
- Single-module exports
- Deduplicate
COMPONENTS OF
spec arrays - SNMPv3 (No formal module.)
- F515 (No artifact for this...)
- CAP (I already have code out there for this.)
- RFC5915-ECPrivateKey
- CSTA
- Remove unused imports
- Remove unused exports
- Prettify
- Implement XER for CINF
- Implement XER for RINF
- Implement XER for CMAIL
- Refactor some of X.500 into smaller libraries
- This has already been done partially by introducing the PKI-Stub module
sio
could be weaned from direct dependency on x500 if you just add SAT/DirectoryStringiso-9798-3-sasl
could be weaned from x500 if you add SIGNATURE- Many could be weaned if the info object classes could be refactored into a library (scvp, crmf)
acbio
could be weaned if CertificateList were includedcades
could be weaned if PolicyInformation were included in PKI-Stub (ess too)
These libraries expose few or no imports directly from the main file. Instead, users must "deep-import" symbols from these libraries.
// This will not work.
import { Certificate } from "@wildboar/x500";
// This will work.
import {
Certificate,
} from "@wildboar/x500/src/lib/modules/AuthenticationFramework/Certificate.ta";
This is due to copyright concerns.
- CBEFF
- FTAM
- ISIS
- CINF and RINF may be useful for the OID registry.
- Error in
attributeDescriptor
inAttributeCertificateDefinitions
:&id
enclosed in unnecessary{}
.