forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappid_exclude_probe_task.h
63 lines (50 loc) · 2.14 KB
/
appid_exclude_probe_task.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright 2021 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_FIDO_APPID_EXCLUDE_PROBE_TASK_H_
#define DEVICE_FIDO_APPID_EXCLUDE_PROBE_TASK_H_
#include <vector>
#include "base/callback.h"
#include "base/memory/weak_ptr.h"
#include "device/fido/authenticator_get_assertion_response.h"
#include "device/fido/ctap_get_assertion_request.h"
#include "device/fido/ctap_make_credential_request.h"
#include "device/fido/device_operation.h"
#include "device/fido/fido_constants.h"
#include "device/fido/fido_task.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
namespace device {
// AppIdExcludeProbeTask sends CTAP2 getAssertion commands with up=false to
// probe whether any of the excluded credential IDs from the given
// |CtapMakeCredentialRequest| are recognised when the RP ID is set to the
// AppID from the appidExclude extension.
class AppIdExcludeProbeTask : public FidoTask {
public:
using Callback =
base::OnceCallback<void(CtapDeviceResponseCode, absl::optional<bool>)>;
AppIdExcludeProbeTask(FidoDevice* device,
CtapMakeCredentialRequest request,
MakeCredentialOptions options,
Callback callback);
~AppIdExcludeProbeTask() override;
private:
// FidoTask:
void Cancel() override;
void StartTask() override;
void NextSilentSignOperation();
void HandleResponseToSilentSignRequest(
CtapDeviceResponseCode response_code,
absl::optional<AuthenticatorGetAssertionResponse> response_data);
const CtapMakeCredentialRequest request_;
const MakeCredentialOptions options_;
Callback callback_;
bool canceled_ = false;
std::vector<std::vector<PublicKeyCredentialDescriptor>> exclude_list_batches_;
size_t current_exclude_list_batch_ = 0;
std::unique_ptr<DeviceOperation<CtapGetAssertionRequest,
AuthenticatorGetAssertionResponse>>
silent_sign_operation_;
base::WeakPtrFactory<AppIdExcludeProbeTask> weak_factory_{this};
};
} // namespace device
#endif // DEVICE_FIDO_APPID_EXCLUDE_PROBE_TASK_H_