-
-
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. You may find some tools not listed here. Also you can find some tool usage description in its source code.
- jwtverify - JWT(JSON Web Token) verifier using JWS class
- jwssign - JWS(JSON Web Signatures) signer using JWS class
- dataencrypt (src) - RSA/RSAOAEP encryptor using Cipher.encrypt method
- datadecrypt (src) - RSA/RSAOAEP decryptor using Cipher.decrypt method
- gencsr - RSA/ECDSA keypair and CSR(certificate signing request) generator using CSRUtil.newCSRPEM method
- pemtobin - convert from any PEM format file to binary file using KEYUTIL.getHexFromPEM method
- showcert - PEM or DER binary X.509 certificate file viewer
- jwktopkcs8 - convert from JWK(JSON Web Key) format public or private key to PKCS#8 using KEYUTIL class
- pemtojwk - convert from PEM formatted RSA/DSA/ECDSA private/public PKCS#1/#5/#8 key to JWK(JSON Web Key) file using KEYUTIL class
- 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