<PackageReference Include="SSH.NET" Version="2024.1.0" />

CastCipher

public sealed class CastCipher : BlockCipher
Implements CAST cipher algorithm.
using System; using System; namespace Renci.SshNet.Common { internal class ChannelDataEventArgs : ChannelEventArgs { public byte[] Data { get; } public ChannelDataEventArgs(uint channelNumber, byte[] data) : base(channelNumber) { if (data == null) throw new ArgumentNullException("data"); Data = data; } } }