Searched refs:contentSigner (Results 1 - 3 of 3) sorted by relevance

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInfoGeneratorBuilder.java85 * @param contentSigner operator for generating the final signature in the SignerInfo with.
86 * @param certHolder carrier for the X.509 certificate related to the contentSigner.
90 public SignerInfoGenerator build(ContentSigner contentSigner, X509CertificateHolder certHolder) argument
95 SignerInfoGenerator sigInfoGen = createGenerator(contentSigner, sigId);
106 * @param contentSigner operator for generating the final signature in the SignerInfo with.
111 public SignerInfoGenerator build(ContentSigner contentSigner, byte[] subjectKeyIdentifier) argument
116 return createGenerator(contentSigner, sigId);
119 private SignerInfoGenerator createGenerator(ContentSigner contentSigner, SignerIdentifier sigId) argument
124 return new SignerInfoGenerator(sigId, contentSigner, digestProvider, sigEncAlgFinder, true);
134 return new SignerInfoGenerator(sigId, contentSigner, digestProvide
[all...]
H A DCMSSignedDataGenerator.java128 ContentSigner contentSigner = signerBuilder.build(key);
131 return builder.build(contentSigner, (X509Certificate)signerIdentifier);
135 return builder.build(contentSigner, (byte[])signerIdentifier);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/jcajce/
H A DJcaSignerInfoGeneratorBuilder.java51 public SignerInfoGenerator build(ContentSigner contentSigner, X509CertificateHolder certHolder) argument
54 return builder.build(contentSigner, certHolder);
57 public SignerInfoGenerator build(ContentSigner contentSigner, byte[] keyIdentifier) argument
60 return builder.build(contentSigner, keyIdentifier);
63 public SignerInfoGenerator build(ContentSigner contentSigner, X509Certificate certificate) argument
66 return this.build(contentSigner, new JcaX509CertificateHolder(certificate));

Completed in 68 milliseconds