12 lines
230 B
C#
12 lines
230 B
C#
namespace Aegis.Application.Abstractions;
|
|
|
|
public interface ILabelCrypto
|
|
{
|
|
string DecryptDatastoreName(
|
|
byte[] nameEnc,
|
|
byte[] nameNonce,
|
|
string lkKid,
|
|
int lkVersion,
|
|
string aad
|
|
);
|
|
} |