blob: e711a8f3ba123f9c53b66b4ccbc4e7cd9437dc60 [file] [log] [blame]
// 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_ATTESTATION_OBJECT_H_
#define DEVICE_U2F_ATTESTATION_OBJECT_H_
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/macros.h"
#include "device/u2f/authenticator_data.h"
namespace device {
class AttestationStatement;
// Object containing the authenticator-provided attestation every time
// a credential is created, per
// https://www.w3.org/TR/2017/WD-webauthn-20170505/#cred-attestation.
class AttestationObject {
public:
AttestationObject(AuthenticatorData data,
std::unique_ptr<AttestationStatement> statement);
// Moveable.
AttestationObject(AttestationObject&& other);
AttestationObject& operator=(AttestationObject&& other);
~AttestationObject();
// Produces a CBOR-encoded byte-array in the following format:
// {"authData": authenticator data bytes,
// "fmt": attestation format name,
// "attStmt": attestation statement bytes }
std::vector<uint8_t> SerializeToCBOREncodedBytes() const;
private:
AuthenticatorData authenticator_data_;
std::unique_ptr<AttestationStatement> attestation_statement_;
DISALLOW_COPY_AND_ASSIGN(AttestationObject);
};
} // namespace device
#endif // DEVICE_U2F_ATTESTATION_OBJECT_H_