摘要:
function str (len = 16) { const str = 'qwertyuioplkjhgfdsazxcvbnm1092837465POLKMNIJUHBYGVTFCRDXZSEWQA'; let sum = ''; for (let i = 0; i< len; i++) { s 阅读全文
摘要:
var Crypto = {}; Crypto.sha1_hmac = function (msg, key) { "use strict"; var oKeyPad, iKeyPad, iPadRes, bytes, i, len; if (key.length > 64) { // keys l 阅读全文