libgocryptfs/pathfs_frontend/args.go
Jakob Unterwurzacher 1caa925868 Increase GCM IV size from 96 to 128 bits
This pushes back the birthday bound for collisions to make it virtually
irrelevant.
2015-12-19 15:02:29 +01:00

13 lines
271 B
Go

package pathfs_frontend
// Container for arguments that are passed from main() to pathfs_frontend
type Args struct {
Masterkey []byte
Cipherdir string
OpenSSL bool
PlaintextNames bool
DirIV bool
EMENames bool
GCMIV128 bool
}