This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Object DetectSubtleCrypto() | |
//Establish the availability of various crypto.subtle API's necessary for keygen, signing, verification, hashing | |
function DetectSubtleCrypto(){ | |
var supportedApis = {}; | |
var baselineSupport = ( | |
(crypto && crypto.subtle) | |
&& ( | |
(location.protocol === "https:" || "chrome-extension:" || "chrome:") | |
|| (location.hostname === "localhost" || location.hostname === "127.0.0.1") | |
) |