mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 16:03:34 +01:00
7e95ff90c8
git-svn-id: http://encfs.googlecode.com/svn/trunk@95 db9cf616-1c43-0410-9cb8-a902689de0d6
17 lines
186 B
C++
17 lines
186 B
C++
#include "cipher/StreamCipher.h"
|
|
|
|
namespace encfs {
|
|
|
|
DEFINE_REGISTERABLE_TYPE(StreamCipher);
|
|
|
|
StreamCipher::StreamCipher()
|
|
{
|
|
}
|
|
|
|
StreamCipher::~StreamCipher()
|
|
{
|
|
}
|
|
|
|
} // namespace encfs
|
|
|