From c03fc46a5150715bf6aee20ce4b89d9704141220 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Thu, 10 Nov 2016 23:32:51 +0100 Subject: ctlsock: implement EncryptPath for reverse mode, add tests --- internal/fusefrontend/ctlsock_interface.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/fusefrontend') diff --git a/internal/fusefrontend/ctlsock_interface.go b/internal/fusefrontend/ctlsock_interface.go index c22dce6..619d747 100644 --- a/internal/fusefrontend/ctlsock_interface.go +++ b/internal/fusefrontend/ctlsock_interface.go @@ -14,6 +14,6 @@ func (fs *FS) EncryptPath(plainPath string) (string, error) { } // DecryptPath implements ctlsock.Backend -func (fs *FS) DecryptPath(plainPath string) (string, error) { - return "", errors.New("Not implemented") +func (fs *FS) DecryptPath(cipherPath string) (string, error) { + return "", errors.New("not implemented (yet?)") } -- cgit v1.2.3