aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-09-25 18:56:23 +0200
committerJakob Unterwurzacher2016-09-25 18:56:23 +0200
commitc7b3150afc26a6992c6059002c84b1afc236f663 (patch)
treea1ec4b0261d4949e7fdee5e2f4da95335c18da54 /internal
parentabd61d968d80a54b366bf65b9dc1fcf2c5bfa1e1 (diff)
nametransform: delete unused function DecryptPathDirIV
Diffstat (limited to 'internal')
-rw-r--r--internal/fusefrontend/names.go10
-rw-r--r--internal/nametransform/diriv.go24
-rw-r--r--internal/nametransform/names.go2
3 files changed, 0 insertions, 36 deletions
diff --git a/internal/fusefrontend/names.go b/internal/fusefrontend/names.go
index 54b41ae..3833479 100644
--- a/internal/fusefrontend/names.go
+++ b/internal/fusefrontend/names.go
@@ -50,13 +50,3 @@ func (fs *FS) encryptPath(plainPath string) (string, error) {
fs.dirIVLock.RUnlock()
return cPath, err
}
-
-// decryptPath - decrypt relative ciphertext path
-func (fs *FS) decryptPath(cipherPath string) (string, error) {
- if fs.args.PlaintextNames {
- return cipherPath, nil
- }
- fs.dirIVLock.RLock()
- defer fs.dirIVLock.RUnlock()
- return fs.nameTransform.DecryptPathDirIV(cipherPath, fs.args.Cipherdir)
-}
diff --git a/internal/nametransform/diriv.go b/internal/nametransform/diriv.go
index 66548f1..9c3c1d1 100644
--- a/internal/nametransform/diriv.go
+++ b/internal/nametransform/diriv.go
@@ -123,27 +123,3 @@ func (be *NameTransform) EncryptPathDirIV(plainPath string, rootDir string) (cip
be.DirIVCache.store(parentDir, iv, cParentDir)
return cipherPath, nil
}
-
-// DecryptPathDirIV - decrypt path using EME with DirIV
-//
-// TODO This has only a single user, Readlink(), and only for compatability with
-// gocryptfs v0.5. Drop?
-func (be *NameTransform) DecryptPathDirIV(encryptedPath string, rootDir string) (string, error) {
- var wd = rootDir
- var plainNames []string
- encryptedNames := strings.Split(encryptedPath, "/")
- tlog.Debug.Printf("DecryptPathDirIV: decrypting %v\n", encryptedNames)
- for _, encryptedName := range encryptedNames {
- iv, err := ReadDirIV(wd)
- if err != nil {
- return "", err
- }
- plainName, err := be.DecryptName(encryptedName, iv)
- if err != nil {
- return "", err
- }
- plainNames = append(plainNames, plainName)
- wd = filepath.Join(wd, encryptedName)
- }
- return filepath.Join(plainNames...), nil
-}
diff --git a/internal/nametransform/names.go b/internal/nametransform/names.go
index 4df3430..458c2b9 100644
--- a/internal/nametransform/names.go
+++ b/internal/nametransform/names.go
@@ -26,8 +26,6 @@ func New(c *cryptocore.CryptoCore, longNames bool) *NameTransform {
}
// DecryptName - decrypt base64-encoded encrypted filename "cipherName"
-// Used by DecryptPathDirIV().
-// The encryption is either CBC or EME, depending on "useEME".
//
// This function is exported because it allows for a very efficient readdir
// implementation (read IV once, decrypt all names using this function).