You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reason is that (to the best of my knowledge) PBKDF2 is not supported on IE11.
The failure is NotSupportedError returned by native IE11 subtle upon importKey() call with PBKDF2. Here are the args:
I know this library does not officially support IE11, however I have nowhere else to go 😂 until Microsoft deprecates its IE-based webview for Office.js add-ins.
As far as I can see, the liner already supports PBKDF2 fallback, can any tweaks be made at the wrapNative level to enable this scenario?..
The text was updated successfully, but these errors were encountered:
(just to clarify, deriveKey() is not supported either: that method (also with PBKDF2) is also used by @webcrypto/storage library that I'm using.
However I am not certain whether that error is because PBKDF2 algorithm is not implemented, or deriveKey() in general is hard-cut-off on IE11 - at any rate, probably makes sense to specifically test the case with deriveKey as well...)
The reason is that (to the best of my knowledge) PBKDF2 is not supported on IE11.
The failure is NotSupportedError returned by native IE11 subtle upon
importKey()
call with PBKDF2. Here are the args:I know this library does not officially support IE11, however I have nowhere else to go 😂 until Microsoft deprecates its IE-based webview for Office.js add-ins.
As far as I can see, the liner already supports PBKDF2 fallback, can any tweaks be made at the
wrapNative
level to enable this scenario?..The text was updated successfully, but these errors were encountered: