外部操作详解

aes_1.js

/*
 CryptoJS v3.1.2
 code.google.com/p/crypto-js
 (c) 2009-2013 by Jeff Mott. All rights reserved.
 code.google.com/p/crypto-js/wiki/License
 */
var CryptoJS = CryptoJS || function (u, p) {
    var d = {}, l = d.lib = {}, s = function () {
      }, t = l.Base = {
        extend: function (a) {
          s.prototype = this;
          var c = new s;
          a && c.mixIn(a);
          c.hasOwnProperty("init") || (c.init = function () {
            c.$super.init.apply(this, arguments)
          });
          c.init.prototype = c;
          c.$super = this;
          return c
        }, create: function () {
          var a = this.extend();
          a.init.apply(a, arguments);
          return a
        }, init: function () {
        }, mixIn: function (a) {
          for (var c in a)a.hasOwnProperty(c) && (this[c] = a[c]);
          a.hasOwnProperty("toString") && (this.toString = a.toString)
        }, clone: function () {
          return this.init.prototype.extend(this)
        }
      },
      r = l.WordArray = t.extend({
        init: function (a, c) {
          a = this.words = a || [];
          this.sigBytes = c != p ? c : 4 * a.length
        }, toString: function (a) {
          return (a || v).stringify(this)
        }, concat: function (a) {
          var c = this.words, e = a.words, j = this.sigBytes;
          a = a.sigBytes;
          this.clamp();
          if (j % 4)for (var k = 0; k < a; k++)c[j + k >>> 2] |= (e[k >>> 2] >>> 24 - 8 * (k % 4) & 255) << 24 - 8 * ((j + k) % 4); else if (65535 < e.length)for (k = 0; k < a; k += 4)c[j + k >>> 2] = e[k >>> 2]; else c.push.apply(c, e);
          this.sigBytes += a;
          return this
        }, clamp: function () {
          var a = this.words, c = this.sigBytes;
          a[c >>> 2] &= 4294967295 <<
            32 - 8 * (c % 4);
          a.length = u.ceil(c / 4)
        }, clone: function () {
          var a = t.clone.call(this);
          a.words = this.words.slice(0);
          return a
        }, random: function (a) {
          for (var c = [], e = 0; e < a; e += 4)c.push(4294967296 * u.random() | 0);
          return new r.init(c, a)
        }
      }), w = d.enc = {}, v = w.Hex = {
        stringify: function (a) {
          var c = a.words;
          a = a.sigBytes;
          for (var e = [], j = 0; j < a; j++) {
            var k = c[j >>> 2] >>> 24 - 8 * (j % 4) & 255;
            e.push((k >>> 4).toString(16));
            e.push((k & 15).toString(16))
          }
          return e.join("")
        }, parse: function (a) {
          for (var c = a.length, e = [], j = 0; j < c; j += 2)e[j >>> 3] |= parseInt(a.substr(j,
              2), 16) << 24 - 4 * (j % 8);
          return new r.init(e, c / 2)
        }
      }, b = w.Latin1 = {
        stringify: function (a) {
          var c = a.words;
          a = a.sigBytes;
          for (var e = [], j = 0; j < a; j++)e.push(String.fromCharCode(c[j >>> 2] >>> 24 - 8 * (j % 4) & 255));
          return e.join("")
        }, parse: function (a) {
          for (var c = a.length, e = [], j = 0; j < c; j++)e[j >>> 2] |= (a.charCodeAt(j) & 255) << 24 - 8 * (j % 4);
          return new r.init(e, c)
        }
      }, x = w.Utf8 = {
        stringify: function (a) {
          try {
            return decodeURIComponent(escape(b.stringify(a)))
          } catch (c) {
            throw Error("Malformed UTF-8 data");
          }
        }, parse: function (a) {
          return b.parse(unescape(encodeURIComponent(a)))
        }
      },
      q = l.BufferedBlockAlgorithm = t.extend({
        reset: function () {
          this._data = new r.init;
          this._nDataBytes = 0
        }, _append: function (a) {
          "string" == typeof a && (a = x.parse(a));
          this._data.concat(a);
          this._nDataBytes += a.sigBytes
        }, _process: function (a) {
          var c = this._data, e = c.words, j = c.sigBytes, k = this.blockSize, b = j / (4 * k), b = a ? u.ceil(b) : u.max((b | 0) - this._minBufferSize, 0);
          a = b * k;
          j = u.min(4 * a, j);
          if (a) {
            for (var q = 0; q < a; q += k)this._doProcessBlock(e, q);
            q = e.splice(0, a);
            c.sigBytes -= j
          }
          return new r.init(q, j)
        }, clone: function () {
          var a = t.clone.call(this);
          a._data = this._data.clone();
          return a
        }, _minBufferSize: 0
      });
    l.Hasher = q.extend({
      cfg: t.extend(), init: function (a) {
        this.cfg = this.cfg.extend(a);
        this.reset()
      }, reset: function () {
        q.reset.call(this);
        this._doReset()
      }, update: function (a) {
        this._append(a);
        this._process();
        return this
      }, finalize: function (a) {
        a && this._append(a);
        return this._doFinalize()
      }, blockSize: 16, _createHelper: function (a) {
        return function (b, e) {
          return (new a.init(e)).finalize(b)
        }
      }, _createHmacHelper: function (a) {
        return function (b, e) {
          return (new n.HMAC.init(a,
            e)).finalize(b)
        }
      }
    });
    var n = d.algo = {};
    return d
  }(Math);
(function () {
  var u = CryptoJS, p = u.lib.WordArray;
  u.enc.Base64 = {
    stringify: function (d) {
      var l = d.words, p = d.sigBytes, t = this._map;
      d.clamp();
      d = [];
      for (var r = 0; r < p; r += 3)for (var w = (l[r >>> 2] >>> 24 - 8 * (r % 4) & 255) << 16 | (l[r + 1 >>> 2] >>> 24 - 8 * ((r + 1) % 4) & 255) << 8 | l[r + 2 >>> 2] >>> 24 - 8 * ((r + 2) % 4) & 255, v = 0; 4 > v && r + 0.75 * v < p; v++)d.push(t.charAt(w >>> 6 * (3 - v) & 63));
      if (l = t.charAt(64))for (; d.length % 4;)d.push(l);
      return d.join("")
    }, parse: function (d) {
      var l = d.length, s = this._map, t = s.charAt(64);
      t && (t = d.indexOf(t), -1 != t && (l = t));
      for (var t = [], r = 0, w = 0; w <
      l; w++)if (w % 4) {
        var v = s.indexOf(d.charAt(w - 1)) << 2 * (w % 4), b = s.indexOf(d.charAt(w)) >>> 6 - 2 * (w % 4);
        t[r >>> 2] |= (v | b) << 24 - 8 * (r % 4);
        r++
      }
      return p.create(t, r)
    }, _map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
  }
})();
(function (u) {
  function p(b, n, a, c, e, j, k) {
    b = b + (n & a | ~n & c) + e + k;
    return (b << j | b >>> 32 - j) + n
  }

  function d(b, n, a, c, e, j, k) {
    b = b + (n & c | a & ~c) + e + k;
    return (b << j | b >>> 32 - j) + n
  }

  function l(b, n, a, c, e, j, k) {
    b = b + (n ^ a ^ c) + e + k;
    return (b << j | b >>> 32 - j) + n
  }

  function s(b, n, a, c, e, j, k) {
    b = b + (a ^ (n | ~c)) + e + k;
    return (b << j | b >>> 32 - j) + n
  }

  for (var t = CryptoJS, r = t.lib, w = r.WordArray, v = r.Hasher, r = t.algo, b = [], x = 0; 64 > x; x++)b[x] = 4294967296 * u.abs(u.sin(x + 1)) | 0;
  r = r.MD5 = v.extend({
    _doReset: function () {
      this._hash = new w.init([1732584193, 4023233417, 2562383102, 271733878])
    },
    _doProcessBlock: function (q, n) {
      for (var a = 0; 16 > a; a++) {
        var c = n + a, e = q[c];
        q[c] = (e << 8 | e >>> 24) & 16711935 | (e << 24 | e >>> 8) & 4278255360
      }
      var a = this._hash.words, c = q[n + 0], e = q[n + 1], j = q[n + 2], k = q[n + 3], z = q[n + 4], r = q[n + 5], t = q[n + 6], w = q[n + 7], v = q[n + 8], A = q[n + 9], B = q[n + 10], C = q[n + 11], u = q[n + 12], D = q[n + 13], E = q[n + 14], x = q[n + 15], f = a[0], m = a[1], g = a[2], h = a[3], f = p(f, m, g, h, c, 7, b[0]), h = p(h, f, m, g, e, 12, b[1]), g = p(g, h, f, m, j, 17, b[2]), m = p(m, g, h, f, k, 22, b[3]), f = p(f, m, g, h, z, 7, b[4]), h = p(h, f, m, g, r, 12, b[5]), g = p(g, h, f, m, t, 17, b[6]), m = p(m, g, h, f, w, 22, b[7]),
        f = p(f, m, g, h, v, 7, b[8]), h = p(h, f, m, g, A, 12, b[9]), g = p(g, h, f, m, B, 17, b[10]), m = p(m, g, h, f, C, 22, b[11]), f = p(f, m, g, h, u, 7, b[12]), h = p(h, f, m, g, D, 12, b[13]), g = p(g, h, f, m, E, 17, b[14]), m = p(m, g, h, f, x, 22, b[15]), f = d(f, m, g, h, e, 5, b[16]), h = d(h, f, m, g, t, 9, b[17]), g = d(g, h, f, m, C, 14, b[18]), m = d(m, g, h, f, c, 20, b[19]), f = d(f, m, g, h, r, 5, b[20]), h = d(h, f, m, g, B, 9, b[21]), g = d(g, h, f, m, x, 14, b[22]), m = d(m, g, h, f, z, 20, b[23]), f = d(f, m, g, h, A, 5, b[24]), h = d(h, f, m, g, E, 9, b[25]), g = d(g, h, f, m, k, 14, b[26]), m = d(m, g, h, f, v, 20, b[27]), f = d(f, m, g, h, D, 5, b[28]), h = d(h, f,
        m, g, j, 9, b[29]), g = d(g, h, f, m, w, 14, b[30]), m = d(m, g, h, f, u, 20, b[31]), f = l(f, m, g, h, r, 4, b[32]), h = l(h, f, m, g, v, 11, b[33]), g = l(g, h, f, m, C, 16, b[34]), m = l(m, g, h, f, E, 23, b[35]), f = l(f, m, g, h, e, 4, b[36]), h = l(h, f, m, g, z, 11, b[37]), g = l(g, h, f, m, w, 16, b[38]), m = l(m, g, h, f, B, 23, b[39]), f = l(f, m, g, h, D, 4, b[40]), h = l(h, f, m, g, c, 11, b[41]), g = l(g, h, f, m, k, 16, b[42]), m = l(m, g, h, f, t, 23, b[43]), f = l(f, m, g, h, A, 4, b[44]), h = l(h, f, m, g, u, 11, b[45]), g = l(g, h, f, m, x, 16, b[46]), m = l(m, g, h, f, j, 23, b[47]), f = s(f, m, g, h, c, 6, b[48]), h = s(h, f, m, g, w, 10, b[49]), g = s(g, h, f, m,
        E, 15, b[50]), m = s(m, g, h, f, r, 21, b[51]), f = s(f, m, g, h, u, 6, b[52]), h = s(h, f, m, g, k, 10, b[53]), g = s(g, h, f, m, B, 15, b[54]), m = s(m, g, h, f, e, 21, b[55]), f = s(f, m, g, h, v, 6, b[56]), h = s(h, f, m, g, x, 10, b[57]), g = s(g, h, f, m, t, 15, b[58]), m = s(m, g, h, f, D, 21, b[59]), f = s(f, m, g, h, z, 6, b[60]), h = s(h, f, m, g, C, 10, b[61]), g = s(g, h, f, m, j, 15, b[62]), m = s(m, g, h, f, A, 21, b[63]);
      a[0] = a[0] + f | 0;
      a[1] = a[1] + m | 0;
      a[2] = a[2] + g | 0;
      a[3] = a[3] + h | 0
    }, _doFinalize: function () {
      var b = this._data, n = b.words, a = 8 * this._nDataBytes, c = 8 * b.sigBytes;
      n[c >>> 5] |= 128 << 24 - c % 32;
      var e = u.floor(a /
        4294967296);
      n[(c + 64 >>> 9 << 4) + 15] = (e << 8 | e >>> 24) & 16711935 | (e << 24 | e >>> 8) & 4278255360;
      n[(c + 64 >>> 9 << 4) + 14] = (a << 8 | a >>> 24) & 16711935 | (a << 24 | a >>> 8) & 4278255360;
      b.sigBytes = 4 * (n.length + 1);
      this._process();
      b = this._hash;
      n = b.words;
      for (a = 0; 4 > a; a++)c = n[a], n[a] = (c << 8 | c >>> 24) & 16711935 | (c << 24 | c >>> 8) & 4278255360;
      return b
    }, clone: function () {
      var b = v.clone.call(this);
      b._hash = this._hash.clone();
      return b
    }
  });
  t.MD5 = v._createHelper(r);
  t.HmacMD5 = v._createHmacHelper(r)
})(Math);
(function () {
  var u = CryptoJS, p = u.lib, d = p.Base, l = p.WordArray, p = u.algo, s = p.EvpKDF = d.extend({
    cfg: d.extend({
      keySize: 4,
      hasher: p.MD5,
      iterations: 1
    }), init: function (d) {
      this.cfg = this.cfg.extend(d)
    }, compute: function (d, r) {
      for (var p = this.cfg, s = p.hasher.create(), b = l.create(), u = b.words, q = p.keySize, p = p.iterations; u.length < q;) {
        n && s.update(n);
        var n = s.update(d).finalize(r);
        s.reset();
        for (var a = 1; a < p; a++)n = s.finalize(n), s.reset();
        b.concat(n)
      }
      b.sigBytes = 4 * q;
      return b
    }
  });
  u.EvpKDF = function (d, l, p) {
    return s.create(p).compute(d,
      l)
  }
})();
CryptoJS.lib.Cipher || function (u) {
  var p = CryptoJS, d = p.lib, l = d.Base, s = d.WordArray, t = d.BufferedBlockAlgorithm, r = p.enc.Base64, w = p.algo.EvpKDF, v = d.Cipher = t.extend({
    cfg: l.extend(), createEncryptor: function (e, a) {
      return this.create(this._ENC_XFORM_MODE, e, a)
    }, createDecryptor: function (e, a) {
      return this.create(this._DEC_XFORM_MODE, e, a)
    }, init: function (e, a, b) {
      this.cfg = this.cfg.extend(b);
      this._xformMode = e;
      this._key = a;
      this.reset()
    }, reset: function () {
      t.reset.call(this);
      this._doReset()
    }, process: function (e) {
      this._append(e);
      return this._process()
    },
    finalize: function (e) {
      e && this._append(e);
      return this._doFinalize()
    }, keySize: 4, ivSize: 4, _ENC_XFORM_MODE: 1, _DEC_XFORM_MODE: 2, _createHelper: function (e) {
      return {
        encrypt: function (b, k, d) {
          return ("string" == typeof k ? c : a).encrypt(e, b, k, d)
        }, decrypt: function (b, k, d) {
          return ("string" == typeof k ? c : a).decrypt(e, b, k, d)
        }
      }
    }
  });
  d.StreamCipher = v.extend({
    _doFinalize: function () {
      return this._process(!0)
    }, blockSize: 1
  });
  var b = p.mode = {}, x = function (e, a, b) {
    var c = this._iv;
    c ? this._iv = u : c = this._prevBlock;
    for (var d = 0; d < b; d++)e[a + d] ^=
      c[d]
  }, q = (d.BlockCipherMode = l.extend({
    createEncryptor: function (e, a) {
      return this.Encryptor.create(e, a)
    }, createDecryptor: function (e, a) {
      return this.Decryptor.create(e, a)
    }, init: function (e, a) {
      this._cipher = e;
      this._iv = a
    }
  })).extend();
  q.Encryptor = q.extend({
    processBlock: function (e, a) {
      var b = this._cipher, c = b.blockSize;
      x.call(this, e, a, c);
      b.encryptBlock(e, a);
      this._prevBlock = e.slice(a, a + c)
    }
  });
  q.Decryptor = q.extend({
    processBlock: function (e, a) {
      var b = this._cipher, c = b.blockSize, d = e.slice(a, a + c);
      b.decryptBlock(e, a);
      x.call(this,
        e, a, c);
      this._prevBlock = d
    }
  });
  b = b.CBC = q;
  q = (p.pad = {}).Pkcs7 = {
    pad: function (a, b) {
      for (var c = 4 * b, c = c - a.sigBytes % c, d = c << 24 | c << 16 | c << 8 | c, l = [], n = 0; n < c; n += 4)l.push(d);
      c = s.create(l, c);
      a.concat(c)
    }, unpad: function (a) {
      a.sigBytes -= a.words[a.sigBytes - 1 >>> 2] & 255
    }
  };
  d.BlockCipher = v.extend({
    cfg: v.cfg.extend({mode: b, padding: q}), reset: function () {
      v.reset.call(this);
      var a = this.cfg, b = a.iv, a = a.mode;
      if (this._xformMode == this._ENC_XFORM_MODE)var c = a.createEncryptor; else c = a.createDecryptor, this._minBufferSize = 1;
      this._mode = c.call(a,
        this, b && b.words)
    }, _doProcessBlock: function (a, b) {
      this._mode.processBlock(a, b)
    }, _doFinalize: function () {
      var a = this.cfg.padding;
      if (this._xformMode == this._ENC_XFORM_MODE) {
        a.pad(this._data, this.blockSize);
        var b = this._process(!0)
      } else b = this._process(!0), a.unpad(b);
      return b
    }, blockSize: 4
  });
  var n = d.CipherParams = l.extend({
    init: function (a) {
      this.mixIn(a)
    }, toString: function (a) {
      return (a || this.formatter).stringify(this)
    }
  }), b = (p.format = {}).OpenSSL = {
    stringify: function (a) {
      var b = a.ciphertext;
      a = a.salt;
      return (a ? s.create([1398893684,
        1701076831]).concat(a).concat(b) : b).toString(r)
    }, parse: function (a) {
      a = r.parse(a);
      var b = a.words;
      if (1398893684 == b[0] && 1701076831 == b[1]) {
        var c = s.create(b.slice(2, 4));
        b.splice(0, 4);
        a.sigBytes -= 16
      }
      return n.create({ciphertext: a, salt: c})
    }
  }, a = d.SerializableCipher = l.extend({
    cfg: l.extend({format: b}), encrypt: function (a, b, c, d) {
      d = this.cfg.extend(d);
      var l = a.createEncryptor(c, d);
      b = l.finalize(b);
      l = l.cfg;
      return n.create({
        ciphertext: b,
        key: c,
        iv: l.iv,
        algorithm: a,
        mode: l.mode,
        padding: l.padding,
        blockSize: a.blockSize,
        formatter: d.format
      })
    },
    decrypt: function (a, b, c, d) {
      d = this.cfg.extend(d);
      b = this._parse(b, d.format);
      return a.createDecryptor(c, d).finalize(b.ciphertext)
    }, _parse: function (a, b) {
      return "string" == typeof a ? b.parse(a, this) : a
    }
  }), p = (p.kdf = {}).OpenSSL = {
    execute: function (a, b, c, d) {
      d || (d = s.random(8));
      a = w.create({keySize: b + c}).compute(a, d);
      c = s.create(a.words.slice(b), 4 * c);
      a.sigBytes = 4 * b;
      return n.create({key: a, iv: c, salt: d})
    }
  }, c = d.PasswordBasedCipher = a.extend({
    cfg: a.cfg.extend({kdf: p}), encrypt: function (b, c, d, l) {
      l = this.cfg.extend(l);
      d = l.kdf.execute(d,
        b.keySize, b.ivSize);
      l.iv = d.iv;
      b = a.encrypt.call(this, b, c, d.key, l);
      b.mixIn(d);
      return b
    }, decrypt: function (b, c, d, l) {
      l = this.cfg.extend(l);
      c = this._parse(c, l.format);
      d = l.kdf.execute(d, b.keySize, b.ivSize, c.salt);
      l.iv = d.iv;
      return a.decrypt.call(this, b, c, d.key, l)
    }
  })
}();
(function () {
  for (var u = CryptoJS, p = u.lib.BlockCipher, d = u.algo, l = [], s = [], t = [], r = [], w = [], v = [], b = [], x = [], q = [], n = [], a = [], c = 0; 256 > c; c++)a[c] = 128 > c ? c << 1 : c << 1 ^ 283;
  for (var e = 0, j = 0, c = 0; 256 > c; c++) {
    var k = j ^ j << 1 ^ j << 2 ^ j << 3 ^ j << 4, k = k >>> 8 ^ k & 255 ^ 99;
    l[e] = k;
    s[k] = e;
    var z = a[e], F = a[z], G = a[F], y = 257 * a[k] ^ 16843008 * k;
    t[e] = y << 24 | y >>> 8;
    r[e] = y << 16 | y >>> 16;
    w[e] = y << 8 | y >>> 24;
    v[e] = y;
    y = 16843009 * G ^ 65537 * F ^ 257 * z ^ 16843008 * e;
    b[k] = y << 24 | y >>> 8;
    x[k] = y << 16 | y >>> 16;
    q[k] = y << 8 | y >>> 24;
    n[k] = y;
    e ? (e = z ^ a[a[a[G ^ z]]], j ^= a[a[j]]) : e = j = 1
  }
  var H = [0, 1, 2, 4, 8,
    16, 32, 64, 128, 27, 54], d = d.AES = p.extend({
    _doReset: function () {
      for (var a = this._key, c = a.words, d = a.sigBytes / 4, a = 4 * ((this._nRounds = d + 6) + 1), e = this._keySchedule = [], j = 0; j < a; j++)if (j < d) e[j] = c[j]; else {
        var k = e[j - 1];
        j % d ? 6 < d && 4 == j % d && (k = l[k >>> 24] << 24 | l[k >>> 16 & 255] << 16 | l[k >>> 8 & 255] << 8 | l[k & 255]) : (k = k << 8 | k >>> 24, k = l[k >>> 24] << 24 | l[k >>> 16 & 255] << 16 | l[k >>> 8 & 255] << 8 | l[k & 255], k ^= H[j / d | 0] << 24);
        e[j] = e[j - d] ^ k
      }
      c = this._invKeySchedule = [];
      for (d = 0; d < a; d++)j = a - d, k = d % 4 ? e[j] : e[j - 4], c[d] = 4 > d || 4 >= j ? k : b[l[k >>> 24]] ^ x[l[k >>> 16 & 255]] ^ q[l[k >>>
      8 & 255]] ^ n[l[k & 255]]
    }, encryptBlock: function (a, b) {
      this._doCryptBlock(a, b, this._keySchedule, t, r, w, v, l)
    }, decryptBlock: function (a, c) {
      var d = a[c + 1];
      a[c + 1] = a[c + 3];
      a[c + 3] = d;
      this._doCryptBlock(a, c, this._invKeySchedule, b, x, q, n, s);
      d = a[c + 1];
      a[c + 1] = a[c + 3];
      a[c + 3] = d
    }, _doCryptBlock: function (a, b, c, d, e, j, l, f) {
      for (var m = this._nRounds, g = a[b] ^ c[0], h = a[b + 1] ^ c[1], k = a[b + 2] ^ c[2], n = a[b + 3] ^ c[3], p = 4, r = 1; r < m; r++)var q = d[g >>> 24] ^ e[h >>> 16 & 255] ^ j[k >>> 8 & 255] ^ l[n & 255] ^ c[p++], s = d[h >>> 24] ^ e[k >>> 16 & 255] ^ j[n >>> 8 & 255] ^ l[g & 255] ^ c[p++], t =
        d[k >>> 24] ^ e[n >>> 16 & 255] ^ j[g >>> 8 & 255] ^ l[h & 255] ^ c[p++], n = d[n >>> 24] ^ e[g >>> 16 & 255] ^ j[h >>> 8 & 255] ^ l[k & 255] ^ c[p++], g = q, h = s, k = t;
      q = (f[g >>> 24] << 24 | f[h >>> 16 & 255] << 16 | f[k >>> 8 & 255] << 8 | f[n & 255]) ^ c[p++];
      s = (f[h >>> 24] << 24 | f[k >>> 16 & 255] << 16 | f[n >>> 8 & 255] << 8 | f[g & 255]) ^ c[p++];
      t = (f[k >>> 24] << 24 | f[n >>> 16 & 255] << 16 | f[g >>> 8 & 255] << 8 | f[h & 255]) ^ c[p++];
      n = (f[n >>> 24] << 24 | f[g >>> 16 & 255] << 16 | f[h >>> 8 & 255] << 8 | f[k & 255]) ^ c[p++];
      a[b] = q;
      a[b + 1] = s;
      a[b + 2] = t;
      a[b + 3] = n
    }, keySize: 8
  });
  u.AES = p._createHelper(d)
})();

aes_2.js

/*
CryptoJS v3.1.2
code.google.com/p/crypto-js
(c) 2009-2013 by Jeff Mott. All rights reserved.
code.google.com/p/crypto-js/wiki/License
*/
var CryptoJS=CryptoJS||function(u,p){var d={},l=d.lib={},s=function(){},t=l.Base={extend:function(a){s.prototype=this;var c=new s;a&&c.mixIn(a);c.hasOwnProperty("init")||(c.init=function(){c.$super.init.apply(this,arguments)});c.init.prototype=c;c.$super=this;return c},create:function(){var a=this.extend();a.init.apply(a,arguments);return a},init:function(){},mixIn:function(a){for(var c in a)a.hasOwnProperty(c)&&(this[c]=a[c]);a.hasOwnProperty("toString")&&(this.toString=a.toString)},clone:function(){return this.init.prototype.extend(this)}},
r=l.WordArray=t.extend({init:function(a,c){a=this.words=a||[];this.sigBytes=c!=p?c:4*a.length},toString:function(a){return(a||v).stringify(this)},concat:function(a){var c=this.words,e=a.words,j=this.sigBytes;a=a.sigBytes;this.clamp();if(j%4)for(var k=0;k<a;k++)c[j+k>>>2]|=(e[k>>>2]>>>24-8*(k%4)&255)<<24-8*((j+k)%4);else if(65535<e.length)for(k=0;k<a;k+=4)c[j+k>>>2]=e[k>>>2];else c.push.apply(c,e);this.sigBytes+=a;return this},clamp:function(){var a=this.words,c=this.sigBytes;a[c>>>2]&=4294967295<<
32-8*(c%4);a.length=u.ceil(c/4)},clone:function(){var a=t.clone.call(this);a.words=this.words.slice(0);return a},random:function(a){for(var c=[],e=0;e<a;e+=4)c.push(4294967296*u.random()|0);return new r.init(c,a)}}),w=d.enc={},v=w.Hex={stringify:function(a){var c=a.words;a=a.sigBytes;for(var e=[],j=0;j<a;j++){var k=c[j>>>2]>>>24-8*(j%4)&255;e.push((k>>>4).toString(16));e.push((k&15).toString(16))}return e.join("")},parse:function(a){for(var c=a.length,e=[],j=0;j<c;j+=2)e[j>>>3]|=parseInt(a.substr(j,
2),16)<<24-4*(j%8);return new r.init(e,c/2)}},b=w.Latin1={stringify:function(a){var c=a.words;a=a.sigBytes;for(var e=[],j=0;j<a;j++)e.push(String.fromCharCode(c[j>>>2]>>>24-8*(j%4)&255));return e.join("")},parse:function(a){for(var c=a.length,e=[],j=0;j<c;j++)e[j>>>2]|=(a.charCodeAt(j)&255)<<24-8*(j%4);return new r.init(e,c)}},x=w.Utf8={stringify:function(a){try{return decodeURIComponent(escape(b.stringify(a)))}catch(c){throw Error("Malformed UTF-8 data");}},parse:function(a){return b.parse(unescape(encodeURIComponent(a)))}},
q=l.BufferedBlockAlgorithm=t.extend({reset:function(){this._data=new r.init;this._nDataBytes=0},_append:function(a){"string"==typeof a&&(a=x.parse(a));this._data.concat(a);this._nDataBytes+=a.sigBytes},_process:function(a){var c=this._data,e=c.words,j=c.sigBytes,k=this.blockSize,b=j/(4*k),b=a?u.ceil(b):u.max((b|0)-this._minBufferSize,0);a=b*k;j=u.min(4*a,j);if(a){for(var q=0;q<a;q+=k)this._doProcessBlock(e,q);q=e.splice(0,a);c.sigBytes-=j}return new r.init(q,j)},clone:function(){var a=t.clone.call(this);
a._data=this._data.clone();return a},_minBufferSize:0});l.Hasher=q.extend({cfg:t.extend(),init:function(a){this.cfg=this.cfg.extend(a);this.reset()},reset:function(){q.reset.call(this);this._doReset()},update:function(a){this._append(a);this._process();return this},finalize:function(a){a&&this._append(a);return this._doFinalize()},blockSize:16,_createHelper:function(a){return function(b,e){return(new a.init(e)).finalize(b)}},_createHmacHelper:function(a){return function(b,e){return(new n.HMAC.init(a,
e)).finalize(b)}}});var n=d.algo={};return d}(Math);
(function(){var u=CryptoJS,p=u.lib.WordArray;u.enc.Base64={stringify:function(d){var l=d.words,p=d.sigBytes,t=this._map;d.clamp();d=[];for(var r=0;r<p;r+=3)for(var w=(l[r>>>2]>>>24-8*(r%4)&255)<<16|(l[r+1>>>2]>>>24-8*((r+1)%4)&255)<<8|l[r+2>>>2]>>>24-8*((r+2)%4)&255,v=0;4>v&&r+0.75*v<p;v++)d.push(t.charAt(w>>>6*(3-v)&63));if(l=t.charAt(64))for(;d.length%4;)d.push(l);return d.join("")},parse:function(d){var l=d.length,s=this._map,t=s.charAt(64);t&&(t=d.indexOf(t),-1!=t&&(l=t));for(var t=[],r=0,w=0;w<
l;w++)if(w%4){var v=s.indexOf(d.charAt(w-1))<<2*(w%4),b=s.indexOf(d.charAt(w))>>>6-2*(w%4);t[r>>>2]|=(v|b)<<24-8*(r%4);r++}return p.create(t,r)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="}})();
(function(u){function p(b,n,a,c,e,j,k){b=b+(n&a|~n&c)+e+k;return(b<<j|b>>>32-j)+n}function d(b,n,a,c,e,j,k){b=b+(n&c|a&~c)+e+k;return(b<<j|b>>>32-j)+n}function l(b,n,a,c,e,j,k){b=b+(n^a^c)+e+k;return(b<<j|b>>>32-j)+n}function s(b,n,a,c,e,j,k){b=b+(a^(n|~c))+e+k;return(b<<j|b>>>32-j)+n}for(var t=CryptoJS,r=t.lib,w=r.WordArray,v=r.Hasher,r=t.algo,b=[],x=0;64>x;x++)b[x]=4294967296*u.abs(u.sin(x+1))|0;r=r.MD5=v.extend({_doReset:function(){this._hash=new w.init([1732584193,4023233417,2562383102,271733878])},
_doProcessBlock:function(q,n){for(var a=0;16>a;a++){var c=n+a,e=q[c];q[c]=(e<<8|e>>>24)&16711935|(e<<24|e>>>8)&4278255360}var a=this._hash.words,c=q[n+0],e=q[n+1],j=q[n+2],k=q[n+3],z=q[n+4],r=q[n+5],t=q[n+6],w=q[n+7],v=q[n+8],A=q[n+9],B=q[n+10],C=q[n+11],u=q[n+12],D=q[n+13],E=q[n+14],x=q[n+15],f=a[0],m=a[1],g=a[2],h=a[3],f=p(f,m,g,h,c,7,b[0]),h=p(h,f,m,g,e,12,b[1]),g=p(g,h,f,m,j,17,b[2]),m=p(m,g,h,f,k,22,b[3]),f=p(f,m,g,h,z,7,b[4]),h=p(h,f,m,g,r,12,b[5]),g=p(g,h,f,m,t,17,b[6]),m=p(m,g,h,f,w,22,b[7]),
f=p(f,m,g,h,v,7,b[8]),h=p(h,f,m,g,A,12,b[9]),g=p(g,h,f,m,B,17,b[10]),m=p(m,g,h,f,C,22,b[11]),f=p(f,m,g,h,u,7,b[12]),h=p(h,f,m,g,D,12,b[13]),g=p(g,h,f,m,E,17,b[14]),m=p(m,g,h,f,x,22,b[15]),f=d(f,m,g,h,e,5,b[16]),h=d(h,f,m,g,t,9,b[17]),g=d(g,h,f,m,C,14,b[18]),m=d(m,g,h,f,c,20,b[19]),f=d(f,m,g,h,r,5,b[20]),h=d(h,f,m,g,B,9,b[21]),g=d(g,h,f,m,x,14,b[22]),m=d(m,g,h,f,z,20,b[23]),f=d(f,m,g,h,A,5,b[24]),h=d(h,f,m,g,E,9,b[25]),g=d(g,h,f,m,k,14,b[26]),m=d(m,g,h,f,v,20,b[27]),f=d(f,m,g,h,D,5,b[28]),h=d(h,f,
m,g,j,9,b[29]),g=d(g,h,f,m,w,14,b[30]),m=d(m,g,h,f,u,20,b[31]),f=l(f,m,g,h,r,4,b[32]),h=l(h,f,m,g,v,11,b[33]),g=l(g,h,f,m,C,16,b[34]),m=l(m,g,h,f,E,23,b[35]),f=l(f,m,g,h,e,4,b[36]),h=l(h,f,m,g,z,11,b[37]),g=l(g,h,f,m,w,16,b[38]),m=l(m,g,h,f,B,23,b[39]),f=l(f,m,g,h,D,4,b[40]),h=l(h,f,m,g,c,11,b[41]),g=l(g,h,f,m,k,16,b[42]),m=l(m,g,h,f,t,23,b[43]),f=l(f,m,g,h,A,4,b[44]),h=l(h,f,m,g,u,11,b[45]),g=l(g,h,f,m,x,16,b[46]),m=l(m,g,h,f,j,23,b[47]),f=s(f,m,g,h,c,6,b[48]),h=s(h,f,m,g,w,10,b[49]),g=s(g,h,f,m,
E,15,b[50]),m=s(m,g,h,f,r,21,b[51]),f=s(f,m,g,h,u,6,b[52]),h=s(h,f,m,g,k,10,b[53]),g=s(g,h,f,m,B,15,b[54]),m=s(m,g,h,f,e,21,b[55]),f=s(f,m,g,h,v,6,b[56]),h=s(h,f,m,g,x,10,b[57]),g=s(g,h,f,m,t,15,b[58]),m=s(m,g,h,f,D,21,b[59]),f=s(f,m,g,h,z,6,b[60]),h=s(h,f,m,g,C,10,b[61]),g=s(g,h,f,m,j,15,b[62]),m=s(m,g,h,f,A,21,b[63]);a[0]=a[0]+f|0;a[1]=a[1]+m|0;a[2]=a[2]+g|0;a[3]=a[3]+h|0},_doFinalize:function(){var b=this._data,n=b.words,a=8*this._nDataBytes,c=8*b.sigBytes;n[c>>>5]|=128<<24-c%32;var e=u.floor(a/
4294967296);n[(c+64>>>9<<4)+15]=(e<<8|e>>>24)&16711935|(e<<24|e>>>8)&4278255360;n[(c+64>>>9<<4)+14]=(a<<8|a>>>24)&16711935|(a<<24|a>>>8)&4278255360;b.sigBytes=4*(n.length+1);this._process();b=this._hash;n=b.words;for(a=0;4>a;a++)c=n[a],n[a]=(c<<8|c>>>24)&16711935|(c<<24|c>>>8)&4278255360;return b},clone:function(){var b=v.clone.call(this);b._hash=this._hash.clone();return b}});t.MD5=v._createHelper(r);t.HmacMD5=v._createHmacHelper(r)})(Math);
(function(){var u=CryptoJS,p=u.lib,d=p.Base,l=p.WordArray,p=u.algo,s=p.EvpKDF=d.extend({cfg:d.extend({keySize:4,hasher:p.MD5,iterations:1}),init:function(d){this.cfg=this.cfg.extend(d)},compute:function(d,r){for(var p=this.cfg,s=p.hasher.create(),b=l.create(),u=b.words,q=p.keySize,p=p.iterations;u.length<q;){n&&s.update(n);var n=s.update(d).finalize(r);s.reset();for(var a=1;a<p;a++)n=s.finalize(n),s.reset();b.concat(n)}b.sigBytes=4*q;return b}});u.EvpKDF=function(d,l,p){return s.create(p).compute(d,
l)}})();
CryptoJS.lib.Cipher||function(u){var p=CryptoJS,d=p.lib,l=d.Base,s=d.WordArray,t=d.BufferedBlockAlgorithm,r=p.enc.Base64,w=p.algo.EvpKDF,v=d.Cipher=t.extend({cfg:l.extend(),createEncryptor:function(e,a){return this.create(this._ENC_XFORM_MODE,e,a)},createDecryptor:function(e,a){return this.create(this._DEC_XFORM_MODE,e,a)},init:function(e,a,b){this.cfg=this.cfg.extend(b);this._xformMode=e;this._key=a;this.reset()},reset:function(){t.reset.call(this);this._doReset()},process:function(e){this._append(e);return this._process()},
finalize:function(e){e&&this._append(e);return this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(e){return{encrypt:function(b,k,d){return("string"==typeof k?c:a).encrypt(e,b,k,d)},decrypt:function(b,k,d){return("string"==typeof k?c:a).decrypt(e,b,k,d)}}}});d.StreamCipher=v.extend({_doFinalize:function(){return this._process(!0)},blockSize:1});var b=p.mode={},x=function(e,a,b){var c=this._iv;c?this._iv=u:c=this._prevBlock;for(var d=0;d<b;d++)e[a+d]^=
c[d]},q=(d.BlockCipherMode=l.extend({createEncryptor:function(e,a){return this.Encryptor.create(e,a)},createDecryptor:function(e,a){return this.Decryptor.create(e,a)},init:function(e,a){this._cipher=e;this._iv=a}})).extend();q.Encryptor=q.extend({processBlock:function(e,a){var b=this._cipher,c=b.blockSize;x.call(this,e,a,c);b.encryptBlock(e,a);this._prevBlock=e.slice(a,a+c)}});q.Decryptor=q.extend({processBlock:function(e,a){var b=this._cipher,c=b.blockSize,d=e.slice(a,a+c);b.decryptBlock(e,a);x.call(this,
e,a,c);this._prevBlock=d}});b=b.CBC=q;q=(p.pad={}).Pkcs7={pad:function(a,b){for(var c=4*b,c=c-a.sigBytes%c,d=c<<24|c<<16|c<<8|c,l=[],n=0;n<c;n+=4)l.push(d);c=s.create(l,c);a.concat(c)},unpad:function(a){a.sigBytes-=a.words[a.sigBytes-1>>>2]&255}};d.BlockCipher=v.extend({cfg:v.cfg.extend({mode:b,padding:q}),reset:function(){v.reset.call(this);var a=this.cfg,b=a.iv,a=a.mode;if(this._xformMode==this._ENC_XFORM_MODE)var c=a.createEncryptor;else c=a.createDecryptor,this._minBufferSize=1;this._mode=c.call(a,
this,b&&b.words)},_doProcessBlock:function(a,b){this._mode.processBlock(a,b)},_doFinalize:function(){var a=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){a.pad(this._data,this.blockSize);var b=this._process(!0)}else b=this._process(!0),a.unpad(b);return b},blockSize:4});var n=d.CipherParams=l.extend({init:function(a){this.mixIn(a)},toString:function(a){return(a||this.formatter).stringify(this)}}),b=(p.format={}).OpenSSL={stringify:function(a){var b=a.ciphertext;a=a.salt;return(a?s.create([1398893684,
1701076831]).concat(a).concat(b):b).toString(r)},parse:function(a){a=r.parse(a);var b=a.words;if(1398893684==b[0]&&1701076831==b[1]){var c=s.create(b.slice(2,4));b.splice(0,4);a.sigBytes-=16}return n.create({ciphertext:a,salt:c})}},a=d.SerializableCipher=l.extend({cfg:l.extend({format:b}),encrypt:function(a,b,c,d){d=this.cfg.extend(d);var l=a.createEncryptor(c,d);b=l.finalize(b);l=l.cfg;return n.create({ciphertext:b,key:c,iv:l.iv,algorithm:a,mode:l.mode,padding:l.padding,blockSize:a.blockSize,formatter:d.format})},
decrypt:function(a,b,c,d){d=this.cfg.extend(d);b=this._parse(b,d.format);return a.createDecryptor(c,d).finalize(b.ciphertext)},_parse:function(a,b){return"string"==typeof a?b.parse(a,this):a}}),p=(p.kdf={}).OpenSSL={execute:function(a,b,c,d){d||(d=s.random(8));a=w.create({keySize:b+c}).compute(a,d);c=s.create(a.words.slice(b),4*c);a.sigBytes=4*b;return n.create({key:a,iv:c,salt:d})}},c=d.PasswordBasedCipher=a.extend({cfg:a.cfg.extend({kdf:p}),encrypt:function(b,c,d,l){l=this.cfg.extend(l);d=l.kdf.execute(d,
b.keySize,b.ivSize);l.iv=d.iv;b=a.encrypt.call(this,b,c,d.key,l);b.mixIn(d);return b},decrypt:function(b,c,d,l){l=this.cfg.extend(l);c=this._parse(c,l.format);d=l.kdf.execute(d,b.keySize,b.ivSize,c.salt);l.iv=d.iv;return a.decrypt.call(this,b,c,d.key,l)}})}();
(function(){for(var u=CryptoJS,p=u.lib.BlockCipher,d=u.algo,l=[],s=[],t=[],r=[],w=[],v=[],b=[],x=[],q=[],n=[],a=[],c=0;256>c;c++)a[c]=128>c?c<<1:c<<1^283;for(var e=0,j=0,c=0;256>c;c++){var k=j^j<<1^j<<2^j<<3^j<<4,k=k>>>8^k&255^99;l[e]=k;s[k]=e;var z=a[e],F=a[z],G=a[F],y=257*a[k]^16843008*k;t[e]=y<<24|y>>>8;r[e]=y<<16|y>>>16;w[e]=y<<8|y>>>24;v[e]=y;y=16843009*G^65537*F^257*z^16843008*e;b[k]=y<<24|y>>>8;x[k]=y<<16|y>>>16;q[k]=y<<8|y>>>24;n[k]=y;e?(e=z^a[a[a[G^z]]],j^=a[a[j]]):e=j=1}var H=[0,1,2,4,8,
16,32,64,128,27,54],d=d.AES=p.extend({_doReset:function(){for(var a=this._key,c=a.words,d=a.sigBytes/4,a=4*((this._nRounds=d+6)+1),e=this._keySchedule=[],j=0;j<a;j++)if(j<d)e[j]=c[j];else{var k=e[j-1];j%d?6<d&&4==j%d&&(k=l[k>>>24]<<24|l[k>>>16&255]<<16|l[k>>>8&255]<<8|l[k&255]):(k=k<<8|k>>>24,k=l[k>>>24]<<24|l[k>>>16&255]<<16|l[k>>>8&255]<<8|l[k&255],k^=H[j/d|0]<<24);e[j]=e[j-d]^k}c=this._invKeySchedule=[];for(d=0;d<a;d++)j=a-d,k=d%4?e[j]:e[j-4],c[d]=4>d||4>=j?k:b[l[k>>>24]]^x[l[k>>>16&255]]^q[l[k>>>
8&255]]^n[l[k&255]]},encryptBlock:function(a,b){this._doCryptBlock(a,b,this._keySchedule,t,r,w,v,l)},decryptBlock:function(a,c){var d=a[c+1];a[c+1]=a[c+3];a[c+3]=d;this._doCryptBlock(a,c,this._invKeySchedule,b,x,q,n,s);d=a[c+1];a[c+1]=a[c+3];a[c+3]=d},_doCryptBlock:function(a,b,c,d,e,j,l,f){for(var m=this._nRounds,g=a[b]^c[0],h=a[b+1]^c[1],k=a[b+2]^c[2],n=a[b+3]^c[3],p=4,r=1;r<m;r++)var q=d[g>>>24]^e[h>>>16&255]^j[k>>>8&255]^l[n&255]^c[p++],s=d[h>>>24]^e[k>>>16&255]^j[n>>>8&255]^l[g&255]^c[p++],t=
d[k>>>24]^e[n>>>16&255]^j[g>>>8&255]^l[h&255]^c[p++],n=d[n>>>24]^e[g>>>16&255]^j[h>>>8&255]^l[k&255]^c[p++],g=q,h=s,k=t;q=(f[g>>>24]<<24|f[h>>>16&255]<<16|f[k>>>8&255]<<8|f[n&255])^c[p++];s=(f[h>>>24]<<24|f[k>>>16&255]<<16|f[n>>>8&255]<<8|f[g&255])^c[p++];t=(f[k>>>24]<<24|f[n>>>16&255]<<16|f[g>>>8&255]<<8|f[h&255])^c[p++];n=(f[n>>>24]<<24|f[g>>>16&255]<<16|f[h>>>8&255]<<8|f[k&255])^c[p++];a[b]=q;a[b+1]=s;a[b+2]=t;a[b+3]=n},keySize:8});u.AES=p._createHelper(d)})();

aes.js

/**
 * Created by LF on 2017/11/2.
 */
var key = CryptoJS.enc.Utf8.parse("68be1b582a460500");
var iv  = CryptoJS.enc.Utf8.parse('0000000000000000');
function Encrypt(word){
  srcs = CryptoJS.enc.Utf8.parse(word);
  var encrypted = CryptoJS.AES.encrypt(srcs, key, { iv: iv,mode:CryptoJS.mode.CBC,padding: CryptoJS.pad.Pkcs7});
  return encrypted.toString();
}

function Decrypt(word){
  var encryptedHexStr = CryptoJS.enc.Base64.parse(word);
  var srcs = CryptoJS.enc.Base64.stringify(encryptedHexStr);
  var decrypt = CryptoJS.AES.decrypt(srcs, key, { iv: iv,mode:CryptoJS.mode.CBC,padding: CryptoJS.pad.Pkcs7});
  var decryptedStr = decrypt.toString(CryptoJS.enc.Utf8);
  return decryptedStr.toString();
}

发送方法

 // 往端口发送数据
  sendTcp(data){
    try {
      // let requestString = data+"\r\n";
      let requestString = Encrypt(data);//加密
      let requestBuffer = this.stringToArrayBuffer(requestString);
      (<any>chrome).sockets.tcp.send(this.socketID, requestBuffer, (result) =>{
        if (result.resultCode === 0) {

        } else {
          this.connect(data);
        }
      });
    }catch (e){

    }
  }
 // 数据转换
  stringToArrayBuffer(string) {

    let buffer = new ArrayBuffer(string.length+4);
    let bufView = new Uint8Array(buffer);
    let head = new ArrayBuffer(4);
    let headView = new Uint32Array(head);
    let headView1 = new Uint8Array(head);
    headView[0] = string.length;
    // console.log(string.length);
    // console.log(" "+headView1[3]+headView1[2]+headView1[1]+headView1[0]);
    bufView[0] = headView1[3];
    bufView[1] = headView1[2];
    bufView[2] = headView1[1];
    bufView[3] = headView1[0];
    for (let i = 0; i < string.length; i++) {
      bufView[i+4] = string.charCodeAt(i);
    }
    return buffer;
  }

用户的身份认证和主机列表的获取

发送的信息

    let newPass =  this.md5.hex_md5(this.md5.hex_md5(pass));
    let content = {
      Username:name,           用户名
      password:newPass,        密码是经过md5加密的
      helixType:'helixUI',     用于区分composer和UI
      act:'connect',
      userType:'UI'
    };
    this.hostname = 'h.halflink.cn';
    this.Service_Port = 18384;
    let str = JSON.stringify(content);
    this.connect(str);

登陆失败接受的信息

{"act":"helixUI","result":"-1"}

登陆成功接收的信息

{"host":[{"ip":"192.168.1.79","mac":"42:85:40:2d:8b:ce","host_name":"PolyhomeCAN","state":"1"},
         {"ip":"192.168.0.102","mac":"5e:01:4d:82:7a:55","host_name":"HelixMini","state":"1"}, 
         {"ip":"192.168.0.126","mac":"aa:22:a7:be:f1:2a","host_name":"HelixMini","state":"1"},
         {"ip":"192.168.0.122","mac":"1e:5d:20:ef:1f:07","host_name":"1222222","state":"1"},
         {"ip":"192.168.0.168","mac":"0a:80:64:63:35:c8","host_name":"HelixMini","state":"0"}],
   "result":"success","act":"helixUI","userId":44}
state参数分为0,1  0为没有在线的设备

远程主机的连接

发送的信息

let json = {
      "helixType":"helixUI",
      'act':'helixUIJoinGroup',
      'mac':mac,                  主机的mac地址  
      'deviceId':deviceID,         手机的唯一设备ID
      'userType':'UI'
    };
    var str = JSON.stringify(json);
    this.connect(str);

连接成功收到的信息

 {"result":"success","act":"helixUIJoinGroup"}

局域网内的主机连接

发送的信息

let json = {
      "act":"networkStatus",
      'userType':'UI'
    };
    this.hostname = ip;              连接主机IP
    this.Service_Port = 6779;        连接主机端口
    var str = JSON.stringify(json);
    this.connect(str);

登陆成功接受的信息

{"act":"networkStatus","result":"success"}

场景列表的获取

发送的信息

let json = {
      "act": "getScene",
      'ip':this.hostname,  连接的主机IP
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

请求成功接受到的信息

{"scenes":[{"id":"6fe786132e68a4748e000057","sceneName":"世界第四","roomid":"6fe871d15a9dc4e5cc0000b9","roomName":"主卧","pic":"scene_1530242517463.jpg"},
{"id":"6fe4df54603c4202a1000087","sceneName":"尽职尽责即使结局","roomid":"6fe871d15a9dc4e5cc0000b9","roomName":"主卧","pic":"MasterBedrooms.png"}],
"act":"getScene","result":"success"}

添加场景

发送的信息

let json = {
      "act":"appAddScene",
      "roomid":k,      roomID
      'sceneName':roomRename,      场景名称
      'roomName':name,      房间的中文名
      'roomname':eName,    房间的英文名
     'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"act":"addScene","result":"success"}

场景的触发

发送的信息

let json = {
      "act": "restoreScene",
      'id':roomId,
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

删除场景

发送的信息

let json = {
      "act":"sceneDelete",
      'id':id,    场景的ID
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"act":"restoreScene","result":"success"}

获取系统内所有的设备信息

发送的信息

let json = {
      "act":"getAllDrive",
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

获取的信息

{"projects":{"displayName":"插座驱动","deviceID":"6f060851a040c8ff290000b1","proxy":"relay","deviceName":"RELAY","driverSpace":"cn.halflink","driverName":"polyhome_socket","dirverIcon":0,"loveIcon":true,"status":false,"closedStatus":"true","variables":[{"id":0,"name":"RELAY","type":"BOOL","value":"ON","prompt":"设备一路"},{"id":1,"name":"DISPMSG","type":"STRING","value":"次卧的插座驱动1开了"}],"roomId":"6f061005a040c8ff29000096","proxyID":"0"},
{"displayName":"窗帘驱动","deviceID":"6f0607f6a040c8ff290000b3","proxy":"curtain_switch","deviceName":"STATE","driverSpace":"cn.halflink","driverName":"polyhome_curtain","dirverIcon":0,"loveIcon":false,"status":false,"closedStatus":"true","variables":[{"id":0,"name":"STATE","type":"EMNU","value":"OPEN","items":["OPEN","CLOSE","STOP"],"prompt":"设备一路"},{"id":1,"name":"DISPMSG","type":"STRING","value":"次卧的窗帘驱动1、开了"}],"roomId":"6f061005a040c8ff29000096","proxyID":"0"},
{"displayName":"窗帘驱动","deviceID":"6f0607f6a040c8ff290000b3","proxy":"curtain_switch","deviceName":"STATE","driverSpace":"cn.halflink","driverName":"polyhome_curtain","dirverIcon":0,"loveIcon":true,"status":false,"closedStatus":"true","variables":[{"id":0,"name":"STATE","type":"EMNU","value":"CLOSE","items":["OPEN","CLOSE","STOP"],"prompt":"设备二路"},{"id":1,"name":"DISPMSG","type":"STRING","value":"次卧的窗帘驱动2关了"}],"roomId":"6f061005a040c8ff29000096","proxyID":"1"},
{"displayName":"新风","deviceID":"6f053757a040c8ff29000166","proxy":"ventilation_show","deviceName":"SWITCH","driverSpace":"cn.halflink","driverName":"helix_ventilation_show","dirverIcon":0,"loveIcon":[],"status":false,"closedStatus":"true","variables":[{"id":0,"name":"SWITCH","type":"BOOL","value":"OFF"},{"id":1,"name":"TEMPERATURE","unit":"℃","type":"NUMBER","value":"24"},{"id":2,"name":"HUMIDITY","unit":"%","type":"NUMBER","value":"50"},{"id":3,"name":"PM2_5","unit":"ug/m3","type":"NUMBER","value":"0"},{"id":4,"name":"FANMODE","type":"EMNU","value":"OFF","items":["HIGH","MEDIUM","LOW","OFF"]},{"id":5,"name":"DISPMSG","type":"STRING","value":"次卧的新风关了"}],"roomId":"6f061005a040c8ff29000096","proxyID":-1}]

请求房间列表的信息

发送的信息

let json = {
      "act":"getNewRoomDrive",
      'hostname':this.hostname,        主机IP
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

[{"roomname":"次卧","roomName":"SecondBedroom","roomtype":"http://192.168.0.122:3000/images/SecondBedroom.png","drive":["weather","relay","curtain","ventilation","thermostat"],"deviceID":[{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/helix_weather/img/[email protected]","status":true,"nowDevice":"6f060d1ea040c8ff290000a4"},{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/polyhome_socket/img/[email protected]","status":true,"nowDevice":"6f060851a040c8ff290000b1"},{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/polyhome_curtain/img/[email protected]","status":true,"nowDevice":"6f0607f6a040c8ff290000b3"},{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/helix_ventilation_show/img/[email protected]","status":true,"nowDevice":"6f053757a040c8ff29000166"},{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/helix_thermostat_show/img/[email protected]","status":true,"nowDevice":"6f052fe4a040c8ff29000167"}],"driverSpace":["cn.halflink","cn.halflink","cn.halflink","cn.halflink","cn.halflink"],"driverName":["helix_weather","polyhome_socket","polyhome_curtain","helix_ventilation_show","helix_thermostat_show"],"dirverIcon":[0,0,0,0,0],"roomID":"6f061005a040c8ff29000096","status":true},
{"roomname":"主卧","roomName":"MasterBedroom","roomtype":"http://192.168.0.122:3000/images/MasterBedroom.png","drive":["music","light","television","relay"],"deviceID":[{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/helix_music_cloud/img/[email protected]","status":true,"nowDevice":"6fe6443f2e68a4748e0000d9"},{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/polyhome_switch_SL_x1/img/[email protected]","status":true,"nowDevice":"6fbe7e3b0340a8f6c90000b1"},{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/helix_television_le/img/[email protected]","status":true,"nowDevice":"6fbe56231b5055c30900006f"},{"picUrl":"http://192.168.0.122:3000/drivers/cn.halflink/helix_relay/img/[email protected]","status":true,"nowDevice":"6fb150f41b5055c30900052b"}],"driverSpace":["cn.halflink","cn.halflink","cn.halflink","cn.halflink"],"driverName":["helix_music_cloud","polyhome_switch_SL_x1","helix_television_le","helix_relay"],"dirverIcon":[0,0,0,0],"roomID":"6fe871d15a9dc4e5cc0000b9","status":true}]

获取指定设备的信息详情

发送的信息

let json = {
      "act": "deviceStatus",
      'deviceID': deviceID,    设备ID
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"projects":{"content":[[{"id":0,"name":"RELAY","type":"BOOL","value":"ON","prompt":"设备一路"},{"id":1,"name":"DISPMSG","type":"STRING","value":"次卧的插座驱动1开了"}]],
"deviceID":"6f060851a040c8ff290000b1","loveStatus":[true]},"act":"deviceStatus","result":"success"}

获取调光灯的信息

发送的信息

let json = {
      "act":"getComfortAir",
      "deviceID":deviceID,        设备ID
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"projects":{"content":[{"id":0,"name":"SWITCH","type":"BOOL","value":"OFF"},
{"id":1,"name":"LEVEL","type":"LEVEL_RANGE","value":"0"},
{"id":2,"name":"CURRENT_LEVEL","type":"LEVEL_RANGE","value":"0"},
{"id":3,"name":"UP","type":"TOGGLE","value":""},{"id":4,"name":"DOWN","type":"TOGGLE","value":""},
{"id":5,"name":"FLASH","type":"TOGGLE","value":""},
{"id":6,"name":"DISPMSG","type":"STRING","value":""}],"deviceID":"6ed00874a040c8ff290007d2","loveStatus":false},"act":"deviceStatus","result":"success"}

对设备进行控制

发送的信息

let json = {
      "act": "setVariable",
      'deviceID':deviceID,        设备ID
      'variableName':deviceName,      设备的类型
      'value':value,            设备控制数据
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"act":"setVariable","result":"success"}

获取驱动是relay的驱动列表信息

发送的信息

 let json = {
      "act":"buttonList",
      "roomID":roomID,       房间ID
      'deviceName':proxy,    proxy的名称
     'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"projects":[{"proxy":"relay","displayName":"插座驱动","content":[{"id":0,"name":"RELAY","type":"BOOL","value":"OFF","prompt":"设备一路"},
{"id":1,"name":"DISPMSG","type":"STRING","value":"次卧的插座 驱动1关了"}],"deviceID":"6f060851a040c8ff290000b1","cameraUrl":false,"loveStatus":[true],"driverSpace":"cn.halflink","driverName":"polyhome_socket","dirverIcon":0,"proxyID":"0"}],
"act":"buttonList","result":"success"}

删除房间上传的图片并恢复默认图片

发送的信息

let json = {
      "act":"delPicUrl",
      "roomID":roomID,      房间ID
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

图片上传后更改主机图片名称

发送的信息

 let json = {
      "act":"changePicUrl",
      "name":name,            房间名称
      "id":id,      房间ID
      'picName':picName,      图片名称
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

更改驱动的收藏状态

发送的信息

let json = {
      "act":"changeLoveIcon",
      "id":id,        设备ID
      'value':value,      是否收藏  BOOL
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

获取收藏的设备列表

发送的信息

let json = {
      "act":"loveDevice",
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

音乐歌曲的搜索

发送的信息

let json = {
      "deviceID":id,    设备的ID  
      "info":value,      发送的信息
      "act":"getMediaList",
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"projects":{"id":0,"picUrl":"http://p1.music.126.net/JlgfcKhoZOP4a6bxkbf_hQ==/109951162900253240.jpg","songID":459847590},
"act":"setMediaPicUrl","result":"success"}

音乐的播放

`发送的信息

let json = {
      "deviceID":deviceID,      设备的ID
      "id":id,      歌曲的ID
      "act":"getMediaUrl",
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"act":"mediaSessionList","result":"success"}s

获取当前正在播放音乐

发送的信息

 let json = {
      "act": "nowPlaying",
      'deviceID': deviceID,   设备的ID
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

修改远程登陆密码

发送的信息

let newPass =  this.md5.hex_md5(this.md5.hex_md5(pass));
    let json = {
      name:name,      用户名
      password:newPass,    修改后的密码
      helixType:'helixUI',
      act:'revisePass',
      'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

收到的信息

{"act":"revisePass","result":"success"}

控制composer的登陆

发送的信息

var json = {
      act: "composerLoginStatus",
      action:type,      类型
      composerLoginStatus:value,      是否禁止composer登陆
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

获取摄像头的信息数据

发送的信息

var json = {
      act: "getCameraUrl",
      deviceID:deviceID,    设备ID
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

获取音乐列表排行榜信息

发送的信息

var json = {
      act: "getMedia",  
      type: type,      排行类型
      value: value,      
      deviceID:deviceID,   设备ID
        'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

网易云登陆

发送的信息

 var json = {
      act: 'loginMedia',
      user: name,      网易云账户
      pwd: pass,    网易云密码
      deviceID:deviceID,      设备ID
       'userType':'UI'
    };
    let str = JSON.stringify(json);
    this.connect(str);

视频对讲用户主动呼叫

发送的信息

var json = data;      data是对面用户的数据{act:"answer"}
    json.localVideo = true;
    let str = JSON.stringify(json);
    this.connect(str);

猜你喜欢

转载自blog.csdn.net/weixin_34354945/article/details/87228215