Miroshin Stepan

Results 394 comments of Miroshin Stepan

@kumaheiyama I've published the fixed version `[email protected]`. Please try it

@borisreitman Could you try https://github.com/PeculiarVentures/webcrypto-liner/blob/master/dist/webcrypto-liner.lib.js? This variant of webcrypto-liner doesn't delete native crypto object. This script uses global `liner` variable which has own `crypto` object. We use webcrypto-liner.lib.js for Web...

@borisreitman Yes, it does. You can use [this](https://github.com/PeculiarVentures/webcrypto-liner/blob/master/scripts/linerWorkerInit.js) script to do it. `webcrypto-liner` needs `getRandomValues` for key generation. So if you don't have `crypto` object you must implement your own...

WebCrypto extended API ### RSA - Add new algorithm support `RSA`, don't use `hash` parameter - Mechanism can be used for sign and verify operations - If RsaParams doesn't have...

@wayne-davidson-tickle @rmhrisk any thoughts about extended API?

My test - import EC key each 100ms - Run NodeJS GC each 10s ```js const crypto = require("path/to/nodessl.node"); setInterval(() => { crypto.Key.importJwk( { kty: "EC", crv: 415, x: Buffer.from("JG43ynRxqjy1+AemyMUoz14UqKM6cnh7zSPy/EAPgts=",...

WebCrypto doesn't support this specification [W3 WebCryptoAPI HMAC](https://www.w3.org/TR/WebCryptoAPI/#hmac)

@YuryStrozhevsky Could you review it? https://github.com/PeculiarVentures/node-webcrypto-ossl/blob/master/lib/crypto/hmac.ts#L36

@witchent I published a new version of `node-webcrypto-ossl`. I fixed issues with a default length parameter for HMAC mechanism. Now it uses 512 length by default for all hash algorithms...

@witchent Please let me know if it fixes your issue for signal-desktop