summaryrefslogtreecommitdiff
path: root/lib/crypto
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2018-02-27 22:38:29 +0000
committerChris Wilson <chris+github@qwirx.com>2018-02-27 22:38:29 +0000
commitd3da41380064015add8ffc16c91dbfa57cbd954b (patch)
treefe86bde5e04f7fd66acd3de142e455e54bac7129 /lib/crypto
parentbc48bec97b65534966da74a07ed3edb3f13f6263 (diff)
Add a test that we can setup Blowfish encryption properly
Diffstat (limited to 'lib/crypto')
-rw-r--r--lib/crypto/CipherBlowfish.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/CipherBlowfish.h b/lib/crypto/CipherBlowfish.h
index 152a265c..1894e2ac 100644
--- a/lib/crypto/CipherBlowfish.h
+++ b/lib/crypto/CipherBlowfish.h
@@ -41,7 +41,7 @@ public:
virtual std::string GetCipherName() const
{
std::ostringstream out;
- out << "AES";
+ out << "Blowfish";
out << mKeyLength;
return out.str();
}