mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 16:03:34 +01:00
17 lines
143 B
C++
17 lines
143 B
C++
|
#include "cipher/PBKDF.h"
|
||
|
|
||
|
namespace encfs {
|
||
|
|
||
|
DEFINE_REGISTERABLE_TYPE(PBKDF)
|
||
|
|
||
|
PBKDF::PBKDF()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
PBKDF::~PBKDF()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
} // namespace encfs
|
||
|
|