From 04cfe9c03baa5691ebfad6e039e4f0acd74fd8e1 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 27 Apr 2018 04:15:33 +0200 Subject: Add local user storage function (locally stored encrypted user private key) --- src/LocalUser.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/LocalUser.cpp') diff --git a/src/LocalUser.cpp b/src/LocalUser.cpp index 660d09a..665f05d 100644 --- a/src/LocalUser.cpp +++ b/src/LocalUser.cpp @@ -2,10 +2,9 @@ namespace odhtdb { - LocalUser::LocalUser(const Signature::KeyPair &_keyPair, const std::string &name, Group *group, const std::string &_plainPassword) : + LocalUser::LocalUser(const Signature::KeyPair &_keyPair, const std::string &name, Group *group) : User(User::Type::LOCAL, name, group), - keyPair(_keyPair), - plainPassword(_plainPassword) + keyPair(_keyPair) { } -- cgit v1.2.3