精品无人区卡卡卡卡卡二卡三乱码_久久影院综合精品_精品亚洲成AV人在线观看_亚洲影院丰满少妇中文字幕无码
function pkcs1pad1(e, h) {
let g = new Array();
let d = e.length - 1;
while (d >= 0 && h > 0) {
let f = e.charCodeAt(d--);
g[--h] = f;
}
g[--h] = 0;
while (h > 2) {
g[--h] = 255;
}
g[--h] = 1;
g[--h] = 0;
return new BigInteger(g);
}
RSAKey.prototype.privEncrypt = function (d) {
let a = pkcs1pad1(d, (this.n.bitLength() + 7) >> 3);
if (a == null) {
return null;
}
let e = this.doPrivate(a);
if (e == null) {
return null;
}
let b = e.toString(16);
if ((b.length & 1) == 0) {
return b;
} else {
return '0' + b;
}
};精品无人区卡卡卡卡卡二卡三乱码_久久影院综合精品_精品亚洲成AV人在线观看_亚洲影院丰满少妇中文字幕无码