diff options
author | Jakob Unterwurzacher | 2015-11-27 23:34:55 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-11-28 18:38:06 +0100 |
commit | fe7355f9ee4ae8e52a9b76202e90032d78824f21 (patch) | |
tree | ffa2eed00a684b9985a249654e72bba3f82710db /integration_tests/helpers.go | |
parent | b3d96b6a208e7679a0e7dc936d76bcec271ecddf (diff) |
diriv: use "DirIV" flag to discern and support mounting old filesystems
Diffstat (limited to 'integration_tests/helpers.go')
-rw-r--r-- | integration_tests/helpers.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/integration_tests/helpers.go b/integration_tests/helpers.go index 6fc65cf..bff4e5b 100644 --- a/integration_tests/helpers.go +++ b/integration_tests/helpers.go @@ -8,6 +8,8 @@ import ( "os" "os/exec" "testing" + + "github.com/rfjakob/gocryptfs/cryptfs" ) // Note: the code assumes that all have a trailing slash @@ -38,8 +40,7 @@ func resetTmpDir() { fmt.Println(err) os.Exit(1) } - dirIV := make([]byte, 16) - err = ioutil.WriteFile(defaultCipherDir+"gocryptfs.diriv", dirIV, 0444) + err = cryptfs.WriteDirIV(defaultCipherDir) if err != nil { fmt.Println(err) os.Exit(1) |