Web Crypto API: ImportKey Does Not Work In Firefox
I tried this example for importKey in Google Chrome 46 and Firefox 41 (JSBin): window.crypto.subtle.importKey( 'jwk', //can be 'jwk' (public or private), 'spki' (public only),
Solution 1:
Firefox does not yet support the RSA-PSS
algorithm. You can track the bug to implement it for WebCrypto at Bug 1191936.
Post a Comment for "Web Crypto API: ImportKey Does Not Work In Firefox"