Lei Zhang 37935952b7 Move third_party/base/span.h to core/fxcrt
Fix some GN build rules to make the build work after moving.

Bug: pdfium:2127
Change-Id: Ic8cf0860dc5df8a510ecb34de1ffd10514d86c26
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/116650
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Thomas Sepez <tsepez@google.com>
Commit-Queue: Lei Zhang <thestig@chromium.org>
2024-02-16 04:39:56 +00:00

16 lines
401 B
C++

// Copyright 2019 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TESTING_UTILS_HASH_H_
#define TESTING_UTILS_HASH_H_
#include <string>
#include "core/fxcrt/span.h"
std::string CryptToBase16(const uint8_t* digest);
std::string GenerateMD5Base16(pdfium::span<const uint8_t> data);
#endif // TESTING_UTILS_HASH_H_