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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
using System;
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
using System.Buffers.Binary;
#endif
namespace Org.BouncyCastle.Math.EC.Rfc8032
{
internal static class Codec
{
internal static uint Decode16(byte[] bs, int off)
{
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
return BinaryPrimitives.ReadUInt16LittleEndian(bs.AsSpan(off));
#else
uint n = bs[off];
n |= (uint)bs[++off] << 8;
return n;
#endif
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
internal static uint Decode16(ReadOnlySpan<byte> bs)
{
return BinaryPrimitives.ReadUInt16LittleEndian(bs);
}
#endif
internal static uint Decode24(byte[] bs, int off)
{
uint n = bs[off];
n |= (uint)bs[++off] << 8;
n |= (uint)bs[++off] << 16;
return n;
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
internal static uint Decode24(ReadOnlySpan<byte> bs)
{
uint n = bs[0];
n |= (uint)bs[1] << 8;
n |= (uint)bs[2] << 16;
return n;
}
#endif
internal static uint Decode32(byte[] bs, int off)
{
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
return BinaryPrimitives.ReadUInt32LittleEndian(bs.AsSpan(off));
#else
uint n = bs[off];
n |= (uint)bs[++off] << 8;
n |= (uint)bs[++off] << 16;
n |= (uint)bs[++off] << 24;
return n;
#endif
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
internal static uint Decode32(ReadOnlySpan<byte> bs)
{
return BinaryPrimitives.ReadUInt32LittleEndian(bs);
}
#endif
internal static void Decode32(byte[] bs, int bsOff, uint[] n, int nOff, int nLen)
{
for (int i = 0; i < nLen; ++i)
{
n[nOff + i] = Decode32(bs, bsOff + i * 4);
}
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
internal static void Decode32(ReadOnlySpan<byte> bs, Span<uint> n)
{
for (int i = 0; i < n.Length; ++i)
{
n[i] = Decode32(bs[(i * 4)..]);
}
}
#endif
internal static void Encode24(uint n, byte[] bs, int off)
{
bs[off] = (byte)(n);
bs[++off] = (byte)(n >> 8);
bs[++off] = (byte)(n >> 16);
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
internal static void Encode24(uint n, Span<byte> bs)
{
bs[0] = (byte)(n);
bs[1] = (byte)(n >> 8);
bs[2] = (byte)(n >> 16);
}
#endif
internal static void Encode32(uint n, byte[] bs, int off)
{
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
BinaryPrimitives.WriteUInt32LittleEndian(bs.AsSpan(off), n);
#else
bs[ off] = (byte)(n );
bs[++off] = (byte)(n >> 8);
bs[++off] = (byte)(n >> 16);
bs[++off] = (byte)(n >> 24);
#endif
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
internal static void Encode32(uint n, Span<byte> bs)
{
BinaryPrimitives.WriteUInt32LittleEndian(bs, n);
}
#endif
internal static void Encode56(ulong n, byte[] bs, int off)
{
Encode32((uint)n, bs, off);
Encode24((uint)(n >> 32), bs, off + 4);
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
internal static void Encode56(ulong n, Span<byte> bs)
{
Encode32((uint)n, bs);
Encode24((uint)(n >> 32), bs[4..]);
}
#endif
}
}
|