js-libp2p-noise/src/index.ts

8 lines
202 B
TypeScript
Raw Normal View History

2020-02-07 13:06:42 +01:00
import {Noise} from "./noise";
2019-11-20 13:23:36 +01:00
export * from "./noise";
2020-02-07 13:06:42 +01:00
/**
* Default configuration, it will generate new noise static key and enable noise pipes (IK handshake).
*/
export const NOISE = new Noise();