You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.2 KiB
JavaScript
103 lines
3.2 KiB
JavaScript
(function () {
|
|
var factory = function (Hash, Crypt, Nacl, Scrypt/*, Util, Cred, nThen */) {
|
|
var Invite = {};
|
|
|
|
Invite.deriveSeeds = function (seed) {
|
|
// take the hash of the provided seed
|
|
var u8_seed = Nacl.hash(Nacl.util.decodeBase64(seed));
|
|
|
|
// hash the first half again for scrypt's input
|
|
var subseed1 = Nacl.hash(u8_seed.subarray(0, 32));
|
|
// hash the remainder for the invite content
|
|
var subseed2 = Nacl.hash(u8_seed.subarray(32));
|
|
|
|
return {
|
|
scrypt: Nacl.util.encodeBase64(subseed1),
|
|
preview: Nacl.util.encodeBase64(subseed2),
|
|
};
|
|
};
|
|
|
|
Invite.derivePreviewHash = function (seeds) {
|
|
return '#/2/invite/view/' +
|
|
Nacl.util.encodeBase64(seeds.preview.slice(0, 18)).replace('/', '-')
|
|
+ '/';
|
|
};
|
|
|
|
Invite.derivePreviewSecrets = function (seeds) {
|
|
return Hash.getSecrets('pad', Invite.derivePreviewHash(seeds));
|
|
};
|
|
|
|
Invite.deriveSalt = function (password, instance_salt) {
|
|
return (password || '') + (instance_salt || '');
|
|
};
|
|
|
|
// seed => bytes64
|
|
Invite.deriveBytes = function (scrypt_seed, salt, cb) {
|
|
Scrypt(scrypt_seed,
|
|
salt,
|
|
8, // memoryCost (n)
|
|
1024, // block size parameter (r)
|
|
192, // dkLen
|
|
200, // interruptStep
|
|
cb,
|
|
'base64'); // format, could be 'base64'
|
|
};
|
|
|
|
Invite.getPreviewContent = function (seeds, cb) {
|
|
setTimeout(function () {
|
|
cb(void 0, {
|
|
author: {
|
|
displayName: 'Bob',
|
|
curvePublic: 'pewpewpew'
|
|
},
|
|
team: 'CryptPad',
|
|
message: 'Hello bob'
|
|
});
|
|
});
|
|
/*
|
|
var secrets = Invite.derivePreviewSecrets(seeds);
|
|
secrets = secrets;
|
|
*/
|
|
var hash = Invite.derivePreviewHash(seeds);
|
|
Crypt.get(hash, function (err, val) {
|
|
if (err) { return void cb(err); }
|
|
try {
|
|
cb(void 0, JSON.parse(val));
|
|
} catch (e) {
|
|
console.error(e);
|
|
cb(e);
|
|
}
|
|
});
|
|
// cb("NOT_IMPLEMENTED"); // XXX cryptget
|
|
};
|
|
|
|
// XXX remember to pin invites...
|
|
Invite.setPreviewContent = function (seeds, cb) {
|
|
var hash = Invite.derivePreviewHash(seeds);
|
|
Crypt.put(hash, '', function (err) { // value?
|
|
cb(err);
|
|
});
|
|
//cb = cb;
|
|
};
|
|
|
|
return Invite;
|
|
};
|
|
if (typeof(module) !== 'undefined' && module.exports) {
|
|
module.exports = factory(
|
|
require("../common-hash"),
|
|
require("../cryptget"), // XXX npm cryptget?
|
|
require("tweetnacl/nacl-fast"),
|
|
require("scrypt-async")
|
|
);
|
|
} else if ((typeof(define) !== 'undefined' && define !== null) && (define.amd !== null)) {
|
|
define([
|
|
'/common/common-hash.js',
|
|
'/common/cryptget.js',
|
|
'/bower_components/tweetnacl/nacl-fast.min.js',
|
|
'/bower_components/scrypt-async/scrypt-async.min.js',
|
|
], function (Hash, Crypt /*, Nacl, Scrypt */) {
|
|
return factory(Hash, Crypt, window.nacl, window.Scrypt);
|
|
});
|
|
}
|
|
}());
|