Renci.SshNet.CipherInfo
Holds information about key size and cipher to use.
namespace Renci.
SshNet
{
public class CipherInfo
{
public int KeySize { get; }
public bool IsAead { get; }
public Func<
byte[],
byte[],
Cipher>
Cipher { get; }
public CipherInfo(
int keySize,
Func<
byte[],
byte[],
Cipher>
cipher,
bool isAead =
false);
}
}