有没有办法在Google Apps脚本中创建哈希值? Google Apps脚本将在.gs
代码文件中运行服务器端代码。 .gs
文件是用JavaScript编写的。因为JavaScript主要是客户端语言,并且加密任何客户端都不安全,可能是像JAC的HMAC这样的东西?当我在hmac in javascript
进行网络搜索时,我得到的第一件事就是crypto-js
。但看起来我需要链接到<script>
标记中的某些服务:
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-md5.js"></script>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha1.js"></script>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha256.js"></script>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha512.js"></script>
<script>
var hash = CryptoJS.HmacMD5("Message", "Secret Passphrase");
var hash = CryptoJS.HmacSHA1("Message", "Secret Passphrase");
var hash = CryptoJS.HmacSHA256("Message", "Secret Passphrase");
var hash = CryptoJS.HmacSHA512("Message", "Secret Passphrase");
</script>
Secret Passphrase
将在您的客户端HTML中。这没有任何意义!哦!我刚刚在维基百科中找到了一些伪代码。
以下是我重构它的尝试:
//blocksize is the size in bytes and is set to 64 bytes.
//byte size of any UTF-8 string
function byteCount(s) {
return encodeURI(s).split(/%..|./).length - 1;
};
function hmac(key, message) {
var blocksize = 64;
var keyLngth = byteCount(key);
if (keyLngth > blocksize) {
key = hash(key); // keys longer than blocksize are shortened
}
else if (keyLngth < blocksize) {
key = key + [0x00 * (blocksize - keyLngth)]; // keys shorter than blocksize are zero-padded
};
var o_key_pad = [0x5c * blocksize] ⊕ key; // Where blocksize is that of the underlying hash function
var i_key_pad = [0x36 * blocksize] ⊕ key; // Where ⊕ is exclusive or (XOR)
return hash(o_key_pad + hash(i_key_pad + message));
};
我想伪代码在哪里说:hash(key)
以下哈希函数之一:需要使用SHA-1,MD5,RIPEMD-128/160。
所以我在JavaScript中搜索了SHA-1,发现了这个:
有关如何使用Javascript创建HMAC值的任何信息将不胜感激。在此期间,我可能会继续努力。即使它是Javascript,它也是一个在服务器上运行的Google .gs
Apps脚本代码文件。
答案 0 :(得分:0)
Apps脚本内置Class Utility
,用于创建HMAC Sha256签名或令牌: