diff options
Diffstat (limited to 'plugins/crypto-vala')
-rw-r--r-- | plugins/crypto-vala/src/cipher.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/crypto-vala/src/cipher.vala b/plugins/crypto-vala/src/cipher.vala index 4a97ec25..306dafa8 100644 --- a/plugins/crypto-vala/src/cipher.vala +++ b/plugins/crypto-vala/src/cipher.vala @@ -40,7 +40,7 @@ public class SymmetricCipher { case "POLY1305": return GCrypt.Cipher.Mode.POLY1305; case "OCB": return GCrypt.Cipher.Mode.OCB; case "CFB8": return GCrypt.Cipher.Mode.CFB8; - case "XTS": return GCrypt.Cipher.Mode.XTS; + // case "XTS": return GCrypt.Cipher.Mode.XTS; // Not supported in gcrypt < 1.8 } return GCrypt.Cipher.Mode.NONE; } @@ -149,4 +149,4 @@ public class SymmetricCipher { may_throw_gcrypt_error(cipher.sync()); } } -}
\ No newline at end of file +} |