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.
session-desktop/js/modules/crypto.js

22 lines
389 B
JavaScript

/* eslint-env browser */
/* global dcodeIO */
/* eslint-disable camelcase, no-bitwise */
module.exports = {
bytesFromString,
getRandomBytes,
};
// Utility
function bytesFromString(string) {
return dcodeIO.ByteBuffer.wrap(string, 'utf8').toArrayBuffer();
}
function getRandomBytes(n) {
const bytes = new Uint8Array(n);
window.crypto.getRandomValues(bytes);
return bytes;
}