proteus-hd
Version:
Signal Protocol (with header encryption) implementation for JavaScript. Based on Proteus.js.
107 lines (91 loc) • 2.61 kB
JavaScript
/*
* Wire
* Copyright (C) 2016 Wire Swiss GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*
*/
;
const CBOR = require('wire-webapp-cbor');
const sodium = require('libsodium-wrappers-sumo');
const ClassUtil = require('../util/ClassUtil');
const DontCallConstructor = require('../errors/DontCallConstructor');
const TypeUtil = require('../util/TypeUtil');
/** @module derived */
/**
* @class MacKey
* @throws {DontCallConstructor}
*/
class MacKey {
constructor() {
throw new DontCallConstructor(this);
}
/**
* @param {!Uint8Array} key - Mac Key in byte array format generated by derived secrets
* @returns {MacKey} - `this`
*/
static new(key) {
TypeUtil.assert_is_instance(Uint8Array, key);
const mk = ClassUtil.new_instance(MacKey);
/** @type {Uint8Array} */
mk.key = key;
return mk;
}
/**
* Hash-based message authentication code
* @param {!(string|Uint8Array)} msg
* @returns {Uint8Array}
*/
sign(msg) {
return sodium.crypto_auth_hmacsha256(msg, this.key);
}
/**
* Verifies the signature of a given message by resigning it.
* @param {!Uint8Array} signature Mac signature (HMAC) which needs to get verified
* @param {!Uint8Array} msg Unsigned message
* @returns {boolean}
*/
verify(signature, msg) {
return sodium.crypto_auth_hmacsha256_verify(signature, msg, this.key);
}
/**
* @param {!CBOR.Encoder} e
* @returns {CBOR.Encoder}
*/
encode(e) {
e.object(1);
e.u8(0);
return e.bytes(this.key);
}
/**
* @param {!CBOR.Decoder} d
* @returns {MacKey}
*/
static decode(d) {
TypeUtil.assert_is_instance(CBOR.Decoder, d);
let key_bytes = null;
const nprops = d.object();
for (let i = 0; i <= nprops - 1; i++) {
switch (d.u8()) {
case 0:
key_bytes = new Uint8Array(d.bytes());
break;
default:
d.skip();
}
}
return MacKey.new(key_bytes);
}
}
module.exports = MacKey;