Home | History | Annotate | Download | only in auth

Lines Matching refs:string

8 #include <string>
34 explicit Key(const std::string& plain_text_password);
35 Key(KeyType key_type, const std::string& salt, const std::string& secret);
41 const std::string& GetSecret() const;
42 const std::string& GetLabel() const;
44 void SetLabel(const std::string& label);
48 void Transform(KeyType target_key_type, const std::string& salt);
52 std::string salt_;
53 std::string secret_;
54 std::string label_;