You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
663 B

using System;
using System.IO;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.Utilities.Date;
using Org.BouncyCastle.Utilities.IO;
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)
{
}
}
}