Difference between revisions of "Web cryptography"

From Simson Garfinkel
Jump to navigationJump to search
m
Line 20: Line 20:
==Tutorials==
==Tutorials==
* [http://qnimate.com/post-series/web-cryptography-api-tutorial/ Web Cryptography API Tutorial], Narayan Prusty, 2016, QNimate,
* [http://qnimate.com/post-series/web-cryptography-api-tutorial/ Web Cryptography API Tutorial], Narayan Prusty, 2016, QNimate,


== Arguments against web cryptography ==
== Arguments against web cryptography ==
* [https://tonyarcieri.com/whats-wrong-with-webcrypto What's wrong with in-browser cryptography], Tony Arcieri, December 30, 2013.
* [https://tonyarcieri.com/whats-wrong-with-webcrypto What's wrong with in-browser cryptography], Tony Arcieri, December 30, 2013.
* [https://www.nccgroup.trust/us/about-us/newsroom-and-events/blog/2011/august/javascript-cryptography-considered-harmful/ Javascript Cryptography Considered Harmful], Thomas Ptacek, 29 August 2011
* [https://www.nccgroup.trust/us/about-us/newsroom-and-events/blog/2011/august/javascript-cryptography-considered-harmful/ Javascript Cryptography Considered Harmful], Thomas Ptacek, 29 August 2011


==Support==
==Support==
Line 31: Line 29:
* WebCrypto API enabled by default starting in Chrome 37
* WebCrypto API enabled by default starting in Chrome 37
* Internet Explorer: [https://msdn.microsoft.com/en-us/library/dn265046(v=vs.85).aspx  Limited support in IE11]
* Internet Explorer: [https://msdn.microsoft.com/en-us/library/dn265046(v=vs.85).aspx  Limited support in IE11]
=Server side=
==RSA in python==
* https://pypi.python.org/pypi/rsa (PKCS #1)
* https://gist.github.com/JonCooperWorks/5314103 (bare bones)
* http://stackoverflow.com/questions/30056762/rsa-encryption-and-decryption-in-python
==JSON Web Key in Python==
* http://python-jose.readthedocs.io/en/latest/jwk/
* http://letsencrypt.readthedocs.io/projects/acme/en/latest/api/jose/jwk.html
* https://github.com/mpdavis/python-jose
* https://pypi.python.org/pypi/python-jose/0.6.1  JavaScript Object Signing and Encryption (JOSE) technologies

Revision as of 12:59, 9 February 2017

References for Web Cryptography:


Web Cryptography Demos

IE11 Only

Tutorials

Arguments against web cryptography

Support

Server side

RSA in python

JSON Web Key in Python