z0r0
z0r0

Reputation: 666

webcrypto solution on IE 10 and android 4.x

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

Answers (1)

pedrofb
pedrofb

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 webcryptoapi support

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

Related Questions