sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
define(["./_sha-32", "./_sha2"], function(sha32, sha2){ |
|
// The 256-bit implementation of SHA-2 |
|
var hash = [ |
|
0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, |
|
0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19 |
|
]; |
|
|
|
return sha2(sha32, 256, 512, hash); |
|
});
|
|
|