Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1545)

Unified Diff: device/u2f/u2f_register.h

Issue 2821263005: Add U2F request state machines (Closed)
Patch Set: Call Start before adding devices Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/u2f/u2f_device.cc ('k') | device/u2f/u2f_register.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/u2f/u2f_register.h
diff --git a/device/u2f/u2f_register.h b/device/u2f/u2f_register.h
new file mode 100644
index 0000000000000000000000000000000000000000..466127ed44f12aab7155a0fe5f576a484eb486c7
--- /dev/null
+++ b/device/u2f/u2f_register.h
@@ -0,0 +1,37 @@
+// Copyright 2017 The Chromium 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 DEVICE_U2F_U2F_REGISTER_H_
+#define DEVICE_U2F_U2F_REGISTER_H_
+
+#include <vector>
+
+#include "u2f_request.h"
+
+namespace device {
+
+class U2fRegister : public U2fRequest {
+ public:
+ U2fRegister(const std::vector<uint8_t>& challenge_hash,
+ const std::vector<uint8_t>& app_param,
+ const ResponseCallback& cb);
+ ~U2fRegister() override;
+
+ static std::unique_ptr<U2fRequest> TryRegistration(
+ const std::vector<uint8_t>& challenge_hash,
+ const std::vector<uint8_t>& app_param,
+ const ResponseCallback& cb);
+
+ private:
+ void TryDevice() override;
+ void OnTryDevice(U2fReturnCode, std::vector<uint8_t>);
+
+ std::vector<uint8_t> challenge_hash_;
+ std::vector<uint8_t> app_param_;
+ base::WeakPtrFactory<U2fRegister> weak_factory_;
+};
+
+} // namespace device
+
+#endif // DEVICE_U2F_U2F_REGISTER_H_
« no previous file with comments | « device/u2f/u2f_device.cc ('k') | device/u2f/u2f_register.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698