mirror of
https://pdfium.googlesource.com/pdfium
synced 2026-07-31 04:29:37 +08:00
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>
16 lines
401 B
C++
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_
|