2 * Generate a string of four random hex characters
4 export const randomHexString4 = () => {
5 return Math.floor((1 + Math.random()) * 0x10000)
11 * Generates a contact UID of the form 'proton-web-uuid'
13 export const generateProtonWebUID = () => {
14 const s4 = () => randomHexString4();
15 return `proton-web-${s4()}${s4()}-${s4()}-${s4()}-${s4()}-${s4()}${s4()}${s4()}`;