Hello, I'm trying to use QxtBlowfish in order to encrypt data, but it just doesn't work. Even with documentation's example.

Qt Code:
  1. QxtBlowfish fish;
  2. fish.setKey("foobar");
  3. QByteArray data("barblah");
  4. data = fish.encrypt(data);
  5. qDebug() << data << data.length();
  6. data = fish.decrypt(data);
  7. qDebug() << data << data.length();
To copy to clipboard, switch view to plain text mode 

This code compiles, but will output :

"" 0
"" 0

So it looks like it doesn't work at all... Any idea?

Thank you in advance.