MaxBytesExceededException
This exception is thrown whenever a cipher requires a change of key, IV or similar after x amount of
bytes enciphered.
using System;
using System.Runtime.Serialization;
namespace Org.BouncyCastle.Crypto
{
[Serializable]
public class MaxBytesExceededException : CryptoException
{
public MaxBytesExceededException()
{
}
public MaxBytesExceededException(string message)
: base(message)
{
}
public MaxBytesExceededException(string message, Exception innerException)
: base(message, innerException)
{
}
protected MaxBytesExceededException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}