cryptpad/www/common/common-credential.js

102 lines
3.3 KiB
JavaScript
Raw Normal View History

(function () {
var factory = function (AppConfig, Scrypt) {
2016-12-28 10:01:14 +00:00
var Cred = {};
2017-09-11 12:00:27 +00:00
Cred.MINIMUM_PASSWORD_LENGTH = typeof(AppConfig.minimumPasswordLength) === 'number'?
AppConfig.minimumPasswordLength: 8;
// https://stackoverflow.com/questions/46155/how-to-validate-an-email-address-in-javascript
Cred.isEmail = function (email) {
var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(String(email).toLowerCase());
};
Cred.isLongEnoughPassword = function (passwd) {
return passwd.length >= Cred.MINIMUM_PASSWORD_LENGTH;
};
2016-12-28 10:01:14 +00:00
var isString = Cred.isString = function (x) {
return typeof(x) === 'string';
};
2017-05-04 14:16:09 +00:00
Cred.isValidUsername = function (name) {
2016-12-28 10:01:14 +00:00
return !!(name && isString(name));
};
2017-05-04 14:16:09 +00:00
Cred.isValidPassword = function (passwd) {
2016-12-28 10:01:14 +00:00
return !!(passwd && isString(passwd));
};
2017-05-04 14:16:09 +00:00
Cred.passwordsMatch = function (a, b) {
2016-12-28 10:01:14 +00:00
return isString(a) && isString(b) && a === b;
};
Cred.customSalt = function () {
return typeof(AppConfig.loginSalt) === 'string'?
AppConfig.loginSalt: '';
};
2017-05-04 14:16:09 +00:00
Cred.deriveFromPassphrase = function (username, password, len, cb) {
2016-12-28 10:01:14 +00:00
Scrypt(password,
username + Cred.customSalt(), // salt
2016-12-28 10:01:14 +00:00
8, // memoryCost (n)
1024, // block size parameter (r)
len || 128, // dkLen
200, // interruptStep
cb,
undefined); // format, could be 'base64'
};
2017-05-04 14:16:09 +00:00
Cred.dispenser = function (bytes) {
2016-12-28 10:01:14 +00:00
var entropy = {
used: 0,
};
// crypto hygeine
var consume = function (n) {
// explode if you run out of bytes
if (entropy.used + n > bytes.length) {
throw new Error('exceeded available entropy');
}
if (typeof(n) !== 'number') { throw new Error('expected a number'); }
if (n <= 0) {
throw new Error('expected to consume a positive number of bytes');
}
// grab an unused slice of the entropy
// Note: Internet Explorer doesn't support .slice on Uint8Array
var A;
if (bytes.slice) {
A = bytes.slice(entropy.used, entropy.used + n);
} else {
A = bytes.subarray(entropy.used, entropy.used + n);
}
2016-12-28 10:01:14 +00:00
// account for the bytes you used so you don't reuse bytes
entropy.used += n;
//console.info("%s bytes of entropy remaining", bytes.length - entropy.used);
return A;
};
return consume;
};
return Cred;
};
if (typeof(module) !== 'undefined' && module.exports) {
module.exports = factory(
{}, //require("../../customize.dist/application_config.js"),
require("../bower_components/scrypt-async/scrypt-async.min.js")
);
} else if ((typeof(define) !== 'undefined' && define !== null) && (define.amd !== null)) {
define([
'/customize/application_config.js',
'/bower_components/scrypt-async/scrypt-async.min.js',
], function (AppConfig) {
return factory(AppConfig, window.scrypt);
});
}
}());