まず第一に、Bouncy Castle の最新バージョンで廃止された構造を使用しているようです。認証済み/署名済み属性を追加するには、それらをAttributeTableにパッケージ化する必要があります。署名済み属性は、次のように署名者に追加されます。
ASN1EncodableVector signedAttributes = new ASN1EncodableVector();
signedAttributes.add(new Attribute(CMSAttributes.contentType, new DERSet(new ASN1ObjectIdentifier("1.2.840.113549.1.7.1"))));
signedAttributes.add(new Attribute(CMSAttributes.messageDigest, new DERSet(new DEROctetString(digestBytes))));
signedAttributes.add(new Attribute(CMSAttributes.signingTime, new DERSet(new DERUTCTime(signingDate))));
AttributeTable signedAttributesTable = new AttributeTable(signedAttributes);
次に、それを addSigner メソッドの 1 つで使用します。最初に述べたように、このメソッドは非推奨であり、ジェネレーターとジェネレーター ビルダーを使用することをお勧めします。以下に短い例を示します。
/* Construct signed attributes */
ASN1EncodableVector signedAttributes = new ASN1EncodableVector();
signedAttributes.add(new Attribute(CMSAttributes.contentType, new DERSet(new ASN1ObjectIdentifier("1.2.840.113549.1.7.1"))));
signedAttributes.add(new Attribute(CMSAttributes.messageDigest, new DERSet(new DEROctetString(digestBytes))));
signedAttributes.add(new Attribute(CMSAttributes.signingTime, new DERSet(new DERUTCTime(signingDate))));
AttributeTable signedAttributesTable = new AttributeTable(signedAttributes);
signedAttributesTable.toASN1EncodableVector();
DefaultSignedAttributeTableGenerator signedAttributeGenerator = new DefaultSignedAttributeTableGenerator(signedAttributesTable);
/* Build the SignerInfo generator builder, that will build the generator... that will generate the SignerInformation... */
SignerInfoGeneratorBuilder signerInfoBuilder = new SignerInfoGeneratorBuilder(new JcaDigestCalculatorProviderBuilder().setProvider("BC").build());
signerInfoBuilder.setSignedAttributeGenerator(signedAttributeGenerator);
CMSSignedDataGenerator generator = new CMSSignedDataGenerator();
JcaContentSignerBuilder contentSigner = new JcaContentSignerBuilder("SHA1withRSA");
contentSigner.setProvider("BC");
generator.addSignerInfoGenerator(signerInfoBuilder.build(contentSigner.build(this.signingKey), new X509CertificateHolder(this.signingCert.getEncoded())));
ArrayList<X509CertificateHolder> signingChainHolder = new ArrayList<X509CertificateHolder>();
Iterator i = this.signingChain.iterator();
while (i.hasNext()) {
X509CertificateObject cert = (X509CertificateObject)i.next();
signingChainHolder.add(new X509CertificateHolder(cert.getEncoded()));
}
generator.addCertificates(new JcaCertStore(signingChainHolder));
generator.generate(new CMSAbsentContent(), "BC").getEncoded();
それは非常にかさばり、おそらくまだ動作しません (私はそれを書いている最中で、いくつかのものを調査しているときにあなたの質問に出くわしました)、特にsigningDateの部分は、おそらくnew DERSet(new Time(new Date))
(更新: で動作しDERUTCTime
ます)。
少し話題がずれています: Signed 属性と Authenticated 属性の違いについてはまだ理解できません。Bouncy Castle には DefaultAuthenticatedAttributeTableGenerator と DefaultSignedAttributeTableGenerator の両方のクラスがあり、署名者と完全に連携します。signedTime に関しては、2 つの間にいくつかの小さな違いがあるようです。SignedAttributes は、存在しない場合、デフォルトでsigningTime を追加します。RFC では両方の属性タイプについて言及されていますが、明確なものは見つかりませんでした。