summaryrefslogtreecommitdiff
path: root/hscript/user.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hscript/user.hh')
-rw-r--r--hscript/user.hh14
1 files changed, 11 insertions, 3 deletions
diff --git a/hscript/user.hh b/hscript/user.hh
index 39a3eea..9bb1bd7 100644
--- a/hscript/user.hh
+++ b/hscript/user.hh
@@ -18,16 +18,24 @@
namespace Horizon {
namespace Keys {
-class RootPassphrase : public Key {
+class RootPassphrase : public StringKey {
+private:
+ RootPassphrase(int _line, const std::string my_pw) :
+ StringKey(_line, my_pw) {}
+public:
+ static Key *parseFromData(const std::string data, int lineno, int *errors,
+ int *warnings);
+ bool validate() const override;
+ bool execute() const override;
};
-class Username : public Key {
+class Username : public StringKey {
};
class UserAlias : public Key {
};
-class UserPassphrase : public Key {
+class UserPassphrase : public StringKey {
};
class UserIcon : public Key {