Indentation

This commit is contained in:
Leonetienne 2022-05-22 17:32:54 +02:00
parent 91819c9723
commit cd119f21bb
No known key found for this signature in database
GPG Key ID: C33879CD92E9708C
3 changed files with 217 additions and 217 deletions

View File

@ -7,11 +7,11 @@
namespace Leonetienne::GCrypt { namespace Leonetienne::GCrypt {
GCipher::GCipher(const Key& key, const DIRECTION direction) GCipher::GCipher(const Key& key, const DIRECTION direction) :
:
direction { direction }, direction { direction },
lastBlock(InitializationVector(key)), // Initialize our lastBlock with some deterministic initial value, based on the key lastBlock(InitializationVector(key)), // Initialize our lastBlock with some deterministic initial value, based on the key
feistel(key) { feistel(key)
{
return; return;
} }