diff options
| author | Eric Biggers <ebiggers@google.com> | 2022-10-18 10:02:50 -0700 |
|---|---|---|
| committer | Eric Biggers <ebiggers3@gmail.com> | 2022-10-19 20:45:51 -0700 |
| commit | 632d66d6fddfa9fd0a279a1811ced1efc567be29 (patch) | |
| tree | 45db05d08411d8542b34f752df8db1331dda97cc /metadata/metadata.proto | |
| parent | 5d9198ff97c2fc600743d57719dd6b1d77bc6d3c (diff) | |
Add support for AES_256_HCTR2 filenames encryption
Support for AES_256_HCTR2 filenames encryption was added in kernel
version 6.0. The kernel doesn't yet support AES_256_HCTR2 for contents
encryption.
Diffstat (limited to 'metadata/metadata.proto')
| -rw-r--r-- | metadata/metadata.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/metadata/metadata.proto b/metadata/metadata.proto index 429e8c7..13e4785 100644 --- a/metadata/metadata.proto +++ b/metadata/metadata.proto @@ -75,6 +75,7 @@ message EncryptionOptions { AES_128_CBC = 5; AES_128_CTS = 6; Adiantum = 9; + AES_256_HCTR2 = 10; } Mode contents = 2; |