// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_APDU_APDU_RESPONSE_H_ #define COMPONENTS_APDU_APDU_RESPONSE_H_ #include <stdint.h> #include <optional> #include <vector> #include "base/component_export.h" #include "base/containers/span.h" #include "base/gtest_prod_util.h" namespace apdu { // APDU responses are defined as part of ISO 7816-4. Serialized responses // consist of a data field of varying length, up to a maximum 65536, and a // two byte status field. class COMPONENT_EXPORT(APDU) ApduResponse { … }; } // namespace apdu #endif // COMPONENTS_APDU_APDU_RESPONSE_H_