| // Copyright 2015 The Weave Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef LIBWEAVE_SRC_PRIVET_SECURITY_DELEGATE_H_ |
| #define LIBWEAVE_SRC_PRIVET_SECURITY_DELEGATE_H_ |
| |
| #include <memory> |
| #include <set> |
| #include <string> |
| |
| #include <base/time/time.h> |
| |
| #include "src/privet/privet_types.h" |
| |
| namespace weave { |
| namespace privet { |
| |
| // Interface to provide Security related logic for |PrivetHandler|. |
| class SecurityDelegate { |
| public: |
| virtual ~SecurityDelegate() {} |
| |
| // Creates access token for the given scope, user id and |time|. |
| virtual std::string CreateAccessToken(const UserInfo& user_info) = 0; |
| |
| // Validates |token| and returns scope and user id parsed from that. |
| virtual UserInfo ParseAccessToken(const std::string& token, |
| base::Time* time) const = 0; |
| |
| // Returns list of pairing methods by device. |
| virtual std::set<PairingType> GetPairingTypes() const = 0; |
| |
| // Returns list of crypto methods supported by devices. |
| virtual std::set<CryptoType> GetCryptoTypes() const = 0; |
| |
| // Returns Root Client Authorization Token. |
| virtual std::string ClaimRootClientAuthToken() = 0; |
| |
| // Confirms pending pending token claim or checks that token is valid for the |
| // active secret. |
| virtual bool ConfirmAuthToken(const std::string& token) = 0; |
| |
| // Returns true if |auth_code| provided by client is valid. Client should |
| // obtain |auth_code| during pairing process. |
| virtual bool IsValidPairingCode(const std::string& auth_code) const = 0; |
| |
| virtual bool StartPairing(PairingType mode, |
| CryptoType crypto, |
| std::string* session_id, |
| std::string* device_commitment, |
| ErrorPtr* error) = 0; |
| |
| virtual bool ConfirmPairing(const std::string& session_id, |
| const std::string& client_commitment, |
| std::string* fingerprint, |
| std::string* signature, |
| ErrorPtr* error) = 0; |
| |
| virtual bool CancelPairing(const std::string& session_id, |
| ErrorPtr* error) = 0; |
| }; |
| |
| } // namespace privet |
| } // namespace weave |
| |
| #endif // LIBWEAVE_SRC_PRIVET_SECURITY_DELEGATE_H_ |