From 040c11f73276a919a0b16937bb4cc93b338b98c9 Mon Sep 17 00:00:00 2001 From: Andrey Meshkov Date: Mon, 17 Dec 2018 02:35:25 +0300 Subject: [PATCH] golint issues 2 --- dnscrypt.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dnscrypt.go b/dnscrypt.go index 59ba068..0a6cc0e 100644 --- a/dnscrypt.go +++ b/dnscrypt.go @@ -24,11 +24,11 @@ import ( type CryptoConstruction uint16 const ( - // Default value for empty CertInfo only + // UndefinedConstruction is the default value for empty CertInfo only UndefinedConstruction CryptoConstruction = iota - // Salsa20Poly1305 encryption + // XSalsa20Poly1305 encryption XSalsa20Poly1305 - // Chacha20Poly1305 encryption + // XChacha20Poly1305 encryption XChacha20Poly1305 )