vendor: import KillerPDF 1.7.5 source (GPL-3.0) as the base for MMD PDF

This commit is contained in:
2026-08-27 06:58:22 +02:00
commit 532485a830
577 changed files with 149058 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
namespace KillerPDF
{
/// <summary>
/// Build-time constants written or verified by release.ps1.
/// </summary>
internal static class BuildInfo
{
/// <summary>
/// SHA256 of pdfium.dll (original bytes, before Costura compression).
/// Updated by release.ps1 immediately before each build.
/// All-zeros means the check is disabled (dev / SkipSign builds).
/// </summary>
internal const string PdfiumSha256 = "BCA96944D731DD72877116D3472083C847FE307FC58CA39BCE16CBE998C478F1";
internal const string PdfiumSha256Disabled = "0000000000000000000000000000000000000000000000000000000000000000";
}
}