diff --git a/lib/src/internal/consts.dart b/lib/src/internal/consts.dart index 5e307d9..1f6aee7 100644 --- a/lib/src/internal/consts.dart +++ b/lib/src/internal/consts.dart @@ -8,12 +8,16 @@ enum Cipher { /// Support since kdbx 4. chaCha20, + + /// Not Supported, just recognized + twoFish } class CryptoConsts { static const CIPHER_IDS = { Cipher.aes: KdbxUuid('McHy5r9xQ1C+WAUhavxa/w=='), Cipher.chaCha20: KdbxUuid('1gOKK4tvTLWlJDOaMdu1mg=='), + Cipher.twoFish: KdbxUuid('rWjyn1dvS7mjatR6+WU0bA=='), }; static final cipherByUuid = CIPHER_IDS.map((key, value) => MapEntry(value, key));