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.
		
		
		
		
		
			
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			TypeScript
		
	
import * as MessageEncrypter from './MessageEncrypter';
 | 
						|
import * as DecryptedAttachmentsManager from './DecryptedAttachmentsManager';
 | 
						|
 | 
						|
export { MessageEncrypter, DecryptedAttachmentsManager };
 | 
						|
import crypto from 'crypto';
 | 
						|
 | 
						|
// libsodium-wrappers requires the `require` call to work
 | 
						|
// tslint:disable-next-line: no-require-imports
 | 
						|
import libsodiumwrappers from 'libsodium-wrappers-sumo';
 | 
						|
import { toHex } from '../utils/String';
 | 
						|
import { ECKeyPair } from '../../receiver/keypairs';
 | 
						|
 | 
						|
export async function getSodiumRenderer(): Promise<typeof libsodiumwrappers> {
 | 
						|
  await libsodiumwrappers.ready;
 | 
						|
  return libsodiumwrappers;
 | 
						|
}
 | 
						|
 | 
						|
export const sha256 = (s: string) => {
 | 
						|
  return crypto
 | 
						|
    .createHash('sha256')
 | 
						|
    .update(s)
 | 
						|
    .digest('base64');
 | 
						|
};
 | 
						|
 | 
						|
export const concatUInt8Array = (...args: Array<Uint8Array>): Uint8Array => {
 | 
						|
  const totalLength = args.reduce((acc, current) => acc + current.length, 0);
 | 
						|
 | 
						|
  const concatted = new Uint8Array(totalLength);
 | 
						|
  let currentIndex = 0;
 | 
						|
  args.forEach(arr => {
 | 
						|
    concatted.set(arr, currentIndex);
 | 
						|
    currentIndex += arr.length;
 | 
						|
  });
 | 
						|
 | 
						|
  return concatted;
 | 
						|
};
 | 
						|
 | 
						|
/**
 | 
						|
 * Returns a generated curve25519 hex public key being of length 66 and starting with 05.
 | 
						|
 * For a closed group, we have one publicKey (with prefix) used for polling (this function),
 | 
						|
 * and one keypair without prefix used for encoding of the messages (function generateCurve25519KeyPairWithoutPrefix).
 | 
						|
 */
 | 
						|
export async function generateClosedGroupPublicKey() {
 | 
						|
  const sodium = await getSodiumRenderer();
 | 
						|
 | 
						|
  const ed25519KeyPair = sodium.crypto_sign_keypair();
 | 
						|
  const x25519PublicKey = sodium.crypto_sign_ed25519_pk_to_curve25519(ed25519KeyPair.publicKey);
 | 
						|
  // prepend version byte (coming from `processKeys(raw_keys)`)
 | 
						|
  const origPub = new Uint8Array(x25519PublicKey);
 | 
						|
  const prependedX25519PublicKey = new Uint8Array(33);
 | 
						|
  prependedX25519PublicKey.set(origPub, 1);
 | 
						|
  prependedX25519PublicKey[0] = 5;
 | 
						|
 | 
						|
  return toHex(prependedX25519PublicKey);
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * Returns a generated curve25519 keypair without the prefix on the public key.
 | 
						|
 */
 | 
						|
export async function generateCurve25519KeyPairWithoutPrefix(): Promise<ECKeyPair | null> {
 | 
						|
  const sodium = await getSodiumRenderer();
 | 
						|
 | 
						|
  try {
 | 
						|
    const ed25519KeyPair = sodium.crypto_sign_keypair();
 | 
						|
    const x25519PublicKey = sodium.crypto_sign_ed25519_pk_to_curve25519(ed25519KeyPair.publicKey);
 | 
						|
    const x25519SecretKey = sodium.crypto_sign_ed25519_sk_to_curve25519(ed25519KeyPair.privateKey);
 | 
						|
 | 
						|
    return new ECKeyPair(x25519PublicKey, x25519SecretKey);
 | 
						|
  } catch (err) {
 | 
						|
    return null;
 | 
						|
  }
 | 
						|
}
 |