mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-30 21:03:17 +00:00
9 lines
154 B
C#
9 lines
154 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace SharpCompress.Common.Rar;
|
|
|
|
internal interface ICryptKey
|
|
{
|
|
ICryptoTransform Transformer(byte[] salt);
|
|
}
|