From 8e25e28b2616bdd37354df60d90b2ea8a0d61bcf Mon Sep 17 00:00:00 2001 From: shenjack-5600u <3695888@qq.com> Date: Mon, 1 Apr 2024 01:48:57 +0800 Subject: [PATCH] NPlr --- branch/latest/md5.js | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/branch/latest/md5.js b/branch/latest/md5.js index 6fe3706..8a857bf 100644 --- a/branch/latest/md5.js +++ b/branch/latest/md5.js @@ -16594,33 +16594,37 @@ let why_ns = 0; } T.aX.prototype = { aK(a, b, c, d, e, f, g, h) { - var s, r, q, p = this, - o = p.e - if (o instanceof T.Plr) { + var s, r, q, this_ = this, + tmp = this_.e + // caster + if (tmp instanceof T.Plr) { s = new T.NPlr() - s.a = o.e - p.e = s + s.a = tmp.e + this_.e = s } - o = p.f - if (o instanceof T.Plr) { + // target + tmp = this_.f + if (tmp instanceof T.Plr) { s = new T.NPlr() - s.a = o.e - p.f = s + s.a = tmp.e + this_.f = s } - o = p.x - if (o instanceof T.Plr) { + // param + tmp = this_.x + if (tmp instanceof T.Plr) { s = new T.NPlr() - s.a = o.e - p.x = s + s.a = tmp.e + this_.x = s } - o = p.r - if (o != null) - for (r = $.a(); r < o.length; ++r) { - s = o[r] + // targets2 + tmp = this_.r + if (tmp != null) + for (r = $.a(); r < tmp.length; ++r) { + s = tmp[r] if (s instanceof T.Plr) { q = new T.NPlr() q.a = s.e - o[r] = q + tmp[r] = q } } },