Require libgcrypt >= 1.6.0.

Remove our own Salsa20 implementation as libgcrypt ships one
with that version.
This commit is contained in:
Felix Geyer 2015-07-22 23:40:26 +02:00
parent d81565df55
commit 60daa2b41b
11 changed files with 1 additions and 1109 deletions

View file

@ -44,10 +44,8 @@ int SymmetricCipherGcrypt::gcryptAlgo(SymmetricCipher::Algorithm algo)
case SymmetricCipher::Twofish:
return GCRY_CIPHER_TWOFISH;
#ifdef GCRYPT_HAS_SALSA20
case SymmetricCipher::Salsa20:
return GCRY_CIPHER_SALSA20;
#endif
default:
Q_ASSERT(false);