10 lines
116 B
C#
10 lines
116 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Cms
|
|
{
|
|
internal interface IDigestCalculator
|
|
{
|
|
byte[] GetDigest();
|
|
}
|
|
}
|