From 8f820c429d88f601ba6c7a614fef23b7f53eb489 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sat, 4 Sep 2021 11:58:43 +0200 Subject: stupidgcm: fix without_openssl build $ ./build-without-openssl.bash internal/speed/speed.go:152:14: undefined: stupidgcm.NewXchacha20poly1305 --- internal/stupidgcm/without_openssl.go | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) (limited to 'internal/stupidgcm/without_openssl.go') diff --git a/internal/stupidgcm/without_openssl.go b/internal/stupidgcm/without_openssl.go index 4a14e73..81bae07 100644 --- a/internal/stupidgcm/without_openssl.go +++ b/internal/stupidgcm/without_openssl.go @@ -6,6 +6,8 @@ import ( "fmt" "os" + "crypto/cipher" + "github.com/rfjakob/gocryptfs/v2/internal/exitcodes" ) @@ -21,32 +23,12 @@ func errExit() { os.Exit(exitcodes.OpenSSL) } -func New(_ []byte, _ bool) *StupidGCM { - errExit() - // Never reached - return &StupidGCM{} -} - -func (g *StupidGCM) NonceSize() int { - errExit() - return -1 -} - -func (g *StupidGCM) Overhead() int { - errExit() - return -1 -} - -func (g *StupidGCM) Seal(_, _, _, _ []byte) []byte { +func New(_ []byte, _ bool) cipher.AEAD { errExit() return nil } -func (g *StupidGCM) Open(_, _, _, _ []byte) ([]byte, error) { - errExit() - return nil, nil -} - -func (g *StupidGCM) Wipe() { +func NewXchacha20poly1305(_ []byte) cipher.AEAD { errExit() + return nil } -- cgit v1.2.3