鍍金池/ 問答/ 網(wǎng)絡(luò)安全問答
傲嬌范 回答

使用view標(biāo)簽 ,可以查看官方文檔。樓主初學(xué)可以看看我這個練手項目,也是剛開始學(xué)小程序的時候?qū)懙模?a rel="nofollow noreferrer">https://github.com/Ghostdar/w...

替身 回答
僅在當(dāng)前會話下有效,關(guān)閉頁面或瀏覽器后被清除

我覺得應(yīng)該要結(jié)合文章中提到sessionStorage的生命周期來理解你不太明白的這句話

如果遇到一些內(nèi)容特別多的表單,為了優(yōu)化用戶體驗,我們可能要把表單頁面拆分成多個子頁面,然后按步驟引導(dǎo)用戶填寫。這時候 sessionStorage 的作用就發(fā)揮出來了。

form1_1.html 跳轉(zhuǎn)到 form1_2.html 跳轉(zhuǎn)到 form1_3.html,頁面被刷新了,上下文也就被刷新了,
但瀏覽器的標(biāo)簽沒關(guān)閉,三個同域的html頁面可訪問同一個sessionStorage

陌如玉 回答

jsonp原理

簡單來講就是

前端調(diào)用接口<script src="http://127.0.0.1:8088/jsonp?callback=test"></script>
+后端返回test({"name": "Monkey"})
等同于
<script>test({"name": "Monkey"})</script>

陌顏 回答

那你換成Fillder吧。

獨特范 回答
在列表里還是不要用SurfaceView,實現(xiàn)效果不太好的呀

替代方案:TextureView

傳送門:github:sprylab/texturevideoview

巴扎嘿 回答

好幾天沒人回答,自己親自做了一些實驗,終于發(fā)現(xiàn)其中的區(qū)別。在此分享一下,希望對大家有所幫助。

(1)在原磁盤基礎(chǔ)知識擴容風(fēng)險較大,造成數(shù)據(jù)丟失的概率會高一些。文件系統(tǒng)為xfs掛載點為根目錄(/)的邏輯卷不能進行空間縮小,強行進行空間縮小會導(dǎo)致系統(tǒng)無法啟動,且數(shù)據(jù)無法進行修復(fù)。

(2)新增磁盤并創(chuàng)建物理卷對原邏輯卷擴容這種操作是可行可靠的。安全性較在原磁盤空間基礎(chǔ)上追加空間更可靠,建議使用該類操作對磁盤空間進行擴展。

實驗全過程請參閱:http://blog.csdn.net/solarace...

好難瘦 回答

你可以解壓打出兩個包來進行一下,對比.
一般來說可能有兩個差異
1) bitcode 選項.
2) Symbols
具體你解壓對比一下便知

不過一般不影響最終用戶安裝的大小.

薔薇花 回答

navigator.userAgent中查找
每個瀏覽器里面都有封裝的客戶端識別信息

把key放到元素div中:

<div :key={index}>
    condition
</div>
初心 回答

提示的不是很清楚了吧, 現(xiàn)在memcached的根目錄下執(zhí)行 /usr/bin/phpize

phpize是什么?
phpize是用來擴展php擴展模塊的,通過phpize可以建立php的外掛模塊
比如你想在原來編譯好的php中加入memcached或者ImageMagick等擴展模塊,可以使用phpize,通過以下幾步工作。

二、如何使用phpize?
當(dāng)php編譯完成后,php的bin目錄下會有phpize這個腳本文件。在編譯你要添加的擴展模塊之前,執(zhí)行以下phpize就可以了;
比如現(xiàn)在想在php中加入memcache擴展模塊:我們要做的只是如下幾步
復(fù)制代碼 代碼如下:

tar zxvf memcache-2.2.5.tgz
cd memcache-2.2.5/
/usr/local/webserver/php/bin/phpize
./configure –with-php-config=/usr/local/webserver/php/bin/php-config
make
make install
孤星 回答

我一直以為 Blueprint 中的 name 參數(shù)和 url_for 中所用到的 endpoint (端點)有關(guān),下面是我為什么這樣理解的。

首先,我們看一下 flask 的源碼: https://github.com/pallets/fl...
其中,有下面的代碼:

class Blueprint(_PackageBoundObject):
    ...
    ...
    def __init__(self, name, import_name, static_folder=None,
                 static_url_path=None, template_folder=None,
                 url_prefix=None, subdomain=None, url_defaults=None,
                 root_path=None):
        _PackageBoundObject.__init__(self, import_name, template_folder,
                                     root_path=root_path)
        self.name = name
        self.url_prefix = url_prefix
        self.subdomain = subdomain
        self.static_folder = static_folder
        self.static_url_path = static_url_path
        self.deferred_functions = []
        if url_defaults is None:
            url_defaults = {}
        self.url_values_defaults = url_defaults

上面的代碼可以明顯的看到, Blueprint 類繼承了 _PackageBoundObject,其中,name 參數(shù),可是該類自己定義的,那么,我們繼續(xù)在源碼中找 name 參數(shù)的作用。

在該類中尋找 self.name, 我們可以看到另外 8 處內(nèi)容, 分別在該類的 before_request、after_request、teardown_request、context_processor、url_value_preprocessor、url_defaults、errorhandler、register_error_handle 這 8 個類函數(shù)中,基本上函數(shù)中用到的地方都是:

 self.record_once(lambda s: s.app.before_request_funcs
            .setdefault(self.name, []).append(f))

那么,我們再看看這個 record_once 函數(shù)的作用,該函數(shù)也是在該類中定義的。

    def record_once(self, func):
        """Works like :meth:`record` but wraps the function in another
        function that will ensure the function is only called once.  If the
        blueprint is registered a second time on the application, the
        function passed is not called.
        """
        def wrapper(state):
            if state.first_registration:
                func(state)
        return self.record(update_wrapper(wrapper, func))

通過注釋,很明顯地看到這個函數(shù)的作用是為了將 name 參數(shù)作為唯一標(biāo)識來在程序中區(qū)分藍(lán)圖所用的。

那么,回到題主的問題。
一、之所以可以隨便定義名稱,感覺沒有什么影響,那是錯覺。

  • 第一個原因,你值定義了一個藍(lán)圖,如果你再定義一個,你把 name 的參數(shù)設(shè)置成一樣的,你試試程序會不會報錯。
  • 第二個原因,你沒有用到 url_for 函數(shù),這個函數(shù)中會用到你的 name 參數(shù),或者你是直接在這樣簡化的調(diào)用的 url_for('.index') 函數(shù)的, 那個 '.' 代表了當(dāng)前的藍(lán)圖。
  • 還是回到 url_for 函數(shù),如果你在 html 的 jinja2 中調(diào)用,你得這樣寫 url_for('name.index'),其中的 name 就是你定義的藍(lán)圖的 name 參數(shù)。

二、你可以試試如果不定義 name 參數(shù),程序會報錯,因為這個參數(shù)是必須的。

  • 在 view 視圖中,我們使用 裝飾器 的寫法,一般是把函數(shù)名稱當(dāng)做 endpoint 的,如果你在兩個不同的藍(lán)圖中,使用同一個名稱來定義視圖函數(shù),那么 endpoint 按照默認(rèn)方案就無法是唯一標(biāo)識了,必須得加上藍(lán)圖的名稱,所以藍(lán)圖的名稱也得是唯一的。
莫小染 回答

直接用 瀏覽器離線模式吧,沒有必要寫爬蟲

心悲涼 回答

說明

Note: nvm does not support Windows (see #284). Two alternatives exist, which are neither supported nor developed by us:
傻叼 回答

var aa=this.val;這個是什么???
js的話是this.getAttribute('val'),jq是attr("val"),這里是js語法,用前者吧

墨染殤 回答

你看http 協(xié)議有一個 content-length,實際上,你自己傳文件也最好定義一個簡單的協(xié)議比如


contentlength,content;

一般解碼有基于長度的,也有基于分隔符的,看你自己怎么選

貓小柒 回答

WINDOWS 10上沒有Windows Zero Configuration(WZC) 這個服務(wù),已經(jīng)替換為WLAN AutoConfig這個服務(wù)了
,而且這個服務(wù)已經(jīng)啟動了;

遲月 回答

crontab 的環(huán)境變量和我們的賬號都不一樣, 和 root 的環(huán)境變量也不一樣.
類似普通用戶會先加載 ~/.bashrc 或者 /etc/profile, crontab 則會在運行時加載 /etc/crontab 導(dǎo)入其環(huán)境變量.
因此不妨看看 scrapy 這條命令是否被加入了 crontab 的運行環(huán)境變量里: /etc/crontab .

其實最簡單的辦法, 是在 crontab 里執(zhí)行定時任務(wù)時, 盡量用絕對路徑:

2 2 *** cd /root/EIT/crawler/EIT && /path/to/scrapy crawl test

如果不知道 scrapy 這條命令被放在哪里了, 可以執(zhí)行如下兩條命令來找到這個路徑:

whereis scrapy
which scrapy
薄荷糖 回答
  1. 沒有
  2. 沒有

sessionStorage是瀏覽器本地存儲,不在網(wǎng)絡(luò)上傳輸。爬蟲是HTTP協(xié)議。

你需要解決的是 sessionStorage里面存的key哪來的?一般是請求后端拿回來的,你把這個鏈接爬一下

安淺陌 回答

執(zhí)行這個解決sudo apt-get install ruby-dev

悶油瓶 回答

我最近也寫過一個類似模擬登錄的,由于你的html里面已經(jīng)有Modulus和Exponent了,你可以直接利用rsa庫對密碼進行加密。我用的是nodejs自己封裝的,PHP的應(yīng)該也有。

var RSAUtils = {};

var biRadixBase = 2;
var biRadixBits = 16;
var bitsPerDigit = biRadixBits;
var biRadix = 1 << 16; // = 2^16 = 65536
var biHalfRadix = biRadix >>> 1;
var biRadixSquared = biRadix * biRadix;
var maxDigitVal = biRadix - 1;
var maxInteger = 9999999999999998;

//1024 * 2 / 16 = 128 digits of storage.
//
var maxDigits;
var ZERO_ARRAY;
var bigZero, bigOne;

RSAUtils.BigInt = function(flag) {
  if (typeof flag == "boolean" && flag == true) {
    this.digits = null;
  } else {
    this.digits = ZERO_ARRAY.slice(0);
  }
  this.isNeg = false;
};

RSAUtils.setMaxDigits = function(value) {
  maxDigits = value;
  ZERO_ARRAY = new Array(maxDigits);
  for (var iza = 0; iza < ZERO_ARRAY.length; iza++) ZERO_ARRAY[iza] = 0;
  bigZero = new RSAUtils.BigInt();
  bigOne = new RSAUtils.BigInt();
  bigOne.digits[0] = 1;
};
RSAUtils.setMaxDigits(20);

//The maximum number of digits in base 10 you can convert to an
//integer without JavaScript throwing up on you.
var dpl10 = 15;

RSAUtils.biFromNumber = function(i) {
  var result = new RSAUtils.BigInt();
  result.isNeg = i < 0;
  i = Math.abs(i);
  var j = 0;
  while (i > 0) {
    result.digits[j++] = i & maxDigitVal;
    i = Math.floor(i / biRadix);
  }
  return result;
};

//lr10 = 10 ^ dpl10
var lr10 = RSAUtils.biFromNumber(1000000000000000);

RSAUtils.biFromDecimal = function(s) {
  var isNeg = s.charAt(0) == '-';
  var i = isNeg ? 1 : 0;
  var result;
  // Skip leading zeros.
  while (i < s.length && s.charAt(i) == '0') ++i;
  if (i == s.length) {
    result = new RSAUtils.BigInt();
  }
  else {
    var digitCount = s.length - i;
    var fgl = digitCount % dpl10;
    if (fgl == 0) fgl = dpl10;
    result = RSAUtils.biFromNumber(Number(s.substr(i, fgl)));
    i += fgl;
    while (i < s.length) {
      result = RSAUtils.biAdd(RSAUtils.biMultiply(result, lr10),
        RSAUtils.biFromNumber(Number(s.substr(i, dpl10))));
      i += dpl10;
    }
    result.isNeg = isNeg;
  }
  return result;
};

RSAUtils.biCopy = function(bi) {
  var result = new RSAUtils.BigInt(true);
  result.digits = bi.digits.slice(0);
  result.isNeg = bi.isNeg;
  return result;
};

RSAUtils.reverseStr = function(s) {
  var result = "";
  for (var i = s.length - 1; i > -1; --i) {
    result += s.charAt(i);
  }
  return result;
};

var hexatrigesimalToChar = [
  '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
  'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
  'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
  'u', 'v', 'w', 'x', 'y', 'z'
];

RSAUtils.biToString = function(x, radix) { // 2 <= radix <= 36
  var b = new RSAUtils.BigInt();
  b.digits[0] = radix;
  var qr = RSAUtils.biDivideModulo(x, b);
  var result = hexatrigesimalToChar[qr[1].digits[0]];
  while (RSAUtils.biCompare(qr[0], bigZero) == 1) {
    qr = RSAUtils.biDivideModulo(qr[0], b);
    digit = qr[1].digits[0];
    result += hexatrigesimalToChar[qr[1].digits[0]];
  }
  return (x.isNeg ? "-" : "") + RSAUtils.reverseStr(result);
};

RSAUtils.biToDecimal = function(x) {
  var b = new RSAUtils.BigInt();
  b.digits[0] = 10;
  var qr = RSAUtils.biDivideModulo(x, b);
  var result = String(qr[1].digits[0]);
  while (RSAUtils.biCompare(qr[0], bigZero) == 1) {
    qr = RSAUtils.biDivideModulo(qr[0], b);
    result += String(qr[1].digits[0]);
  }
  return (x.isNeg ? "-" : "") + RSAUtils.reverseStr(result);
};

var hexToChar = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
  'a', 'b', 'c', 'd', 'e', 'f'];

RSAUtils.digitToHex = function(n) {
  var mask = 0xf;
  var result = "";
  for (i = 0; i < 4; ++i) {
    result += hexToChar[n & mask];
    n >>>= 4;
  }
  return RSAUtils.reverseStr(result);
};

RSAUtils.biToHex = function(x) {
  var result = "";
  var n = RSAUtils.biHighIndex(x);
  for (var i = RSAUtils.biHighIndex(x); i > -1; --i) {
    result += RSAUtils.digitToHex(x.digits[i]);
  }
  return result;
};

RSAUtils.charToHex = function(c) {
  var ZERO = 48;
  var NINE = ZERO + 9;
  var littleA = 97;
  var littleZ = littleA + 25;
  var bigA = 65;
  var bigZ = 65 + 25;
  var result;

  if (c >= ZERO && c <= NINE) {
    result = c - ZERO;
  } else if (c >= bigA && c <= bigZ) {
    result = 10 + c - bigA;
  } else if (c >= littleA && c <= littleZ) {
    result = 10 + c - littleA;
  } else {
    result = 0;
  }
  return result;
};

RSAUtils.hexToDigit = function(s) {
  var result = 0;
  var sl = Math.min(s.length, 4);
  for (var i = 0; i < sl; ++i) {
    result <<= 4;
    result |= RSAUtils.charToHex(s.charCodeAt(i));
  }
  return result;
};

RSAUtils.biFromHex = function(s) {
  var result = new RSAUtils.BigInt();
  var sl = s.length;
  for (var i = sl, j = 0; i > 0; i -= 4, ++j) {
    result.digits[j] = RSAUtils.hexToDigit(s.substr(Math.max(i - 4, 0), Math.min(i, 4)));
  }
  return result;
};

RSAUtils.biFromString = function(s, radix) {
  var isNeg = s.charAt(0) == '-';
  var istop = isNeg ? 1 : 0;
  var result = new RSAUtils.BigInt();
  var place = new RSAUtils.BigInt();
  place.digits[0] = 1; // radix^0
  for (var i = s.length - 1; i >= istop; i--) {
    var c = s.charCodeAt(i);
    var digit = RSAUtils.charToHex(c);
    var biDigit = RSAUtils.biMultiplyDigit(place, digit);
    result = RSAUtils.biAdd(result, biDigit);
    place = RSAUtils.biMultiplyDigit(place, radix);
  }
  result.isNeg = isNeg;
  return result;
};

RSAUtils.biDump = function(b) {
  return (b.isNeg ? "-" : "") + b.digits.join(" ");
};

RSAUtils.biAdd = function(x, y) {
  var result;

  if (x.isNeg != y.isNeg) {
    y.isNeg = !y.isNeg;
    result = RSAUtils.biSubtract(x, y);
    y.isNeg = !y.isNeg;
  }
  else {
    result = new RSAUtils.BigInt();
    var c = 0;
    var n;
    for (var i = 0; i < x.digits.length; ++i) {
      n = x.digits[i] + y.digits[i] + c;
      result.digits[i] = n % biRadix;
      c = Number(n >= biRadix);
    }
    result.isNeg = x.isNeg;
  }
  return result;
};

RSAUtils.biSubtract = function(x, y) {
  var result;
  if (x.isNeg != y.isNeg) {
    y.isNeg = !y.isNeg;
    result = RSAUtils.biAdd(x, y);
    y.isNeg = !y.isNeg;
  } else {
    result = new RSAUtils.BigInt();
    var n, c;
    c = 0;
    for (var i = 0; i < x.digits.length; ++i) {
      n = x.digits[i] - y.digits[i] + c;
      result.digits[i] = n % biRadix;
      // Stupid non-conforming modulus operation.
      if (result.digits[i] < 0) result.digits[i] += biRadix;
      c = 0 - Number(n < 0);
    }
    // Fix up the negative sign, if any.
    if (c == -1) {
      c = 0;
      for (var i = 0; i < x.digits.length; ++i) {
        n = 0 - result.digits[i] + c;
        result.digits[i] = n % biRadix;
        // Stupid non-conforming modulus operation.
        if (result.digits[i] < 0) result.digits[i] += biRadix;
        c = 0 - Number(n < 0);
      }
      // Result is opposite sign of arguments.
      result.isNeg = !x.isNeg;
    } else {
      // Result is same sign.
      result.isNeg = x.isNeg;
    }
  }
  return result;
};

RSAUtils.biHighIndex = function(x) {
  var result = x.digits.length - 1;
  while (result > 0 && x.digits[result] == 0) --result;
  return result;
};

RSAUtils.biNumBits = function(x) {
  var n = RSAUtils.biHighIndex(x);
  var d = x.digits[n];
  var m = (n + 1) * bitsPerDigit;
  var result;
  for (result = m; result > m - bitsPerDigit; --result) {
    if ((d & 0x8000) != 0) break;
    d <<= 1;
  }
  return result;
};

RSAUtils.biMultiply = function(x, y) {
  var result = new RSAUtils.BigInt();
  var c;
  var n = RSAUtils.biHighIndex(x);
  var t = RSAUtils.biHighIndex(y);
  var u, uv, k;

  for (var i = 0; i <= t; ++i) {
    c = 0;
    k = i;
    for (j = 0; j <= n; ++j, ++k) {
      uv = result.digits[k] + x.digits[j] * y.digits[i] + c;
      result.digits[k] = uv & maxDigitVal;
      c = uv >>> biRadixBits;
      //c = Math.floor(uv / biRadix);
    }
    result.digits[i + n + 1] = c;
  }
  // Someone give me a logical xor, please.
  result.isNeg = x.isNeg != y.isNeg;
  return result;
};

RSAUtils.biMultiplyDigit = function(x, y) {
  var n, c, uv;

  result = new RSAUtils.BigInt();
  n = RSAUtils.biHighIndex(x);
  c = 0;
  for (var j = 0; j <= n; ++j) {
    uv = result.digits[j] + x.digits[j] * y + c;
    result.digits[j] = uv & maxDigitVal;
    c = uv >>> biRadixBits;
    //c = Math.floor(uv / biRadix);
  }
  result.digits[1 + n] = c;
  return result;
};

RSAUtils.arrayCopy = function(src, srcStart, dest, destStart, n) {
  var m = Math.min(srcStart + n, src.length);
  for (var i = srcStart, j = destStart; i < m; ++i, ++j) {
    dest[j] = src[i];
  }
};

var highBitMasks = [0x0000, 0x8000, 0xC000, 0xE000, 0xF000, 0xF800,
  0xFC00, 0xFE00, 0xFF00, 0xFF80, 0xFFC0, 0xFFE0,
  0xFFF0, 0xFFF8, 0xFFFC, 0xFFFE, 0xFFFF];

RSAUtils.biShiftLeft = function(x, n) {
  var digitCount = Math.floor(n / bitsPerDigit);
  var result = new RSAUtils.BigInt();
  RSAUtils.arrayCopy(x.digits, 0, result.digits, digitCount,
    result.digits.length - digitCount);
  var bits = n % bitsPerDigit;
  var rightBits = bitsPerDigit - bits;
  for (var i = result.digits.length - 1, i1 = i - 1; i > 0; --i, --i1) {
    result.digits[i] = ((result.digits[i] << bits) & maxDigitVal) |
      ((result.digits[i1] & highBitMasks[bits]) >>>
        (rightBits));
  }
  result.digits[0] = ((result.digits[i] << bits) & maxDigitVal);
  result.isNeg = x.isNeg;
  return result;
};

var lowBitMasks = [0x0000, 0x0001, 0x0003, 0x0007, 0x000F, 0x001F,
  0x003F, 0x007F, 0x00FF, 0x01FF, 0x03FF, 0x07FF,
  0x0FFF, 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF];

RSAUtils.biShiftRight = function(x, n) {
  var digitCount = Math.floor(n / bitsPerDigit);
  var result = new RSAUtils.BigInt();
  RSAUtils.arrayCopy(x.digits, digitCount, result.digits, 0,
    x.digits.length - digitCount);
  var bits = n % bitsPerDigit;
  var leftBits = bitsPerDigit - bits;
  for (var i = 0, i1 = i + 1; i < result.digits.length - 1; ++i, ++i1) {
    result.digits[i] = (result.digits[i] >>> bits) |
      ((result.digits[i1] & lowBitMasks[bits]) << leftBits);
  }
  result.digits[result.digits.length - 1] >>>= bits;
  result.isNeg = x.isNeg;
  return result;
};

RSAUtils.biMultiplyByRadixPower = function(x, n) {
  var result = new RSAUtils.BigInt();
  RSAUtils.arrayCopy(x.digits, 0, result.digits, n, result.digits.length - n);
  return result;
};

RSAUtils.biDivideByRadixPower = function(x, n) {
  var result = new RSAUtils.BigInt();
  RSAUtils.arrayCopy(x.digits, n, result.digits, 0, result.digits.length - n);
  return result;
};

RSAUtils.biModuloByRadixPower = function(x, n) {
  var result = new RSAUtils.BigInt();
  RSAUtils.arrayCopy(x.digits, 0, result.digits, 0, n);
  return result;
};

RSAUtils.biCompare = function(x, y) {
  if (x.isNeg != y.isNeg) {
    return 1 - 2 * Number(x.isNeg);
  }
  for (var i = x.digits.length - 1; i >= 0; --i) {
    if (x.digits[i] != y.digits[i]) {
      if (x.isNeg) {
        return 1 - 2 * Number(x.digits[i] > y.digits[i]);
      } else {
        return 1 - 2 * Number(x.digits[i] < y.digits[i]);
      }
    }
  }
  return 0;
};

RSAUtils.biDivideModulo = function(x, y) {
  var nb = RSAUtils.biNumBits(x);
  var tb = RSAUtils.biNumBits(y);
  var origYIsNeg = y.isNeg;
  var q, r;
  if (nb < tb) {
    // |x| < |y|
    if (x.isNeg) {
      q = RSAUtils.biCopy(bigOne);
      q.isNeg = !y.isNeg;
      x.isNeg = false;
      y.isNeg = false;
      r = biSubtract(y, x);
      // Restore signs, 'cause they're references.
      x.isNeg = true;
      y.isNeg = origYIsNeg;
    } else {
      q = new RSAUtils.BigInt();
      r = RSAUtils.biCopy(x);
    }
    return [q, r];
  }

  q = new RSAUtils.BigInt();
  r = x;

  // Normalize Y.
  var t = Math.ceil(tb / bitsPerDigit) - 1;
  var lambda = 0;
  while (y.digits[t] < biHalfRadix) {
    y = RSAUtils.biShiftLeft(y, 1);
    ++lambda;
    ++tb;
    t = Math.ceil(tb / bitsPerDigit) - 1;
  }
  // Shift r over to keep the quotient constant. We'll shift the
  // remainder back at the end.
  r = RSAUtils.biShiftLeft(r, lambda);
  nb += lambda; // Update the bit count for x.
  var n = Math.ceil(nb / bitsPerDigit) - 1;

  var b = RSAUtils.biMultiplyByRadixPower(y, n - t);
  while (RSAUtils.biCompare(r, b) != -1) {
    ++q.digits[n - t];
    r = RSAUtils.biSubtract(r, b);
  }
  for (var i = n; i > t; --i) {
    var ri = (i >= r.digits.length) ? 0 : r.digits[i];
    var ri1 = (i - 1 >= r.digits.length) ? 0 : r.digits[i - 1];
    var ri2 = (i - 2 >= r.digits.length) ? 0 : r.digits[i - 2];
    var yt = (t >= y.digits.length) ? 0 : y.digits[t];
    var yt1 = (t - 1 >= y.digits.length) ? 0 : y.digits[t - 1];
    if (ri == yt) {
      q.digits[i - t - 1] = maxDigitVal;
    } else {
      q.digits[i - t - 1] = Math.floor((ri * biRadix + ri1) / yt);
    }

    var c1 = q.digits[i - t - 1] * ((yt * biRadix) + yt1);
    var c2 = (ri * biRadixSquared) + ((ri1 * biRadix) + ri2);
    while (c1 > c2) {
      --q.digits[i - t - 1];
      c1 = q.digits[i - t - 1] * ((yt * biRadix) | yt1);
      c2 = (ri * biRadix * biRadix) + ((ri1 * biRadix) + ri2);
    }

    b = RSAUtils.biMultiplyByRadixPower(y, i - t - 1);
    r = RSAUtils.biSubtract(r, RSAUtils.biMultiplyDigit(b, q.digits[i - t - 1]));
    if (r.isNeg) {
      r = RSAUtils.biAdd(r, b);
      --q.digits[i - t - 1];
    }
  }
  r = RSAUtils.biShiftRight(r, lambda);
  // Fiddle with the signs and stuff to make sure that 0 <= r < y.
  q.isNeg = x.isNeg != origYIsNeg;
  if (x.isNeg) {
    if (origYIsNeg) {
      q = RSAUtils.biAdd(q, bigOne);
    } else {
      q = RSAUtils.biSubtract(q, bigOne);
    }
    y = RSAUtils.biShiftRight(y, lambda);
    r = RSAUtils.biSubtract(y, r);
  }
  // Check for the unbelievably stupid degenerate case of r == -0.
  if (r.digits[0] == 0 && RSAUtils.biHighIndex(r) == 0) r.isNeg = false;

  return [q, r];
};

RSAUtils.biDivide = function(x, y) {
  return RSAUtils.biDivideModulo(x, y)[0];
};

RSAUtils.biModulo = function(x, y) {
  return RSAUtils.biDivideModulo(x, y)[1];
};

RSAUtils.biMultiplyMod = function(x, y, m) {
  return RSAUtils.biModulo(RSAUtils.biMultiply(x, y), m);
};

RSAUtils.biPow = function(x, y) {
  var result = bigOne;
  var a = x;
  while (true) {
    if ((y & 1) != 0) result = RSAUtils.biMultiply(result, a);
    y >>= 1;
    if (y == 0) break;
    a = RSAUtils.biMultiply(a, a);
  }
  return result;
};

RSAUtils.biPowMod = function(x, y, m) {
  var result = bigOne;
  var a = x;
  var k = y;
  while (true) {
    if ((k.digits[0] & 1) != 0) result = RSAUtils.biMultiplyMod(result, a, m);
    k = RSAUtils.biShiftRight(k, 1);
    if (k.digits[0] == 0 && RSAUtils.biHighIndex(k) == 0) break;
    a = RSAUtils.biMultiplyMod(a, a, m);
  }
  return result;
};


RSAUtils.BarrettMu = function(m) {
  this.modulus = RSAUtils.biCopy(m);
  this.k = RSAUtils.biHighIndex(this.modulus) + 1;
  var b2k = new RSAUtils.BigInt();
  b2k.digits[2 * this.k] = 1; // b2k = b^(2k)
  this.mu = RSAUtils.biDivide(b2k, this.modulus);
  this.bkplus1 = new RSAUtils.BigInt();
  this.bkplus1.digits[this.k + 1] = 1; // bkplus1 = b^(k+1)
  this.modulo = RSAUtils.BarrettMu_modulo;
  this.multiplyMod = RSAUtils.BarrettMu_multiplyMod;
  this.powMod = RSAUtils.BarrettMu_powMod;
};

RSAUtils.BarrettMu_modulo = function(x) {
  var q1 = RSAUtils.biDivideByRadixPower(x, this.k - 1);
  var q2 = RSAUtils.biMultiply(q1, this.mu);
  var q3 = RSAUtils.biDivideByRadixPower(q2, this.k + 1);
  var r1 = RSAUtils.biModuloByRadixPower(x, this.k + 1);
  var r2term = RSAUtils.biMultiply(q3, this.modulus);
  var r2 = RSAUtils.biModuloByRadixPower(r2term, this.k + 1);
  var r = RSAUtils.biSubtract(r1, r2);
  if (r.isNeg) {
    r = RSAUtils.biAdd(r, this.bkplus1);
  }
  var rgtem = RSAUtils.biCompare(r, this.modulus) >= 0;
  while (rgtem) {
    r = RSAUtils.biSubtract(r, this.modulus);
    rgtem = RSAUtils.biCompare(r, this.modulus) >= 0;
  }
  return r;
}

RSAUtils.BarrettMu_multiplyMod = function(x, y) {
  /*
    x = this.modulo(x);
    y = this.modulo(y);
    */
  var xy = RSAUtils.biMultiply(x, y);
  return this.modulo(xy);
}

RSAUtils.BarrettMu_powMod = function(x, y) {
  var result = new RSAUtils.BigInt();
  result.digits[0] = 1;
  var a = x;
  var k = y;
  while (true) {
    if ((k.digits[0] & 1) != 0) result = this.multiplyMod(result, a);
    k = RSAUtils.biShiftRight(k, 1);
    if (k.digits[0] == 0 && RSAUtils.biHighIndex(k) == 0) break;
    a = this.multiplyMod(a, a);
  }
  return result;
}

function RSAKeyPair(encryptionExponent, decryptionExponent, modulus) {
  this.e = RSAUtils.biFromHex(encryptionExponent);
  this.d = RSAUtils.biFromHex(decryptionExponent);
  this.m = RSAUtils.biFromHex(modulus);
  // We can do two bytes per digit, so
  // chunkSize = 2 * (number of digits in modulus - 1).
  // Since biHighIndex returns the high index, not the number of digits, 1 has
  // already been subtracted.
  this.chunkSize = 2 * RSAUtils.biHighIndex(this.m);
  this.radix = 16;
  this.barrett = new RSAUtils.BarrettMu(this.m);
};

RSAUtils.getKeyPair = function(encryptionExponent, decryptionExponent, modulus) {
  return new RSAKeyPair(encryptionExponent, decryptionExponent, modulus);
};

RSAUtils.twoDigit = function(n) {
  return (n < 10 ? "0" : "") + String(n);
};

RSAUtils.encryptedString = function(key, s) {
  var a = [];
  var sl = s.length;
  var i = 0;
  while (i < sl) {
    a[i] = s.charCodeAt(i);
    i++;
  }

  while (a.length % key.chunkSize != 0) {
    a[i++] = 0;
  }

  var al = a.length;
  var result = "";
  var j, k, block;
  for (i = 0; i < al; i += key.chunkSize) {
    block = new RSAUtils.BigInt();
    j = 0;
    for (k = i; k < i + key.chunkSize; ++j) {
      block.digits[j] = a[k++];
      block.digits[j] += a[k++] << 8;
    }
    var crypt = key.barrett.powMod(block, key.e);
    var text = key.radix == 16 ? RSAUtils.biToHex(crypt) : RSAUtils.biToString(crypt, key.radix);
    result += text + " ";
  }
  return result.substring(0, result.length - 1); // Remove last space.
};

RSAUtils.decryptedString = function(key, s) {
  var blocks = s.split(" ");
  var result = "";
  var i, j, block;
  for (i = 0; i < blocks.length; ++i) {
    var bi;
    if (key.radix == 16) {
      bi = RSAUtils.biFromHex(blocks[i]);
    }
    else {
      bi = RSAUtils.biFromString(blocks[i], key.radix);
    }
    block = key.barrett.powMod(bi, key.d);
    for (j = 0; j <= RSAUtils.biHighIndex(block); ++j) {
      result += String.fromCharCode(block.digits[j] & 255,
        block.digits[j] >> 8);
    }
  }
  // Remove trailing null, if any.
  if (result.charCodeAt(result.length - 1) == 0) {
    result = result.substring(0, result.length - 1);
  }
  return result;
};

RSAUtils.setMaxDigits(130);

module.exports = RSAUtils;

使用方式也:

var RSAUtils = require('./RSA')

// 獲取RSA的公鑰,計算加密后的用戶名、密碼
function step_2(result) {
  return new Promise((resolve, reject) => {
    console.log(`即將訪問:${url_get_key}`)
    request.post({
      url: url_get_key
    }, (err, r, body) => {
      let publicKeyModulus, publicKeyExponent
      let obj = JSON.parse(body)
      publicKeyModulus = obj.publicKeyModulus
      publicKeyExponent = obj.publicKeyExponent
      let key = new RSAUtils.getKeyPair(publicKeyExponent, '', publicKeyModulus)
      let username_encrypted = RSAUtils.encryptedString(key, user_name.split('').reverse().join(''))
      let passwd_encrypted = RSAUtils.encryptedString(key, passwd.split('').reverse().join(''))
      result.publicKeyModulus = publicKeyModulus
      result.publicKeyExponent = publicKeyExponent
      result.username_encrypted = username_encrypted
      result.passwd_encrypted = passwd_encrypted
      resolve(result)
    })
  })
}