Reputation: 666
Is it a way to find a polyfill to support webcrypto on IE10 and Android4.x? I found webcrypto-shim for IE11.
I need webcrypto in Jose-jwt plugin in Javascript to do client side encryption of some datas
Upvotes: 0
Views: 1145
Reputation: 39291
The Web Cryptography API is not supported in IE11 or Android (if you mean the WebView), but it is available in Android browser and Chrome for Android
See http://caniuse.com/cryptography/embed
Webcrypto-shim
is targeted to fix legacy browsers using partial or non-standard implementations such as IE11 and Safari8, but you will not find a full polifyll for older browsers because a native implementation part is needed, at least the key storage
To encrypt data in client sid you could use another javascript library, since you do not need any specific function of WebCryptographyApi, but of course, this depends on your jose-jwt library
Upvotes: 1