From 2b767e0b3e8c5f3b26d407bed7a0d4b2c7605036 Mon Sep 17 00:00:00 2001 From: qowevisa Date: Wed, 1 May 2024 17:20:13 +0300 Subject: [PATCH] Add ECDHConfig and types package --- types/security.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 types/security.go diff --git a/types/security.go b/types/security.go new file mode 100644 index 0000000..0a738fd --- /dev/null +++ b/types/security.go @@ -0,0 +1,6 @@ +package types + +type ECDHConfig struct { + UseDefaultBasepoint bool + CustomBasepoint []byte +}