9 lines
143 B
C#
9 lines
143 B
C#
namespace Org.BouncyCastle.Crypto;
|
|
|
|
public interface IMacFactory
|
|
{
|
|
object AlgorithmDetails { get; }
|
|
|
|
IStreamCalculator CreateCalculator();
|
|
}
|