public class Rsa256Key : PublicKeyAlgorithm { private readonly RSACryptoServiceProvider _algorithm = new RSACryptoServiceProvider(); public RsaKey(string key = null) public Rsa256Key(string key = null) : base(key) { } public override string Name { get { return "ssh-rsa"; } get { retur...