summary refs log tree commit diff
path: root/crypto/src/crypto/Check.cs
blob: 36263dc2431d3322ec639960aa7454a751859de1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;

namespace Org.BouncyCastle.Crypto
{
    internal class Check
    {
        internal static void DataLength(bool condition, string msg)
        {
            if (condition)
                throw new DataLengthException(msg);
        }

        internal static void DataLength(byte[] buf, int off, int len, string msg)
        {
            if (off > (buf.Length - len))
                throw new DataLengthException(msg);
        }

        internal static void OutputLength(byte[] buf, int off, int len, string msg)
        {
            if (off > (buf.Length - len))
                throw new OutputLengthException(msg);
        }

#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
        internal static void DataLength(ReadOnlySpan<byte> input, int len, string msg)
        {
            if (input.Length < len)
                throw new DataLengthException(msg);
        }

        internal static void OutputLength(Span<byte> output, int len, string msg)
        {
            if (output.Length < len)
                throw new OutputLengthException(msg);
        }
#endif
    }
}