// 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. #include "components/payments/content/utility/fingerprint_parser.h" #include "base/check.h" #include "base/numerics/safe_conversions.h" #include "base/strings/string_util.h" #include "base/strings/stringprintf.h" #include "components/payments/core/error_logger.h" namespace payments { namespace { bool IsUpperCaseHexDigit(char c) { … } uint8_t HexDigitToByte(char c) { … } } // namespace std::vector<uint8_t> FingerprintStringToByteArray(const std::string& input, const ErrorLogger& log) { … } } // namespace payments