diff options
author | Jakob Unterwurzacher | 2017-03-05 17:08:16 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-03-05 17:10:57 +0100 |
commit | 874e4fb5e911cc3654b4bd314f3bef764aa39b74 (patch) | |
tree | 10b397ef688c40bbc42b9a1112a10a4493a2a99e /internal/fusefrontend/args.go | |
parent | e032539e2c09cd4d1f007d33d7ef97b0fec689ed (diff) |
cryptocore: rename "BackendTypeEnum" -> "AEADTypeEnum"
There are two independent backends, one for name encryption,
the other one, AEAD, for file content.
"BackendTypeEnum" only applies to AEAD (file content), so make that
clear in the name.
Diffstat (limited to 'internal/fusefrontend/args.go')
-rw-r--r-- | internal/fusefrontend/args.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fusefrontend/args.go b/internal/fusefrontend/args.go index eb796cd..c111dbf 100644 --- a/internal/fusefrontend/args.go +++ b/internal/fusefrontend/args.go @@ -8,7 +8,7 @@ import ( type Args struct { Masterkey []byte Cipherdir string - CryptoBackend cryptocore.BackendTypeEnum + CryptoBackend cryptocore.AEADTypeEnum PlaintextNames bool LongNames bool // Should we chown a file after it has been created? |