import { x25519 } from 'bcrypto'; import { Buffer } from "buffer"; import Wrap from 'it-pb-rpc'; import { Handshake } from "./handshake"; import { generateKeypair } from "./utils"; import { decryptStreams, encryptStreams } from "./crypto"; import { bytes } from "./@types/basic"; import { NoiseConnection, PeerId, KeyPair, SecureOutbound } from "./@types/libp2p"; import { Duplex } from "./@types/it-pair"; export type WrappedConnection = ReturnType; export class Noise implements NoiseConnection { public protocol = "/noise"; private readonly privateKey: bytes; private readonly staticKeys: KeyPair; private readonly earlyData?: bytes; constructor(privateKey: bytes, staticNoiseKey?: bytes, earlyData?: bytes) { this.privateKey = privateKey; this.earlyData = earlyData; if (staticNoiseKey) { const publicKey = x25519.publicKeyCreate(staticNoiseKey); this.staticKeys = { privateKey: staticNoiseKey, publicKey, } } else { this.staticKeys = generateKeypair(); } } /** * Encrypt outgoing data to the remote party (handshake as initiator) * @param {PeerId} localPeer - PeerId of the receiving peer * @param connection - streaming iterable duplex that will be encrypted * @param {PeerId} remotePeer - PeerId of the remote peer. Used to validate the integrity of the remote peer. * @returns {Promise} */ public async secureOutbound(localPeer: PeerId, connection: any, remotePeer: PeerId) : Promise { const wrappedConnection = Wrap(connection); const remotePublicKey = Buffer.from(remotePeer.pubKey); const session = await this.createSecureConnection(wrappedConnection, remotePublicKey, true); return { conn: session, remotePeer, } } /** * Decrypt incoming data (handshake as responder). * @param {PeerId} localPeer - PeerId of the receiving peer. * @param connection - streaming iterable duplex that will be encryption. * @param {PeerId} remotePeer - optional PeerId of the initiating peer, if known. This may only exist during transport upgrades. * @returns {Promise} */ // tslint:disable-next-line public async secureInbound(localPeer: PeerId, connection: any, remotePeer: PeerId) : Promise { return { conn: undefined, remotePeer } } private async createSecureConnection( connection: WrappedConnection, remotePublicKey: bytes, isInitiator: boolean, ) : Promise { const prologue = Buffer.from(this.protocol); const handshake = new Handshake('XX', remotePublicKey, prologue, this.staticKeys, connection); const session = await handshake.propose(isInitiator, this.earlyData); await handshake.exchange(isInitiator, session); await handshake.finish(isInitiator, session); return await encryptStreams(connection, session); } }