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.
184 lines
4.5 KiB
JavaScript
184 lines
4.5 KiB
JavaScript
/* eslint-env browser */
|
|
/* global dcodeIO */
|
|
|
|
/* eslint-disable camelcase, no-bitwise */
|
|
|
|
module.exports = {
|
|
arrayBufferToBase64,
|
|
bytesFromString,
|
|
concatenateBytes,
|
|
constantTimeEqual,
|
|
decryptSymmetric,
|
|
encryptAesCtr,
|
|
encryptSymmetric,
|
|
getRandomBytes,
|
|
getZeroes,
|
|
hmacSha256,
|
|
};
|
|
|
|
function arrayBufferToBase64(arrayBuffer) {
|
|
return dcodeIO.ByteBuffer.wrap(arrayBuffer).toString('base64');
|
|
}
|
|
|
|
function bytesFromString(string) {
|
|
return dcodeIO.ByteBuffer.wrap(string, 'utf8').toArrayBuffer();
|
|
}
|
|
|
|
// High-level Operations
|
|
|
|
const IV_LENGTH = 16;
|
|
const MAC_LENGTH = 16;
|
|
const NONCE_LENGTH = 16;
|
|
|
|
async function encryptSymmetric(key, plaintext) {
|
|
const iv = getZeroes(IV_LENGTH);
|
|
const nonce = getRandomBytes(NONCE_LENGTH);
|
|
|
|
const cipherKey = await hmacSha256(key, nonce);
|
|
const macKey = await hmacSha256(key, cipherKey);
|
|
|
|
const cipherText = await _encrypt_aes256_CBC_PKCSPadding(cipherKey, iv, plaintext);
|
|
const mac = _getFirstBytes(await hmacSha256(macKey, cipherText), MAC_LENGTH);
|
|
|
|
return concatenateBytes(nonce, cipherText, mac);
|
|
}
|
|
|
|
async function decryptSymmetric(key, data) {
|
|
const iv = getZeroes(IV_LENGTH);
|
|
|
|
const nonce = _getFirstBytes(data, NONCE_LENGTH);
|
|
const cipherText = _getBytes(data, NONCE_LENGTH, data.byteLength - NONCE_LENGTH - MAC_LENGTH);
|
|
const theirMac = _getBytes(data, data.byteLength - MAC_LENGTH, MAC_LENGTH);
|
|
|
|
const cipherKey = await hmacSha256(key, nonce);
|
|
const macKey = await hmacSha256(key, cipherKey);
|
|
|
|
const ourMac = _getFirstBytes(await hmacSha256(macKey, cipherText), MAC_LENGTH);
|
|
if (!constantTimeEqual(theirMac, ourMac)) {
|
|
throw new Error('decryptSymmetric: Failed to decrypt; MAC verification failed');
|
|
}
|
|
|
|
return _decrypt_aes256_CBC_PKCSPadding(cipherKey, iv, cipherText);
|
|
}
|
|
|
|
function constantTimeEqual(left, right) {
|
|
if (left.byteLength !== right.byteLength) {
|
|
return false;
|
|
}
|
|
let result = 0;
|
|
const ta1 = new Uint8Array(left);
|
|
const ta2 = new Uint8Array(right);
|
|
for (let i = 0, max = left.byteLength; i < max; i += 1) {
|
|
// eslint-disable-next-line no-bitwise
|
|
result |= ta1[i] ^ ta2[i];
|
|
}
|
|
return result === 0;
|
|
}
|
|
|
|
// Encryption
|
|
|
|
async function hmacSha256(key, plaintext) {
|
|
const algorithm = {
|
|
name: 'HMAC',
|
|
hash: 'SHA-256',
|
|
};
|
|
const extractable = false;
|
|
|
|
const cryptoKey = await window.crypto.subtle.importKey('raw', key, algorithm, extractable, [
|
|
'sign',
|
|
]);
|
|
|
|
return window.crypto.subtle.sign(algorithm, cryptoKey, plaintext);
|
|
}
|
|
|
|
async function _encrypt_aes256_CBC_PKCSPadding(key, iv, plaintext) {
|
|
const algorithm = {
|
|
name: 'AES-CBC',
|
|
iv,
|
|
};
|
|
const extractable = false;
|
|
|
|
const cryptoKey = await window.crypto.subtle.importKey('raw', key, algorithm, extractable, [
|
|
'encrypt',
|
|
]);
|
|
|
|
return window.crypto.subtle.encrypt(algorithm, cryptoKey, plaintext);
|
|
}
|
|
|
|
async function _decrypt_aes256_CBC_PKCSPadding(key, iv, plaintext) {
|
|
const algorithm = {
|
|
name: 'AES-CBC',
|
|
iv,
|
|
};
|
|
const extractable = false;
|
|
|
|
const cryptoKey = await window.crypto.subtle.importKey('raw', key, algorithm, extractable, [
|
|
'decrypt',
|
|
]);
|
|
return window.crypto.subtle.decrypt(algorithm, cryptoKey, plaintext);
|
|
}
|
|
|
|
async function encryptAesCtr(key, plaintext, counter) {
|
|
const extractable = false;
|
|
const algorithm = {
|
|
name: 'AES-CTR',
|
|
counter: new Uint8Array(counter),
|
|
length: 128,
|
|
};
|
|
|
|
const cryptoKey = await crypto.subtle.importKey('raw', key, algorithm, extractable, ['encrypt']);
|
|
|
|
const ciphertext = await crypto.subtle.encrypt(algorithm, cryptoKey, plaintext);
|
|
|
|
return ciphertext;
|
|
}
|
|
|
|
// Utility
|
|
|
|
function getRandomBytes(n) {
|
|
const bytes = new Uint8Array(n);
|
|
window.crypto.getRandomValues(bytes);
|
|
return bytes;
|
|
}
|
|
|
|
function getZeroes(n) {
|
|
const result = new Uint8Array(n);
|
|
|
|
const value = 0;
|
|
const startIndex = 0;
|
|
const endExclusive = n;
|
|
result.fill(value, startIndex, endExclusive);
|
|
|
|
return result;
|
|
}
|
|
|
|
function concatenateBytes(...elements) {
|
|
const length = elements.reduce((total, element) => total + element.byteLength, 0);
|
|
|
|
const result = new Uint8Array(length);
|
|
let position = 0;
|
|
|
|
for (let i = 0, max = elements.length; i < max; i += 1) {
|
|
const element = new Uint8Array(elements[i]);
|
|
result.set(element, position);
|
|
position += element.byteLength;
|
|
}
|
|
if (position !== result.length) {
|
|
throw new Error('problem concatenating!');
|
|
}
|
|
|
|
return result.buffer;
|
|
}
|
|
|
|
// Internal-only
|
|
|
|
function _getFirstBytes(data, n) {
|
|
const source = new Uint8Array(data);
|
|
return source.subarray(0, n);
|
|
}
|
|
|
|
function _getBytes(data, start, n) {
|
|
const source = new Uint8Array(data);
|
|
return source.subarray(start, start + n);
|
|
}
|