mirror of
https://github.com/vgough/encfs.git
synced 2025-08-15 16:32:30 +02:00
reformat with clang-format -style=Google
git-svn-id: http://encfs.googlecode.com/svn/trunk@121 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
@ -15,8 +15,7 @@ static const char NAME_BLOWFISH_CBC[] = "Blowfish/CBC";
|
||||
|
||||
// BlockCipher is a StreamCipher with a block size.
|
||||
// Encryption and decryption must be in multiples of the block size.
|
||||
class BlockCipher : public StreamCipher
|
||||
{
|
||||
class BlockCipher : public StreamCipher {
|
||||
public:
|
||||
DECLARE_REGISTERABLE_TYPE(BlockCipher);
|
||||
|
||||
@ -25,9 +24,9 @@ class BlockCipher : public StreamCipher
|
||||
|
||||
// Not valid until a key has been set, as they key size may determine the
|
||||
// block size.
|
||||
virtual int blockSize() const =0;
|
||||
virtual int blockSize() const = 0;
|
||||
};
|
||||
|
||||
} // namespace encfs
|
||||
|
||||
#endif // BLOCKCIPHER_H
|
||||
#endif // BLOCKCIPHER_H
|
||||
|
Reference in New Issue
Block a user