Files
sharpcompress/src/SharpCompress/Common/Rar/ICryptKey.cs
Lars Vahlenberg 619e44b30f CSharpier fixes
2023-12-16 03:08:51 +01:00

9 lines
154 B
C#

using System.Security.Cryptography;
namespace SharpCompress.Common.Rar;
internal interface ICryptKey
{
ICryptoTransform Transformer(byte[] salt);
}