diff options
author | Filippo Biondi <filomail@gmail.com> | 2018-10-05 11:42:18 +0100 |
---|---|---|
committer | Filippo Biondi <filomail@gmail.com> | 2018-10-05 11:42:18 +0100 |
commit | 50db33ce0a93a89e3c7c03aa6c30f77bbed00253 (patch) | |
tree | 30906c4d8295f60870243ba32ee0513f8c206d0f | |
parent | Further work to improve constant time in OAEP. (diff) | |
download | BouncyCastle.NET-ed25519-50db33ce0a93a89e3c7c03aa6c30f77bbed00253.tar.xz |
Update a documentation comment in Build method
CertHolder param is present in the Java class method but no longer in the Csharp one where the X.509 certificate is passed instead.
-rw-r--r-- | crypto/src/cms/SignerInfoGenerator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/cms/SignerInfoGenerator.cs b/crypto/src/cms/SignerInfoGenerator.cs index 7b9318cc9..df8d1d0a1 100644 --- a/crypto/src/cms/SignerInfoGenerator.cs +++ b/crypto/src/cms/SignerInfoGenerator.cs @@ -110,10 +110,10 @@ namespace Org.BouncyCastle.Cms } /** - * Build a generator with the passed in certHolder issuer and serial number as the signerIdentifier. + * Build a generator with the passed in X.509 certificate issuer and serial number as the signerIdentifier. * * @param contentSigner operator for generating the final signature in the SignerInfo with. - * @param certHolder carrier for the X.509 certificate related to the contentSigner. + * @param certificate X.509 certificate related to the contentSigner. * @return a SignerInfoGenerator * @throws OperatorCreationException if the generator cannot be built. */ |