Umbral
![Coverage Status](https://coveralls.io/repos/github/multiparty/umbral/badge.svg?branch=master)
Installation
npm install umbral
Initialization
The module must be initialized with a sodium instance.
await _sodium.ready;
const _umbral = new Umbral(_sodium);
Public Interfaces
IKey
Dictionary of {id: key} key-value pairs, where the id
identifies the options counselor the key belongs to. This assumes that each options counselor can be identified by an uuid.
export interface IKey {
[id: string]: Uint8Array;
}
IMalformed
Object for storing errors in either the encryption or decryption workflow. Within encryption, the id
serves to notify the input that an error occurred on. For decryption, the id
corresponds to a particular IEncryptedData
, described below. For both workflows the error field contains exact errors produced.
export interface IMalformed {
readonly id: string;
readonly error: string;
}
IEncryptedData
Object containing the ciphertext resulting from encryption using a single perpId and a single OC's public key. The number of IEncryptedData
objects at the end of the encryption worfklow should equal the number of perpetrator IDs submitted multiplied by the number of OCs.
export interface IEncryptedData {
readonly eOC: string;
eRecord: string;
readonly eUser: string;
readonly id: string;
readonly matchingIndex: string;
}
IOCDataMap
A dictionary mapping each options counselor, identified through an id, to an array of encrypted data objects that have all been encrypted under the OC's public key.
export interface IOCDataMap {
[OCid: string]: IEncryptedData[];
}
IEncryptedMap
Dictionary represents the mapping of a matching index to all the records that have the same matching index encrypted under each options counselor's public key.
export interface IEncryptedMap {
[matchingIndex: string]: IOCDataMap;
}
IEncrypted
At the end of the encryption workflow, a single object will be returned in the following form. The encryptedMap should contain as many matching indices as submitted perpIds. Corresponding to each matching index is the IOCDataMap
for each options counselor, containing their corresponding ciphertexts.
export interface IEncrypted {
readonly encryptedMap: IEncryptedMap;
readonly malformed: IMalformed[];
}
IDecrypted
Decryption returns the following object containing an array of user records and an array of malformed objects where decryption did not properly occur.
export interface IDecrypted {
readonly data: string[];
readonly malformed: IMalformed[];
}
Encryption
This function must be provided with a dictionary of public keys in the form of IKey
key-value pairs (pkOCs). It will return all of the encrypted data in IEncrypted
form.
public encryptData(randIds: Uint8Array[], userId: string, data: string, pkOCs: IKey,
userPassPhrase: Uint8Array): IEncrypted
Decryption
The function should be provided with matched encrypted records encrypted under a specific OC's public key.
public decryptData(encryptedData: IEncryptedData[], pkOC: Uint8Array, skOC: Uint8Array): IDecrypted
End-to-End Example
The following example involves two users and two options counselors.
let encryptedDict: IEncryptedMap = {};
await _sodium.ready;
const _umbral = new Umbral(_sodium);
const userKeyPair = _sodium.crypto_box_keypair();
var [publicKeys, privateKeys] = generateKeys(2);
const perpId = 'facebook.com/Mallory';
const randId: Uint8Array = performOPRF(perpId);
const encryptedDataA: IEncrypted = _umbral.encryptData([randId], { perpId, userId: 'Alice' }, publicKeys, userKeyPair.privateKey);
updateDict(encryptedDict, encryptedDataA.encryptedMap);
const encryptedDataB: IEncrypted = _umbral.encryptData([randId], { perpId, userId: 'Bob' }, publicKeys, userKeyPair.privateKey);
updateDict(encryptedDict, encryptedDataB.encryptedMap);
for (let index in encryptedDict) {
for (let oc in encryptedDict[index]) {
const encrypted = encryptedDict[index][oc];
const decrypted = _umbral.decryptData(encrypted, publicKeys[oc], privateKeys[oc]);
}
}
Additional examples can be found under test/tests.ts