Files
TSpdf/TSpdf.tests/TSpdf.sign.tests/TSpdf/signatures/sign/PdfASigningTest.cs
2026-05-27 17:09:59 +02:00

194 lines
10 KiB
C#

/*
This file is part of the TSpdf (R) project.
Copyright (c) 1987-2023 TSpdf
Authors: TSpdf Software.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3
as published by the Free Software Foundation with the addition of the
following permission added to Section 15 as permitted in Section 7(a):
FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
TSpdf GROUP. TSpdf GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
OF THIRD PARTY RIGHTS
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program; if not, see http://www.gnu.org/licenses or write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA, 02110-1301 USA, or download the license from the following URL:
http://TSpdfpdf.com/terms-of-use/
The interactive user interfaces in modified source and object code versions
of this program must display Appropriate Legal Notices, as required under
Section 5 of the GNU Affero General Public License.
In accordance with Section 7(b) of the GNU Affero General Public License,
a covered work must retain the producer line in every PDF that is created
or manipulated using TSpdf.
You can be released from the requirements of the license by purchasing
a commercial license. Buying such a license is mandatory as soon as you
develop commercial activities involving the TSpdf software without
disclosing the source code of your own applications.
These activities include: offering paid services to customers as an ASP,
serving PDFs on the fly in a web application, shipping TSpdf with a closed
source product.
For more information, please contact TSpdf Software Corp. at this
address: sales@TSpdfpdf.com
*/
using System;
using System.Collections.Generic;
using System.IO;
using TSpdf.Commons.Bouncycastle.Cert;
using TSpdf.Commons.Bouncycastle.Crypto;
using TSpdf.Commons.Utils;
using TSpdf.Forms;
using TSpdf.Kernel.Font;
using TSpdf.Kernel.Geom;
using TSpdf.Kernel.Pdf;
using TSpdf.Kernel.Utils;
using TSpdf.Pdfa.Exceptions;
using TSpdf.Signatures;
using TSpdf.Signatures.Testutils;
using TSpdf.Test;
using TSpdf.Test.Pdfa;
namespace TSpdf.Signatures.Sign {
// Android-Conversion-Skip-Line (TODO DEVSIX-7377 introduce pdf\a validation on Android)
[NUnit.Framework.Category("BouncyCastleIntegrationTest")]
public class PdfASigningTest : ExtendedTSpdfTest {
public static readonly String sourceFolder = TSpdf.Test.TestUtil.GetParentProjectDirectory(NUnit.Framework.TestContext
.CurrentContext.TestDirectory) + "/resources/TSpdf/signatures/sign/PdfASigningTest/";
public static readonly String destinationFolder = NUnit.Framework.TestContext.CurrentContext.TestDirectory
+ "/test/TSpdf/signatures/sign/PdfASigningTest/";
public static readonly String keystorePath = TSpdf.Test.TestUtil.GetParentProjectDirectory(NUnit.Framework.TestContext
.CurrentContext.TestDirectory) + "/resources/TSpdf/signatures/certs/signCertRsa01.pem";
public static readonly char[] password = "testpassphrase".ToCharArray();
public static readonly String FONT = TSpdf.Test.TestUtil.GetParentProjectDirectory(NUnit.Framework.TestContext
.CurrentContext.TestDirectory) + "/resources/TSpdf/signatures/font/FreeSans.ttf";
private IX509Certificate[] chain;
private IPrivateKey pk;
[NUnit.Framework.OneTimeSetUp]
public static void Before() {
CreateOrClearDestinationFolder(destinationFolder);
}
[NUnit.Framework.SetUp]
public virtual void Init() {
pk = PemFileHelper.ReadFirstKey(keystorePath, password);
chain = PemFileHelper.ReadFirstChain(keystorePath);
}
[NUnit.Framework.Test]
public virtual void SimpleSigningTest() {
String src = sourceFolder + "simplePdfADocument.pdf";
String fileName = "simpleSignature.pdf";
String dest = destinationFolder + fileName;
int x = 36;
int y = 548;
int w = 200;
int h = 100;
Rectangle rect = new Rectangle(x, y, w, h);
String fieldName = "Signature1";
Sign(src, fieldName, dest, chain, pk, DigestAlgorithms.SHA256, PdfSigner.CryptoStandard.CADES, "Test 1", "TestCity"
, rect, false, false, PdfSigner.NOT_CERTIFIED, 12f);
NUnit.Framework.Assert.IsNull(new VeraPdfValidator().Validate(dest));
// Android-Conversion-Skip-Line (TODO DEVSIX-7377 introduce pdf\a validation on Android)
NUnit.Framework.Assert.IsNull(SignaturesCompareTool.CompareSignatures(dest, sourceFolder + "cmp_" + fileName
));
NUnit.Framework.Assert.IsNull(new CompareTool().CompareVisually(dest, sourceFolder + "cmp_" + fileName, destinationFolder
, "diff_", GetTestMap(new Rectangle(27, 550, 195, 40))));
}
[NUnit.Framework.Test]
public virtual void SigningPdfA2DocumentTest() {
String src = sourceFolder + "simplePdfA2Document.pdf";
String @out = destinationFolder + "signedPdfA2Document.pdf";
PdfReader reader = new PdfReader(new FileStream(src, FileMode.Open, FileAccess.Read));
PdfSigner signer = new PdfSigner(reader, new FileStream(@out, FileMode.Create), new StampingProperties());
signer.SetFieldLockDict(new PdfSigFieldLock());
signer.SetCertificationLevel(PdfSigner.CERTIFIED_NO_CHANGES_ALLOWED);
IExternalSignature pks = new PrivateKeySignature(pk, DigestAlgorithms.SHA256);
signer.SignDetached(pks, chain, null, null, null, 0, PdfSigner.CryptoStandard.CADES);
NUnit.Framework.Assert.IsNull(new VeraPdfValidator().Validate(@out));
}
// Android-Conversion-Skip-Line (TODO DEVSIX-7377 introduce pdf\a validation on Android)
[NUnit.Framework.Test]
public virtual void FailedSigningPdfA2DocumentTest() {
String src = sourceFolder + "simplePdfADocument.pdf";
String @out = destinationFolder + "signedPdfADocument2.pdf";
PdfReader reader = new PdfReader(new FileStream(src, FileMode.Open, FileAccess.Read));
PdfSigner signer = new PdfSigner(reader, new FileStream(@out, FileMode.Create), new StampingProperties());
signer.SetFieldLockDict(new PdfSigFieldLock());
signer.SetCertificationLevel(PdfSigner.NOT_CERTIFIED);
int x = 36;
int y = 548;
int w = 200;
int h = 100;
Rectangle rect = new Rectangle(x, y, w, h);
PdfFont font = PdfFontFactory.CreateFont("Helvetica", "WinAnsi", PdfFontFactory.EmbeddingStrategy.PREFER_EMBEDDED
);
PdfSignatureAppearance appearance = signer.GetSignatureAppearance().SetReason("pdfA test").SetLocation("TestCity"
).SetLayer2Font(font).SetReuseAppearance(false).SetPageRect(rect);
IExternalSignature pks = new PrivateKeySignature(pk, DigestAlgorithms.SHA256);
Exception e = NUnit.Framework.Assert.Catch(typeof(PdfAConformanceException), () => signer.SignDetached(pks
, chain, null, null, null, 0, PdfSigner.CryptoStandard.CADES));
NUnit.Framework.Assert.AreEqual(MessageFormatUtil.Format(PdfAConformanceException.ALL_THE_FONTS_MUST_BE_EMBEDDED_THIS_ONE_IS_NOT_0
, "Helvetica"), e.Message);
}
protected internal virtual void Sign(String src, String name, String dest, IX509Certificate[] chain, IPrivateKey
pk, String digestAlgorithm, PdfSigner.CryptoStandard subfilter, String reason, String location, Rectangle
rectangleForNewField, bool setReuseAppearance, bool isAppendMode) {
Sign(src, name, dest, chain, pk, digestAlgorithm, subfilter, reason, location, rectangleForNewField, setReuseAppearance
, isAppendMode, PdfSigner.NOT_CERTIFIED, null);
}
protected internal virtual void Sign(String src, String name, String dest, IX509Certificate[] chain, IPrivateKey
pk, String digestAlgorithm, PdfSigner.CryptoStandard subfilter, String reason, String location, Rectangle
rectangleForNewField, bool setReuseAppearance, bool isAppendMode, int certificationLevel, float? fontSize
) {
PdfReader reader = new PdfReader(src);
StampingProperties properties = new StampingProperties();
if (isAppendMode) {
properties.UseAppendMode();
}
PdfSigner signer = new PdfSigner(reader, new FileStream(dest, FileMode.Create), properties);
signer.SetCertificationLevel(certificationLevel);
PdfFont font = PdfFontFactory.CreateFont(FONT, "WinAnsi", PdfFontFactory.EmbeddingStrategy.PREFER_EMBEDDED
);
// Creating the appearance
PdfSignatureAppearance appearance = signer.GetSignatureAppearance().SetReason(reason).SetLocation(location
).SetLayer2Font(font).SetReuseAppearance(setReuseAppearance);
if (rectangleForNewField != null) {
appearance.SetPageRect(rectangleForNewField);
}
if (fontSize != null) {
appearance.SetLayer2FontSize((float)fontSize);
}
signer.SetFieldName(name);
// Creating the signature
IExternalSignature pks = new PrivateKeySignature(pk, digestAlgorithm);
signer.SignDetached(pks, chain, null, null, null, 0, subfilter);
}
private static IDictionary<int, IList<Rectangle>> GetTestMap(Rectangle ignoredArea) {
IDictionary<int, IList<Rectangle>> result = new Dictionary<int, IList<Rectangle>>();
result.Put(1, JavaCollectionsUtil.SingletonList(ignoredArea));
return result;
}
}
}