1 files changed, 5 insertions, 5 deletions
diff --git a/crypto/src/x509/X509V1CertificateGenerator.cs b/crypto/src/x509/X509V1CertificateGenerator.cs
index 2279767e3..92829eac3 100644
--- a/crypto/src/x509/X509V1CertificateGenerator.cs
+++ b/crypto/src/x509/X509V1CertificateGenerator.cs
@@ -121,7 +121,7 @@ namespace Org.BouncyCastle.X509
/// This can be either a name or an OID, names are treated as case insensitive.
/// </summary>
/// <param name="signatureAlgorithm">string representation of the algorithm name</param>
- [Obsolete("Not needed if Generate used with an ISignatureCalculator")]
+ [Obsolete("Not needed if Generate used with an ISignatureCalculatorFactory")]
public void SetSignatureAlgorithm(
string signatureAlgorithm)
{
@@ -146,7 +146,7 @@ namespace Org.BouncyCastle.X509
/// </summary>
/// <param name="privateKey">The private key of the issuer used to sign this certificate.</param>
/// <returns>An X509Certificate.</returns>
- [Obsolete("Use Generate with an ISignatureCalculator")]
+ [Obsolete("Use Generate with an ISignatureCalculatorFactory")]
public X509Certificate Generate(
AsymmetricKeyParameter privateKey)
{
@@ -159,12 +159,12 @@ namespace Org.BouncyCastle.X509
/// <param name="privateKey">The private key of the issuer used to sign this certificate.</param>
/// <param name="random">The Secure Random you want to use.</param>
/// <returns>An X509Certificate.</returns>
- [Obsolete("Use Generate with an ISignatureCalculator")]
+ [Obsolete("Use Generate with an ISignatureCalculatorFactory")]
public X509Certificate Generate(
AsymmetricKeyParameter privateKey,
SecureRandom random)
{
- return Generate(new Asn1SignatureCalculator(signatureAlgorithm, privateKey, random));
+ return Generate(new Asn1SignatureCalculatorFactory(signatureAlgorithm, privateKey, random));
}
/// <summary>
@@ -172,7 +172,7 @@ namespace Org.BouncyCastle.X509
/// </summary>
/// <param name="signatureCalculator">A signature calculator with the necessary algorithm details.</param>
/// <returns>An X509Certificate.</returns>
- public X509Certificate Generate(ISignatureCalculator signatureCalculator)
+ public X509Certificate Generate(ISignatureCalculatorFactory signatureCalculator)
{
tbsGen.SetSignature ((AlgorithmIdentifier)signatureCalculator.AlgorithmDetails);
|