Renci.SshNet.Abstractions.CryptoAbstraction
namespace Renci.SshNet.Abstractions
{
internal static class CryptoAbstraction
{
public static byte[] GenerateRandom(int length);
public static byte[] HashMD5(byte[] source);
public static byte[] HashSHA1(byte[] source);
public static byte[] HashSHA256(byte[] source);
public static byte[] HashSHA384(byte[] source);
public static byte[] HashSHA512(byte[] source);
}
}