webcrypto-examples
webcrypto-examples copied to clipboard
Web Cryptography API Examples Demo: https://diafygi.github.io/webcrypto-examples/
On my browser (FF 61.0.2 on macOS) the PBKDF2+deriveKey() square is marked N/A, with the tooltip `AESCBC is not defined`, even though I can actually use PBKDF2+deriveKey() on this browser....
The PBKDF2 example only features 1000 iterations. That's quite low and [much more are usually recommend](https://support.1password.com/pbkdf2/).
**Summary** This PR removes the HKDF-CTR algorithm, which was removed from webcrypto, in favor of [HKDF](https://en.wikipedia.org/wiki/HKDF). There are two changes: one for the documentations in `README.md` and the other for...
I am facing an issues on bulk data encryption using rsa algorithm and also aes algorithm..Is there any other way to encrypt and decrypt the data.plz suggest me a solution
create `ArrayBuffer` with `new` keyword in `AES-CTR - decrypt` code example in `README.md` file
Hi, As you know following example is explains encryption for the single public key. https://github.com/diafygi/webcrypto-examples#rsa-oaep---encrypt So is there any way to encrypt data for multiple public key (so multiple key...
Hi, thanks for this, this has been my #1 frequently visited website in the last couple of months. I have a question. When I look at the demo page at...
The [ECDH examples](https://github.com/diafygi/webcrypto-examples#ecdh---derivekey) output the raw bits from the ECDH secret value, either directly or into the importKey operation of AES-CTR. As I pointed out [on the WebCrypto spec page](https://github.com/w3c/webcrypto/issues/193)...
Hi, I was experimenting with your examples to try to recreate a browser version of: https://www.npmjs.com/package/jwt-simple Here is a gist to explain end goal (although this gist doesn't work): https://gist.github.com/mattmazzola/1eafd7aea79e082982da203ec0405997...