| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_H | 5 #ifndef COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_H |
| 6 #define COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_H | 6 #define COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_H |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "components/proximity_auth/cryptauth/proto/cryptauth_api.pb.h" | 12 #include "components/proximity_auth/cryptauth/proto/cryptauth_api.pb.h" |
| 13 | 13 |
| 14 namespace proximity_auth { | 14 namespace cryptauth { |
| 15 | 15 |
| 16 // Interface for enrolling a device with CryptAuth. | 16 // Interface for enrolling a device with CryptAuth. |
| 17 class CryptAuthEnroller { | 17 class CryptAuthEnroller { |
| 18 public: | 18 public: |
| 19 virtual ~CryptAuthEnroller() {} | 19 virtual ~CryptAuthEnroller() {} |
| 20 | 20 |
| 21 // Enrolls the device: | 21 // Enrolls the device: |
| 22 // |user_public_key|: The user's persistent public key identifying the device. | 22 // |user_public_key|: The user's persistent public key identifying the device. |
| 23 // |user_private_key|: The corresponding private key to |user_public_key|. | 23 // |user_private_key|: The corresponding private key to |user_public_key|. |
| 24 // |device_info|: Contains information about the local device. Note that the | 24 // |device_info|: Contains information about the local device. Note that the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 // Interface for creating CryptAuthEnroller instances. | 37 // Interface for creating CryptAuthEnroller instances. |
| 38 class CryptAuthEnrollerFactory { | 38 class CryptAuthEnrollerFactory { |
| 39 public: | 39 public: |
| 40 virtual ~CryptAuthEnrollerFactory() {} | 40 virtual ~CryptAuthEnrollerFactory() {} |
| 41 | 41 |
| 42 virtual std::unique_ptr<CryptAuthEnroller> CreateInstance() = 0; | 42 virtual std::unique_ptr<CryptAuthEnroller> CreateInstance() = 0; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace proximity_auth | 45 } // namespace cryptauth |
| 46 | 46 |
| 47 #endif // COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_H | 47 #endif // COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_ENROLLER_H |
| OLD | NEW |