Crypto.js: "Uint8ClampedArray" - undefined in IE 11

Crypto JSuses Uint8ClampedArraythat is not supported by any version IE. Are there any known workarounds?

enter image description here

+4
source share
1 answer

The problem is open on the CryptoJS project page:

http://code.google.com/p/crypto-js/issues/detail?id=81

Some workarounds are discussed here.

The solution might be to use the more recent (unreleased) CryptoJS code.

The problem on MS IE web pages regarding type array support:

https://connect.microsoft.com/IE/feedback/details/808589/html-canvas-does-not-return-imagedata-as-uint8clampedarray

+4
source

Source: https://habr.com/ru/post/1523874/


All Articles