libgocryptfs/test.bash
Jakob Unterwurzacher 902babdf22 Refactor ciphertext <-> plaintext offset translation functions
Move all the intelligence into the new file address_translation.go.
That the calculations were spread out too much became apparent when adding
the file header. This should make the code much easier to modify in the
future.
2015-11-01 12:11:36 +01:00

12 lines
79 B
Bash
Executable File

#!/bin/bash
set -eux
for i in ./cryptfs .
do
go build $i
go test $i
done