function HashString_SHA256(a){if("undefined"==typeof Crypto){AlertBox("Error! File sha256.js not included.");return""}return Crypto.SHA256(a)}function HashArray_SHA256(a){if("undefined"==typeof Crypto){AlertBox("Error! File sha256.js not included.");return""}var c="";for(var b=0;b<a.length;++b){c=c+HashString_SHA256(a[b])}return HashString_SHA256(c.toUpperCase())}function CreatePasswordHash(a,b){return HashArray_SHA256([a,b])};
