3

我使用 PDFBOX 创建了一个 PDF PAdES 签名,我正在使用 ETSI 在线验证器1(它需要注册),现在我在报告中只收到两个错误,但我有点迷失它们是什么或如何修复它们。

这是etsi在线验证器报告:

这是我用来签名的代码:

@Override
    public byte[] sign(InputStream content) throws IOException {
        try {
            CMSSignedDataGenerator signGenerator = new CMSSignedDataGenerator();
            X509Certificate userCert = (X509Certificate) this.certificateChain[0];
            ContentSigner mySigner = new CustomSigner(this.signerKeyHandle);
            // TODO check to use cavium as digest provider
            MessageDigest md = MessageDigest.getInstance("SHA-256", "Cavium");
            md.update(userCert.getEncoded());
            byte[] userCertHash = md.digest();
            X509CertificateHolder issuerCert = new X509CertificateHolder(this.certificateChain[1].getEncoded());
            // IssuerSerial is = new IssuerSerial(issuerCert.get,
            // issuerCert.getSerialNumber());
            ESSCertIDv2 certid = new ESSCertIDv2(new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha256),
                    userCertHash);
            ESSCertIDv2[] essCert1Arr = { certid };
            SigningCertificateV2 sigcert = new SigningCertificateV2(certid);
            final DERSet attrValues = new DERSet(sigcert);
            Attribute attr = new Attribute(PKCSObjectIdentifiers.id_aa_signingCertificateV2, attrValues);
            ASN1EncodableVector v = new ASN1EncodableVector();
            v.add(attr);
            AttributeTable atttributeTable = new AttributeTable(v);
             //Create a standard attribute table from the passed in parameters - certhash
             CMSAttributeTableGenerator attrGen = new DefaultSignedAttributeTableGenerator(atttributeTable){
                protected Hashtable createStandardAttributeTable(Map parameters)
                {
                    Hashtable result = super.createStandardAttributeTable(parameters);
                    result.remove(CMSAttributes.signingTime);
                    return result;
                }
            };
            JcaSignerInfoGeneratorBuilder signerBuilder = new JcaSignerInfoGeneratorBuilder( new JcaDigestCalculatorProviderBuilder().build());
            signerBuilder.setSignedAttributeGenerator(attrGen);
            SignerInfoGenerator signerInfoGenerator = signerBuilder.build(mySigner, userCert);
            signGenerator.addSignerInfoGenerator(signerInfoGenerator);
            signGenerator.addCertificates(new JcaCertStore(Arrays.asList(certificateChain)));
            CMSProcessableInputStream msg = new CMSProcessableInputStream(content);
            CMSSignedData signedData = signGenerator.generate(msg, false);
            return signedData.getEncoded();
        } catch (GeneralSecurityException | CMSException | OperatorCreationException e) {
            System.err.println(e.getMessage());
            throw new RuntimeException("unable to sign pdf!");
        }
    }

我不太确定这些问题可能出在哪里或为什么会产生,一开始我有 5 个,现在我只有这两个,所以任何输入都将不胜感激

4

1 回答 1

4

原始问题

您使用DefaultSignedAttributeTableGenerator

signerBuilder.setSignedAttributeGenerator(new DefaultSignedAttributeTableGenerator(new AttributeTable(v)));

根据其 JavaDocs 它将

/* Create a standard attribute table from the passed in parameters - this will
 * normally include contentType, signingTime, messageDigest, and CMS algorithm protection.
 * If the constructor using an AttributeTable was used, entries in it for contentType, signingTime, and
 * messageDigest will override the generated ones.

特别是它将创建一个signingTime签名属性。

但对于(非传统)PAdES 签名,嵌入式 CMS 容器不得包含signingTime属性,请参阅 ETSI EN 319 142-1 第 6.3 节的基线签名

SPO:CMS 签名中的签名时间属性...不应存在

并且已经针对 PAdES-BES 和 PAdES-EPES 签名的原始 ETSI TS 102 778-3 第 4.5.3 节要求

不应使用签名时间属性。

(严格来说,当前的 ETSI EN 319 142-2 PAdES-E-BES 和 PAdES-E-EPES 配置文件似乎不再禁止使用,他们只是建议使用M签名字典条目代替。但是 BES/EPES 的软件检查通常仍然基于确实禁止的旧 TS,见上文。现在无论如何都应该使用基线签名......)

因此,您应该使用CMSAttributeTableGenerator不包含签名时间属性的实现,例如通过复制DefaultSignedAttributeTableGenerator代码并从其createStandardAttributeTable方法中删除签名时间。

更新的问题

在评论中,您说在解决上述问题后,仍然存在一个错误:

现在它只有一个错误,它的数字 63 显示 Location-{CodeTest}:Contents/CAdESSignature/content/signedData/signerInfos/signerInfo 1 /signedAttrs/attribute[4]/attrValues/NotKnownComponent 1 -{ForAllTheChildrenDo} An unknown component已达到。因此,TLCC 不知道其子项及其处理。不会对此组件进行进一步检查

您的最后一个(第四个)签名属性SignerInfo是根据2011 年 4 月的RFC 6211的算法标识符保护属性。考虑到 ETSI 签名一致性检查器的年龄,它可能确实不知道这个属性。

如果您希望一致性检查器不显示该错误,只需从DefaultSignedAttributeTableGenerator的标准属性表中删除该属性,就像删除签名时间属性一样。

于 2020-10-22T15:20:50.793 回答