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 224-bit implementation of SHA-2 |
|
var hash = [ |
|
0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, |
|
0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4 |
|
]; |
|
|
|
return sha2(sha32, 224, 512, hash); |
|
});
|
|
|