我正在尝试以THIS项目为例对 PDF 文件进行数字签名。
当它执行 st.Close(); 我得到了臭名昭著的“对象引用未设置为对象的实例”。
我不知道为什么会这样,st 是一个对象的实例,它在上面使用。此异常发生在 .Close() 内部,由于我没有源代码,我只能尝试猜测原因...
我只能说:
- 正在成功读取原始 PDF。
- 正在生成一个空的pdf(我猜 .Close() 将写入文件)。
- 我的证书正在加载,但我不确定这是不是正确的方法。
这是我加载证书的方式:
private void processCert(X509Certificate2 card)
{
X509CertificateParser cp = new org.bouncycastle.x509.X509CertificateParser(card.RawData);
chain = new org.bouncycastle.x509.X509Certificate[] { cp.ReadCertificate() };
}
这就是我尝试签署 PDF 的方式。
public string Sign(string SigReason, string SigContact, string SigLocation, bool visible)
{
string bugLog ="";
try
{
PdfReader reader = new PdfReader(this.inputPDF);
//Activate MultiSignatures
PdfStamper st = PdfStamper.CreateSignature(reader, new FileStream(this.outputPDF, FileMode.Create, FileAccess.Write), '\0', null, true);
FileStream(this.outputPDF, FileMode.Create, FileAccess.Write), '\0');
st.MoreInfo = this.metadata.getMetaData();
st.XmpMetadata = this.metadata.getStreamedMetaData();
PdfSignatureAppearance sap = st.SignatureAppearance;
sap.SetCrypto(this.myCert.Akp, this.myCert.Chain, null, PdfSignatureAppearance.WINCER_SIGNED);
sap.Reason = SigReason;
sap.Contact = SigContact;
sap.Location = SigLocation;
if (visible)
sap.SetVisibleSignature(new iTextSharp.text.Rectangle(100, 100, 250, 150), 1, null);
st.Close();
}
catch (Exception e)
{
bugLog += " ERROR Sign: " + e.Message;
}
return buglog;
}
有没有人知道为什么我会遇到这个异常,或者我应该怎么做才能克服这个问题?
iTextSharp 文档并没有太大帮助...