转换Fantom为Javascript

时间:2016-03-04 10:17:19

标签: javascript fantom

有人可以帮我将以下Fantom代码转换为Javascript吗?

// compute salted hmac 
hmac := Buf().print("${username}:${userSalt}").hmac("SHA-1", password.toBuf).toBase64

// now compute login digest using nonce 
digest := "${hmac}:${nonce}".toBuf.toDigest("SHA-1").toBase64

我已经能够使用CryptoJS计算hmac变量了:

var hash =  CryptoJS.HmacSHA1("alice:6s6Q5Rn0xZP0LPf89bNdv+65EmMUrTsey2fIhim/wKU=", "secret");

var hmac = hash.toString(CryptoJS.enc.Base64);

但我仍然在努力解读摘要。

如果您发布示例,以下是我在测试中使用的变量:

username : "alice" 
password : "secret" 
userSalt : "6s6Q5Rn0xZP0LPf89bNdv+65EmMUrTsey2fIhim/wKU=" 
nonce    : "3da210bdb1163d0d41d3c516314cbd6e" 
hmac     : "z9NILqJ3QHSG5+GlDnXsV9txjgo=" 
digest   : "B2B3mIzE/+dqcqOJJ/ejSGXRKvE="

1 个答案:

答案 0 :(得分:1)

此答案使用CryptoJS,因为您已经取得了一些成功:

var username = "alice";
var password = "secret";
var userSalt = "6s6Q5Rn0xZP0LPf89bNdv+65EmMUrTsey2fIhim/wKU=";
var nonce    = "3da210bdb1163d0d41d3c516314cbd6e";

var hmac     = CryptoJS.HmacSHA1(username + ":" + userSalt, password).toString(CryptoJS.enc.Base64);
var digest   = CryptoJS.SHA1(hmac + ":" + nonce).toString(CryptoJS.enc.Base64);

console.log(hmac);   // --> z9NILqJ3QHSG5+GlDnXsV9txjgo=
console.log(digest); // --> B2B3mIzE/+dqcqOJJ/ejSGXRKvE=

请注意,它使用以下CryptoJS文件:

/rollups/sha1.js
/rollups/hmac-sha1.js
/components/enc-base64-min.js

你可以在这个JS粘贴盒中看到一个实例:

https://jsbin.com/luvinayoyi/edit?js,console