1 files changed, 4 insertions, 11 deletions
diff --git a/crypto/src/cms/CMSAuthenticatedGenerator.cs b/crypto/src/cms/CMSAuthenticatedGenerator.cs
index 8824d1913..1f73c9b19 100644
--- a/crypto/src/cms/CMSAuthenticatedGenerator.cs
+++ b/crypto/src/cms/CMSAuthenticatedGenerator.cs
@@ -14,21 +14,14 @@ namespace Org.BouncyCastle.Cms
public class CmsAuthenticatedGenerator
: CmsEnvelopedGenerator
{
- /**
- * base constructor
- */
public CmsAuthenticatedGenerator()
{
}
- /**
- * constructor allowing specific source of randomness
- *
- * @param rand instance of SecureRandom to use
- */
- public CmsAuthenticatedGenerator(
- SecureRandom rand)
- : base(rand)
+ /// <summary>Constructor allowing specific source of randomness</summary>
+ /// <param name="random">Instance of <c>SecureRandom</c> to use.</param>
+ public CmsAuthenticatedGenerator(SecureRandom random)
+ : base(random)
{
}
}
|