From 493d2901a928d71d63e5c5fee817c4e30b2a45bf Mon Sep 17 00:00:00 2001 From: Matija Petrunic Date: Fri, 10 Apr 2020 14:54:50 +0200 Subject: [PATCH] Set dump session keys to false --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index cfb43a0..e9a8ee6 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,6 +1,6 @@ export const NOISE_MSG_MAX_LENGTH_BYTES = 65535; export const NOISE_MSG_MAX_LENGTH_BYTES_WITHOUT_TAG = NOISE_MSG_MAX_LENGTH_BYTES - 16; -export const DUMP_SESSION_KEYS = true; +export const DUMP_SESSION_KEYS = false;