25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

10 satır
304 B

  1. const assert = require("assert");
  2. const bigInt = require("big-integer");
  3. const entropy = require("../src/entropy");
  4. test("consumeEntropy", () => {
  5. const password = entropy.consumeEntropy("", bigInt(4 * 4 + 2), "abcd", 2);
  6. assert.equal("ca", password.value);
  7. assert.equal(1, password.entropy);
  8. });