diff options
| author | Eric Biggers <ebiggers@google.com> | 2021-01-25 11:12:01 -0800 |
|---|---|---|
| committer | Eric Biggers <ebiggers3@gmail.com> | 2021-01-25 11:38:55 -0800 |
| commit | 634f57465048c698381513cdc2ee205d4f04e538 (patch) | |
| tree | 26e3d226a8cbe88a8b339e2c4416dfc6b4b17427 /metadata | |
| parent | 99ef2db47957ed986c945574e6133abab8d76d45 (diff) | |
Avoid using the word "whitelist"
Diffstat (limited to 'metadata')
| -rw-r--r-- | metadata/policy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metadata/policy.go b/metadata/policy.go index 76c2e6f..e218a08 100644 --- a/metadata/policy.go +++ b/metadata/policy.go @@ -205,7 +205,7 @@ func shouldUseDirectKeyFlag(options *EncryptionOptions) bool { if options.Contents != options.Filenames { return false } - // Whitelist the modes that take a 24+ byte IV (enough room for the per-file nonce) + // Currently only Adiantum supports DIRECT_KEY. return options.Contents == EncryptionOptions_Adiantum } |