2013-03-05 07:32:27 +01:00
|
|
|
#include "cipher/StreamCipher.h"
|
|
|
|
|
|
|
|
namespace encfs {
|
|
|
|
|
2013-03-05 07:36:32 +01:00
|
|
|
DEFINE_REGISTERABLE_TYPE(StreamCipher);
|
2013-03-05 07:32:27 +01:00
|
|
|
|
|
|
|
StreamCipher::StreamCipher()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
StreamCipher::~StreamCipher()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace encfs
|
|
|
|
|