Nice repo! I'm hoping it'll solve my JWT/JWS signing performance woes in my package. Would you happen to have an example on how to sign a JWT with RS256? ``` return new Promise((resolve, reject) => { jws.createSign({ header: { typ: 'JWT', alg: algorithm }, privateKey: jwtKey, payload: payload, }) .once('done', resolve) .once('error', reject) }) ``` I have this from the popular `jws` package. Not sure how to recreate that using your crypto instead of node's crypto.
Nice repo! I'm hoping it'll solve my JWT/JWS signing performance woes in my package.
Would you happen to have an example on how to sign a JWT with RS256?
I have this from the popular
jwspackage. Not sure how to recreate that using your crypto instead of node's crypto.