forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopaque_attestation_statement.h
37 lines (27 loc) · 1.14 KB
/
opaque_attestation_statement.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
// Copyright 2018 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_OPAQUE_ATTESTATION_STATEMENT_H_
#define DEVICE_FIDO_OPAQUE_ATTESTATION_STATEMENT_H_
#include <string>
#include "base/component_export.h"
#include "base/macros.h"
#include "components/cbor/cbor_values.h"
#include "device/fido/attestation_statement.h"
namespace device {
// https://www.w3.org/TR/2017/WD-webauthn-20170505/#fido-u2f-attestation
class COMPONENT_EXPORT(DEVICE_FIDO) OpaqueAttestationStatement
: public AttestationStatement {
public:
OpaqueAttestationStatement(std::string attestation_format,
cbor::CBORValue attestation_statement_map);
~OpaqueAttestationStatement() override;
// AttestationStatement:
cbor::CBORValue::MapValue GetAsCBORMap() const override;
bool IsAttestationCertificateInappropriatelyIdentifying() override;
private:
cbor::CBORValue attestation_statement_map_;
DISALLOW_COPY_AND_ASSIGN(OpaqueAttestationStatement);
};
} // namespace device
#endif // DEVICE_FIDO_OPAQUE_ATTESTATION_STATEMENT_H_