<PackageReference Include="SSH.NET" Version="2013.4.7" />
API Differences between 2013.4.7 and 2016.0.0-beta1
1278 Additions
0 Removals
Renci.SshNet
-
public abstract class AuthenticationMethod
-
public enum AuthenticationResult
-
public abstract class BaseClient : IDisposable
-
public class CipherInfo
-
public class CommandAsyncResult : IAsyncResult
-
public class ConnectionInfo
- public IEnumerable<AuthenticationMethod> AuthenticationMethods { get; }
- public IDictionary<string, RequestInfo> ChannelRequests { get; }
- public string ClientVersion { get; }
- public IDictionary<string, Type> CompressionAlgorithms { get; }
- public string CurrentClientCompressionAlgorithm { get; }
- public string CurrentClientEncryption { get; }
- public string CurrentClientHmacAlgorithm { get; }
- public string CurrentHostKeyAlgorithm { get; }
- public string CurrentKeyExchangeAlgorithm { get; }
- public string CurrentServerCompressionAlgorithm { get; }
- public string CurrentServerEncryption { get; }
- public string CurrentServerHmacAlgorithm { get; }
- public Encoding Encoding { get; set; }
- public IDictionary<string, CipherInfo> Encryptions { get; }
- public IDictionary<string, HashInfo> HmacAlgorithms { get; }
- public string Host { get; }
- public IDictionary<string, Func<byte[], KeyHostAlgorithm>> HostKeyAlgorithms { get; }
- public bool IsAuthenticated { get; }
- public IDictionary<string, Type> KeyExchangeAlgorithms { get; }
- public int MaxSessions { get; set; }
- public int Port { get; }
- public string ProxyHost { get; }
- public string ProxyPassword { get; }
- public int ProxyPort { get; }
- public ProxyTypes ProxyType { get; }
- public string ProxyUsername { get; }
- public int RetryAttempts { get; set; }
- public string ServerVersion { get; }
- public TimeSpan Timeout { get; set; }
- public string Username { get; }
- public event EventHandler<AuthenticationBannerEventArgs> AuthenticationBanner
- public ConnectionInfo(string host, string username, AuthenticationMethod[] authenticationMethods)
- public ConnectionInfo(string host, int port, string username, AuthenticationMethod[] authenticationMethods)
- public ConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword, AuthenticationMethod[] authenticationMethods)
- public bool Authenticate(Session session)
-
public class ExpectAction
-
public class ExpectAsyncResult : AsyncResult<string>
-
public static class Extensions
-
public abstract class ForwardedPort
-
public class ForwardedPortDynamic : ForwardedPort, IDisposable
-
public class ForwardedPortLocal : ForwardedPort, IDisposable
- public string BoundHost { get; protected set; }
- public uint BoundPort { get; protected set; }
- public string Host { get; protected set; }
- public uint Port { get; protected set; }
- public ForwardedPortLocal(uint boundPort, string host, uint port)
- public ForwardedPortLocal(string boundHost, uint boundPort, string host, uint port)
- public void Dispose()
- protected virtual void Dispose(bool disposing)
-
public class ForwardedPortRemote : ForwardedPort, IDisposable
-
public class HashInfo
-
public class KeyboardInteractiveAuthenticationMethod : AuthenticationMethod, IDisposable
-
public class KeyboardInteractiveConnectionInfo : ConnectionInfo, IDisposable
- public event EventHandler<AuthenticationPromptEventArgs> AuthenticationPrompt
- public KeyboardInteractiveConnectionInfo(string host, string username)
- public KeyboardInteractiveConnectionInfo(string host, int port, string username)
- public KeyboardInteractiveConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort)
- public KeyboardInteractiveConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)
- public KeyboardInteractiveConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort)
- public KeyboardInteractiveConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)
- public KeyboardInteractiveConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
- public KeyboardInteractiveConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
- public void Dispose()
- protected virtual void Dispose(bool disposing)
-
public class MessageEventArgs<T> : EventArgs
-
public class NoneAuthenticationMethod : AuthenticationMethod, IDisposable
-
public class PasswordAuthenticationMethod : AuthenticationMethod, IDisposable
-
public class PasswordConnectionInfo : ConnectionInfo, IDisposable
- public event EventHandler<AuthenticationPasswordChangeEventArgs> PasswordExpired
- public PasswordConnectionInfo(string host, string username, string password)
- public PasswordConnectionInfo(string host, int port, string username, string password)
- public PasswordConnectionInfo(string host, int port, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort)
- public PasswordConnectionInfo(string host, int port, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)
- public PasswordConnectionInfo(string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort)
- public PasswordConnectionInfo(string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)
- public PasswordConnectionInfo(string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
- public PasswordConnectionInfo(string host, string username, byte[] password)
- public PasswordConnectionInfo(string host, int port, string username, byte[] password)
- public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort)
- public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)
- public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort)
- public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername)
- public PasswordConnectionInfo(string host, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
- public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
- public void Dispose()
- protected virtual void Dispose(bool disposing)
-
public class PrivateKeyAuthenticationMethod : AuthenticationMethod, IDisposable
-
public class PrivateKeyConnectionInfo : ConnectionInfo, IDisposable
- public ICollection<PrivateKeyFile> KeyFiles { get; }
- public PrivateKeyConnectionInfo(string host, string username, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword, PrivateKeyFile[] keyFiles)
- public PrivateKeyConnectionInfo(string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword, PrivateKeyFile[] keyFiles)
- public void Dispose()
- protected virtual void Dispose(bool disposing)
-
public class PrivateKeyFile : IDisposable
-
public enum ProxyTypes
-
public class ScpClient : BaseClient
- public uint BufferSize { get; set; }
- public TimeSpan OperationTimeout { get; set; }
- public event EventHandler<ScpDownloadEventArgs> Downloading
- public event EventHandler<ScpUploadEventArgs> Uploading
- public ScpClient(ConnectionInfo connectionInfo)
- public ScpClient(string host, int port, string username, string password)
- public ScpClient(string host, string username, string password)
- public ScpClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public ScpClient(string host, string username, PrivateKeyFile[] keyFiles)
- public void Download(string filename, Stream destination)
- public void Upload(Stream source, string path)
-
public class Session : IDisposable
-
public class SftpClient : BaseClient
- public uint BufferSize { get; set; }
- public TimeSpan OperationTimeout { get; set; }
- public int ProtocolVersion { get; }
- public string WorkingDirectory { get; }
- public SftpClient(ConnectionInfo connectionInfo)
- public SftpClient(string host, int port, string username, string password)
- public SftpClient(string host, string username, string password)
- public SftpClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public SftpClient(string host, string username, PrivateKeyFile[] keyFiles)
- public void AppendAllLines(string path, IEnumerable<string> contents)
- public void AppendAllLines(string path, IEnumerable<string> contents, Encoding encoding)
- public void AppendAllText(string path, string contents)
- public void AppendAllText(string path, string contents, Encoding encoding)
- public StreamWriter AppendText(string path)
- public StreamWriter AppendText(string path, Encoding encoding)
- public IAsyncResult BeginDownloadFile(string path, Stream output)
- public IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback asyncCallback)
- public IAsyncResult BeginDownloadFile(string path, Stream output, AsyncCallback asyncCallback, object state, Action<ulong> downloadCallback = null)
- public IAsyncResult BeginListDirectory(string path, AsyncCallback asyncCallback, object state, Action<int> listCallback = null)
- public IAsyncResult BeginUploadFile(Stream input, string path)
- public IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback asyncCallback)
- public IAsyncResult BeginUploadFile(Stream input, string path, AsyncCallback asyncCallback, object state, Action<ulong> uploadCallback = null)
- public IAsyncResult BeginUploadFile(Stream input, string path, bool canOverride, AsyncCallback asyncCallback, object state, Action<ulong> uploadCallback = null)
- public void ChangeDirectory(string path)
- public void ChangePermissions(string path, short mode)
- public SftpFileStream Create(string path)
- public SftpFileStream Create(string path, int bufferSize)
- public void CreateDirectory(string path)
- public StreamWriter CreateText(string path)
- public StreamWriter CreateText(string path, Encoding encoding)
- public void Delete(string path)
- public void DeleteDirectory(string path)
- public void DeleteFile(string path)
- public void DownloadFile(string path, Stream output, Action<ulong> downloadCallback = null)
- public void EndDownloadFile(IAsyncResult asyncResult)
- public IEnumerable<SftpFile> EndListDirectory(IAsyncResult asyncResult)
- public void EndUploadFile(IAsyncResult asyncResult)
- public bool Exists(string path)
- public SftpFile Get(string path)
- public SftpFileAttributes GetAttributes(string path)
- public DateTime GetLastAccessTime(string path)
- public DateTime GetLastAccessTimeUtc(string path)
- public DateTime GetLastWriteTime(string path)
- public DateTime GetLastWriteTimeUtc(string path)
- public SftpFileSytemInformation GetStatus(string path)
- public IEnumerable<SftpFile> ListDirectory(string path, Action<int> listCallback = null)
- public SftpFileStream Open(string path, FileMode mode)
- public SftpFileStream Open(string path, FileMode mode, FileAccess access)
- public SftpFileStream OpenRead(string path)
- public StreamReader OpenText(string path)
- public SftpFileStream OpenWrite(string path)
- public byte[] ReadAllBytes(string path)
- public string[] ReadAllLines(string path)
- public string[] ReadAllLines(string path, Encoding encoding)
- public string ReadAllText(string path)
- public string ReadAllText(string path, Encoding encoding)
- public IEnumerable<string> ReadLines(string path)
- public IEnumerable<string> ReadLines(string path, Encoding encoding)
- public void RenameFile(string oldPath, string newPath)
- public void RenameFile(string oldPath, string newPath, bool isPosix)
- public void SetAttributes(string path, SftpFileAttributes fileAttributes)
- public void SetLastAccessTime(string path, DateTime lastAccessTime)
- public void SetLastAccessTimeUtc(string path, DateTime lastAccessTimeUtc)
- public void SetLastWriteTime(string path, DateTime lastWriteTime)
- public void SetLastWriteTimeUtc(string path, DateTime lastWriteTimeUtc)
- public void SymbolicLink(string path, string linkPath)
- public void UploadFile(Stream input, string path, Action<ulong> uploadCallback = null)
- public void UploadFile(Stream input, string path, bool canOverride, Action<ulong> uploadCallback = null)
- public void WriteAllBytes(string path, byte[] bytes)
- public void WriteAllLines(string path, IEnumerable<string> contents)
- public void WriteAllLines(string path, string[] contents)
- public void WriteAllLines(string path, IEnumerable<string> contents, Encoding encoding)
- public void WriteAllLines(string path, string[] contents, Encoding encoding)
- public void WriteAllText(string path, string contents)
- public void WriteAllText(string path, string contents, Encoding encoding)
-
public class Shell : IDisposable
-
public class ShellStream : Stream
-
public class SshClient : BaseClient
- public IEnumerable<ForwardedPort> ForwardedPorts { get; }
- public SshClient(ConnectionInfo connectionInfo)
- public SshClient(string host, int port, string username, string password)
- public SshClient(string host, string username, string password)
- public SshClient(string host, int port, string username, PrivateKeyFile[] keyFiles)
- public SshClient(string host, string username, PrivateKeyFile[] keyFiles)
- public void AddForwardedPort(ForwardedPort port)
- public SshCommand CreateCommand(string commandText)
- public SshCommand CreateCommand(string commandText, Encoding encoding)
- public Shell CreateShell(Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes, int bufferSize)
- public Shell CreateShell(Stream input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes)
- public Shell CreateShell(Stream input, Stream output, Stream extendedOutput)
- public Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes, int bufferSize)
- public Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput, string terminalName, uint columns, uint rows, uint width, uint height, IDictionary<TerminalModes, uint> terminalModes)
- public Shell CreateShell(Encoding encoding, string input, Stream output, Stream extendedOutput)
- public ShellStream CreateShellStream(string terminalName, uint columns, uint rows, uint width, uint height, int bufferSize)
- public ShellStream CreateShellStream(string terminalName, uint columns, uint rows, uint width, uint height, int bufferSize, IDictionary<TerminalModes, uint> terminalModeValues)
- public void RemoveForwardedPort(ForwardedPort port)
- public SshCommand RunCommand(string commandText)
-
public class SshCommand : IDisposable
Renci.SshNet.Common
-
public class ASCIIEncoding : Encoding
-
public abstract class AsyncResult : IAsyncResult
-
public abstract class AsyncResult<TResult> : AsyncResult
-
public class AuthenticationBannerEventArgs : AuthenticationEventArgs
-
public abstract class AuthenticationEventArgs : EventArgs
-
public class AuthenticationPasswordChangeEventArgs : AuthenticationEventArgs
-
public class AuthenticationPrompt
-
public class AuthenticationPromptEventArgs : AuthenticationEventArgs
-
public struct BigInteger : IComparable, IFormattable, IComparable<BigInteger>, IEquatable<BigInteger>
- public static BigInteger MinusOne { get; }
- public static BigInteger One { get; }
- public static BigInteger Zero { get; }
- public int BitLength { get; }
- public bool IsEven { get; }
- public bool IsOne { get; }
- public bool IsPowerOfTwo { get; }
- public bool IsZero { get; }
- public int Sign { get; }
- public BigInteger(short sign, uint[] data)
- public BigInteger(int value)
- public BigInteger(uint value)
- public BigInteger(long value)
- public BigInteger(ulong value)
- public BigInteger(double value)
- public BigInteger(float value)
- public BigInteger(decimal value)
- public BigInteger(byte[] value)
- public static BigInteger Abs(BigInteger value)
- public static BigInteger Add(BigInteger left, BigInteger right)
- public static int Compare(BigInteger left, BigInteger right)
- public static BigInteger Divide(BigInteger dividend, BigInteger divisor)
- public static BigInteger DivRem(BigInteger dividend, BigInteger divisor, out BigInteger remainder)
- public static BigInteger GreatestCommonDivisor(BigInteger left, BigInteger right)
- public static double Log(BigInteger value, double baseValue)
- public static double Log(BigInteger value)
- public static double Log10(BigInteger value)
- public static BigInteger Max(BigInteger left, BigInteger right)
- public static BigInteger Min(BigInteger left, BigInteger right)
- public static BigInteger ModInverse(BigInteger bi, BigInteger modulus)
- public static BigInteger ModPow(BigInteger value, BigInteger exponent, BigInteger modulus)
- public static BigInteger Multiply(BigInteger left, BigInteger right)
- public static BigInteger Negate(BigInteger value)
- public static BigInteger op_Addition(BigInteger left, BigInteger right)
- public static BigInteger op_BitwiseAnd(BigInteger left, BigInteger right)
- public static BigInteger op_BitwiseOr(BigInteger left, BigInteger right)
- public static BigInteger op_Decrement(BigInteger value)
- public static BigInteger op_Division(BigInteger dividend, BigInteger divisor)
- public static bool op_Equality(BigInteger left, BigInteger right)
- public static bool op_Equality(BigInteger left, long right)
- public static bool op_Equality(long left, BigInteger right)
- public static bool op_Equality(BigInteger left, ulong right)
- public static bool op_Equality(ulong left, BigInteger right)
- public static BigInteger op_ExclusiveOr(BigInteger left, BigInteger right)
- public static int op_Explicit(BigInteger value)
- public static uint op_Explicit(BigInteger value)
- public static short op_Explicit(BigInteger value)
- public static ushort op_Explicit(BigInteger value)
- public static byte op_Explicit(BigInteger value)
- public static sbyte op_Explicit(BigInteger value)
- public static long op_Explicit(BigInteger value)
- public static ulong op_Explicit(BigInteger value)
- public static double op_Explicit(BigInteger value)
- public static float op_Explicit(BigInteger value)
- public static decimal op_Explicit(BigInteger value)
- public static BigInteger op_Explicit(double value)
- public static BigInteger op_Explicit(float value)
- public static BigInteger op_Explicit(decimal value)
- public static bool op_GreaterThan(BigInteger left, BigInteger right)
- public static bool op_GreaterThan(BigInteger left, long right)
- public static bool op_GreaterThan(long left, BigInteger right)
- public static bool op_GreaterThan(BigInteger left, ulong right)
- public static bool op_GreaterThan(ulong left, BigInteger right)
- public static bool op_GreaterThanOrEqual(BigInteger left, BigInteger right)
- public static bool op_GreaterThanOrEqual(BigInteger left, long right)
- public static bool op_GreaterThanOrEqual(long left, BigInteger right)
- public static bool op_GreaterThanOrEqual(BigInteger left, ulong right)
- public static bool op_GreaterThanOrEqual(ulong left, BigInteger right)
- public static BigInteger op_Implicit(int value)
- public static BigInteger op_Implicit(uint value)
- public static BigInteger op_Implicit(short value)
- public static BigInteger op_Implicit(ushort value)
- public static BigInteger op_Implicit(byte value)
- public static BigInteger op_Implicit(sbyte value)
- public static BigInteger op_Implicit(long value)
- public static BigInteger op_Implicit(ulong value)
- public static BigInteger op_Increment(BigInteger value)
- public static bool op_Inequality(BigInteger left, BigInteger right)
- public static bool op_Inequality(BigInteger left, long right)
- public static bool op_Inequality(long left, BigInteger right)
- public static bool op_Inequality(BigInteger left, ulong right)
- public static bool op_Inequality(ulong left, BigInteger right)
- public static BigInteger op_LeftShift(BigInteger value, int shift)
- public static bool op_LessThan(BigInteger left, BigInteger right)
- public static bool op_LessThan(BigInteger left, long right)
- public static bool op_LessThan(long left, BigInteger right)
- public static bool op_LessThan(BigInteger left, ulong right)
- public static bool op_LessThan(ulong left, BigInteger right)
- public static bool op_LessThanOrEqual(BigInteger left, BigInteger right)
- public static bool op_LessThanOrEqual(BigInteger left, long right)
- public static bool op_LessThanOrEqual(long left, BigInteger right)
- public static bool op_LessThanOrEqual(BigInteger left, ulong right)
- public static bool op_LessThanOrEqual(ulong left, BigInteger right)
- public static BigInteger op_Modulus(BigInteger dividend, BigInteger divisor)
- public static BigInteger op_Multiply(BigInteger left, BigInteger right)
- public static BigInteger op_OnesComplement(BigInteger value)
- public static BigInteger op_RightShift(BigInteger value, int shift)
- public static BigInteger op_Subtraction(BigInteger left, BigInteger right)
- public static BigInteger op_UnaryNegation(BigInteger value)
- public static BigInteger op_UnaryPlus(BigInteger value)
- public static BigInteger Parse(string value, NumberStyles style, IFormatProvider provider)
- public static BigInteger Parse(string value, IFormatProvider provider)
- public static BigInteger Parse(string value, NumberStyles style)
- public static BigInteger PositiveMod(BigInteger dividend, BigInteger divisor)
- public static BigInteger Pow(BigInteger value, int exponent)
- public static BigInteger Random(int bitLength)
- public static BigInteger Remainder(BigInteger dividend, BigInteger divisor)
- public static BigInteger Subtract(BigInteger left, BigInteger right)
- public static bool TryParse(string value, NumberStyles style, CultureInfo cultureInfo, out BigInteger result)
- public static bool TryParse(string value, out BigInteger result)
- public int CompareTo(object obj)
- public int CompareTo(BigInteger other)
- public int CompareTo(ulong other)
- public int CompareTo(long other)
- public bool Equals(BigInteger other)
- public bool Equals(long other)
- public bool Equals(ulong other)
- public byte[] ToByteArray()
- public string ToString(IFormatProvider provider)
- public string ToString(string format)
- public string ToString(string format, IFormatProvider provider)
-
public class DerData
-
public class ExceptionEventArgs : EventArgs
-
public static class Extensions
-
public class HostKeyEventArgs : EventArgs
-
public struct ObjectIdentifier
-
public class PipeStream : Stream
-
public class PortForwardEventArgs : EventArgs
-
public class ProxyException : SshException
-
public class ScpDownloadEventArgs : EventArgs
-
public class ScpException : SshException
-
public class ScpUploadEventArgs : EventArgs
-
public class SemaphoreLight
-
public class SftpPathNotFoundException : SshException
-
public class SftpPermissionDeniedException : SshException
-
public class ShellDataEventArgs : EventArgs
-
public class SshAuthenticationException : SshException
-
public class SshConnectionException : SshException
-
public abstract class SshData
-
public class SshException : Exception
-
public class SshOperationTimeoutException : SshException
-
public class SshPassPhraseNullOrEmptyException : SshException
-
public enum TerminalModes
Renci.SshNet.Compression
Renci.SshNet.Messages
Renci.SshNet.Messages.Authentication
Renci.SshNet.Messages.Connection
Renci.SshNet.Messages.Transport
Renci.SshNet.Security
Renci.SshNet.Security.Cryptography
-
public abstract class AsymmetricCipher : Cipher
-
public abstract class BlockCipher : SymmetricCipher
-
public abstract class Cipher
- public abstract byte MinimumSize { get; }
- protected Cipher()
- protected static uint BigEndianToUInt32(byte[] buffer)
- protected static uint BigEndianToUInt32(byte[] buffer, int offset)
- protected static ulong BigEndianToUInt64(byte[] buffer)
- protected static ulong BigEndianToUInt64(byte[] buffer, int offset)
- protected static uint LittleEndianToUInt32(byte[] buffer)
- protected static uint LittleEndianToUInt32(byte[] buffer, int offset)
- protected static ulong LittleEndianToUInt64(byte[] buffer)
- protected static ulong LittleEndianToUInt64(byte[] buffer, int offset)
- protected static void UInt32ToBigEndian(uint number, byte[] buffer)
- protected static void UInt32ToBigEndian(uint number, byte[] buffer, int offset)
- protected static void UInt32ToLittleEndian(uint number, byte[] buffer)
- protected static void UInt32ToLittleEndian(uint number, byte[] buffer, int offset)
- protected static void UInt64ToBigEndian(ulong number, byte[] buffer)
- protected static void UInt64ToBigEndian(ulong number, byte[] buffer, int offset)
- protected static void UInt64ToLittleEndian(ulong number, byte[] buffer)
- protected static void UInt64ToLittleEndian(ulong number, byte[] buffer, int offset)
- public abstract byte[] Decrypt(byte[] input)
- public abstract byte[] Encrypt(byte[] input)
-
public abstract class CipherDigitalSignature : DigitalSignature
-
public abstract class DigitalSignature
- protected DigitalSignature()
- public abstract byte[] Sign(byte[] input)
- public abstract bool Verify(byte[] input, byte[] signature)
-
public class DsaDigitalSignature : DigitalSignature, IDisposable
-
public class HMac<T> : KeyedHashAlgorithm where T : HashAlgorithm
- protected int BlockSize { get; }
- public HMac(byte[] key, int hashSizeValue)
- public HMac(byte[] key)
-
public sealed class MD5Hash : HashAlgorithm
-
public sealed class RIPEMD160Hash : HashAlgorithm
-
public class RsaDigitalSignature : CipherDigitalSignature, IDisposable
-
public sealed class SHA1Hash : HashAlgorithm
-
public class SHA256Hash : HashAlgorithm
-
public abstract class SHA2HashBase : HashAlgorithm
-
public class SHA384Hash : SHA2HashBase
-
public class SHA512Hash : SHA2HashBase
-
public abstract class StreamCipher : SymmetricCipher
-
public abstract class SymmetricCipher : Cipher
- protected byte[] Key { get; }
- protected SymmetricCipher(byte[] key)
- public abstract int DecryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
- public abstract int EncryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
Renci.SshNet.Security.Cryptography.Ciphers
-
public sealed class AesCipher : BlockCipher
-
public sealed class Arc4Cipher : StreamCipher
- public Arc4Cipher(byte[] key, bool dischargeFirstBytes)
-
public sealed class BlowfishCipher : BlockCipher
-
public sealed class CastCipher : BlockCipher
-
public abstract class CipherMode
- protected int _blockSize
- protected BlockCipher Cipher
- protected byte[] IV
- protected CipherMode(byte[] iv)
- public abstract int DecryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
- public abstract int EncryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
-
public abstract class CipherPadding
- protected CipherPadding()
- public abstract byte[] Pad(int blockSize, byte[] input)
-
public class DesCipher : BlockCipher
-
public class RsaCipher : AsymmetricCipher
-
public sealed class SerpentCipher : BlockCipher
-
public sealed class TripleDesCipher : DesCipher
-
public sealed class TwofishCipher : BlockCipher
Renci.SshNet.Security.Cryptography.Ciphers.Modes
Renci.SshNet.Security.Cryptography.Ciphers.Paddings
Renci.SshNet.Sftp