Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative to window.crypto.signText in firefox 33

window.crypto && window.crypto.signText

Since firefox 33 , Mozilla no longer supports this feature.

However there's almost no information about the alternative to window.crypto.signText on the web or is there any at all?

Does anybody have a clue on this matter, appreciate the kind help?

like image 304
kidwon Avatar asked Feb 11 '23 19:02

kidwon


1 Answers

To enable signText temporary, you should type a new url in the address bar about:config and then right click -> New -> String.

Type dom.unsafe_legacy_crypto.enabled -> hit Enter -> select True.

Restart your Firefox browser.

Relevant issue is https://bugzilla.mozilla.org/show_bug.cgi?id=1083118.

like image 156
Gramic Avatar answered Feb 15 '23 11:02

Gramic