-
-
Notifications
You must be signed in to change notification settings - Fork 645
Sample Node Tool List
Kenji Urushima edited this page Nov 5, 2016
·
25 revisions
TOP | GITHUB | DOWNLOADS | TUTORIALS | API REFERENCE | DEMOS | NODE TOOL
To see github folder of sample node tools, visit here.
- jwtverify - JWT(JSON Web Token) verifier using JWS class
- jwssign - JWS(JSON Web Signatures) signer using JWS class
- dataencrypt - RSA/RSAOAEP encryptor using Cipher.encrypt method
- datadecrypt - RSA/RSAOAEP decryptor using Cipher.decrypt method
- gencsr - RSA/ECDSA keypair and CSR(certificate signing request) generator using CSRUtil.newCSRPEM method
- asn1dump - ASN.1 data dumper using ASN1HEX.dump method
- asn1extract - extract specified position (i.e. nested indexes) of ASN.1 data using ASN1HEX.getDecendantHexTLVByNthList method
To execute above scripts some npm packages are reuiqred:
% npm install -g commander
% npm install -g jsrsasign
% npm install -g jsrsasign-util