blob: 8c8be39b31a03bd4e3388548ef31b270f6f1f909 [file] [log] [blame]
// 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_AUTHENTICATOR_GET_ASSERTION_RESPONSE_H_
#define DEVICE_FIDO_AUTHENTICATOR_GET_ASSERTION_RESPONSE_H_
#include <stdint.h>
#include <array>
#include <vector>
#include "base/component_export.h"
#include "base/optional.h"
#include "device/fido/authenticator_data.h"
#include "device/fido/fido_constants.h"
#include "device/fido/public_key_credential_descriptor.h"
#include "device/fido/public_key_credential_user_entity.h"
namespace device {
// Represents response from authenticators for AuthenticatorGetAssertion and
// AuthenticatorGetNextAssertion requests.
// https://fidoalliance.org/specs/fido-v2.0-rd-20170927/fido-client-to-authenticator-protocol-v2.0-rd-20170927.html#authenticatorGetAssertion
class COMPONENT_EXPORT(DEVICE_FIDO) AuthenticatorGetAssertionResponse {
public:
AuthenticatorGetAssertionResponse(const AuthenticatorGetAssertionResponse&) =
delete;
AuthenticatorGetAssertionResponse& operator=(
const AuthenticatorGetAssertionResponse&) = delete;
static base::Optional<AuthenticatorGetAssertionResponse>
CreateFromU2fSignResponse(
base::span<const uint8_t, kRpIdHashLength> relying_party_id_hash,
base::span<const uint8_t> u2f_data,
base::span<const uint8_t> key_handle);
AuthenticatorGetAssertionResponse(AuthenticatorData authenticator_data,
std::vector<uint8_t> signature);
AuthenticatorGetAssertionResponse(AuthenticatorGetAssertionResponse&& that);
AuthenticatorGetAssertionResponse& operator=(
AuthenticatorGetAssertionResponse&& other);
~AuthenticatorGetAssertionResponse();
AuthenticatorData authenticator_data;
base::Optional<PublicKeyCredentialDescriptor> credential;
std::vector<uint8_t> signature;
base::Optional<PublicKeyCredentialUserEntity> user_entity;
base::Optional<uint8_t> num_credentials;
// hmac_secret contains the output of the hmac_secret extension.
base::Optional<std::vector<uint8_t>> hmac_secret;
// hmac_secret_not_evaluated will be true in cases where the
// |FidoAuthenticator| was unable to process the extension, even though it
// supports hmac_secret in general. This is intended for a case of Windows,
// where some versions of webauthn.dll can only express the extension for
// makeCredential, not getAssertion.
bool hmac_secret_not_evaluated = false;
// The large blob key associated to the credential. This value is only
// returned if the assertion request contains the largeBlobKey extension on a
// capable authenticator and the credential has an associated large blob key.
base::Optional<std::array<uint8_t, kLargeBlobKeyLength>> large_blob_key;
// The large blob associated with the credential.
base::Optional<std::vector<uint8_t>> large_blob;
// Whether a large blob was successfully written as part of this GetAssertion
// request.
bool large_blob_written = false;
};
} // namespace device
#endif // DEVICE_FIDO_AUTHENTICATOR_GET_ASSERTION_RESPONSE_H_