From c5b09122a932ee65a542186a539e37500d29d9a8 Mon Sep 17 00:00:00 2001 From: Steve Briskin Date: Sat, 9 Mar 2024 13:06:43 -0500 Subject: [PATCH] lower key complexity to 2048 --- rpc/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/server.go b/rpc/server.go index 67fadfc5..3931539f 100644 --- a/rpc/server.go +++ b/rpc/server.go @@ -42,7 +42,7 @@ import ( ) const ( - generatedRSAKeyBits = 4096 + generatedRSAKeyBits = 2048 mDNSerr = "mDNS setup failed; continuing with mDNS disabled" healthCheckMethod = "/grpc.health.v1.Health/Check" healthWatchMethod = "/grpc.health.v1.Health/Watch"