create a random hash

This commit is contained in:
ansuz 2016-12-20 11:13:15 +01:00
parent 2cd50498c2
commit bd6992da0a

View File

@ -299,6 +299,14 @@ define([
return id;
};
var createRandomHash = common.createRandomHash = function () {
// 16 byte channel Id
var channelId = hexToBase64(createChannelId());
// 18 byte encryption key
var key = Crypto.b64RemoveSlashes(Crypto.rand64(18));
return '/1/edit/' + [channelId, key].join('/');
};
var replaceHash = common.replaceHash = function (hash) {
if (window.history && window.history.replaceState) {
if (!/^#/.test(hash)) { hash = '#' + hash; }