7 lines
215 B
C#
7 lines
215 B
C#
namespace Aegis.Repository.Crypto;
|
|
|
|
public interface ILabelKeyProvider
|
|
{
|
|
// Retorna a chave simétrica (32 bytes) para o LK identificado por lkKid/lkVersion
|
|
byte[] GetLabelKey(string lkKid, int lkVersion);
|
|
} |