ethers.js/packages/experimental/lib/brain-wallet.js

70 lines
3.1 KiB
JavaScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2021-03-08 02:24:04 +03:00
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
2019-05-15 01:48:48 +03:00
return extendStatics(d, b);
};
return function (d, b) {
2021-03-08 02:24:04 +03:00
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
2019-05-15 01:48:48 +03:00
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
2020-11-17 07:07:24 +03:00
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
2019-05-15 01:48:48 +03:00
Object.defineProperty(exports, "__esModule", { value: true });
2021-03-08 02:24:04 +03:00
exports.BrainWallet = void 0;
2019-05-15 01:48:48 +03:00
var ethers_1 = require("ethers");
2020-11-17 07:07:24 +03:00
var scrypt_js_1 = __importDefault(require("scrypt-js"));
var _version_1 = require("./_version");
var logger = new ethers_1.ethers.utils.Logger(_version_1.version);
2019-05-15 01:48:48 +03:00
var warned = false;
var BrainWallet = /** @class */ (function (_super) {
__extends(BrainWallet, _super);
function BrainWallet() {
return _super !== null && _super.apply(this, arguments) || this;
}
BrainWallet._generate = function (username, password, legacy, progressCallback) {
if (!warned) {
logger.warn("Warning: using Brain Wallets should be considered insecure (this warning will not be repeated)");
2019-05-15 01:48:48 +03:00
warned = true;
}
var usernameBytes = null;
var passwordBytes = null;
if (typeof (username) === 'string') {
logger.checkNormalize();
2019-05-15 01:48:48 +03:00
usernameBytes = ethers_1.ethers.utils.toUtf8Bytes(username.normalize('NFKC'));
}
else {
usernameBytes = ethers_1.ethers.utils.arrayify(username);
}
if (typeof (password) === 'string') {
logger.checkNormalize();
2019-05-15 01:48:48 +03:00
passwordBytes = ethers_1.ethers.utils.toUtf8Bytes(password.normalize('NFKC'));
}
else {
passwordBytes = ethers_1.ethers.utils.arrayify(password);
}
2020-11-17 07:07:24 +03:00
return scrypt_js_1.default.scrypt(passwordBytes, usernameBytes, (1 << 18), 8, 1, 32, progressCallback).then(function (key) {
2019-11-20 12:57:38 +03:00
if (legacy) {
return new BrainWallet(key);
}
var mnemonic = ethers_1.ethers.utils.entropyToMnemonic(ethers_1.ethers.utils.arrayify(key).slice(0, 16));
return new BrainWallet(ethers_1.ethers.Wallet.fromMnemonic(mnemonic));
2019-05-15 01:48:48 +03:00
});
};
BrainWallet.generate = function (username, password, progressCallback) {
return BrainWallet._generate(username, password, false, progressCallback);
};
BrainWallet.generateLegacy = function (username, password, progressCallback) {
return BrainWallet._generate(username, password, true, progressCallback);
};
return BrainWallet;
}(ethers_1.ethers.Wallet));
exports.BrainWallet = BrainWallet;
2020-07-13 15:03:56 +03:00
//# sourceMappingURL=brain-wallet.js.map