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
|
using System;
namespace Org.BouncyCastle.Utilities.Encoders
{
/// <summary>
/// A hex translator.
/// </summary>
public class HexTranslator : ITranslator
{
private static readonly byte[] hexTable =
{
(byte)'0', (byte)'1', (byte)'2', (byte)'3', (byte)'4', (byte)'5', (byte)'6', (byte)'7',
(byte)'8', (byte)'9', (byte)'a', (byte)'b', (byte)'c', (byte)'d', (byte)'e', (byte)'f'
};
/// <summary>
/// Return encoded block size.
/// </summary>
/// <returns>2</returns>
public int GetEncodedBlockSize()
{
return 2;
}
/// <summary>
/// Encode some data.
/// </summary>
/// <param name="input">Input data array.</param>
/// <param name="inOff">Start position within input data array.</param>
/// <param name="length">The amount of data to process.</param>
/// <param name="outBytes">The output data array.</param>
/// <param name="outOff">The offset within the output data array to start writing from.</param>
/// <returns>Amount of data encoded.</returns>
public int Encode(
byte[] input,
int inOff,
int length,
byte[] outBytes,
int outOff)
{
for (int i = 0, j = 0; i < length; i++, j += 2)
{
outBytes[outOff + j] = hexTable[(input[inOff] >> 4) & 0x0f];
outBytes[outOff + j + 1] = hexTable[input[inOff] & 0x0f];
inOff++;
}
return length * 2;
}
/// <summary>
/// Returns the decoded block size.
/// </summary>
/// <returns>1</returns>
public int GetDecodedBlockSize()
{
return 1;
}
/// <summary>
/// Decode data from a byte array.
/// </summary>
/// <param name="input">The input data array.</param>
/// <param name="inOff">Start position within input data array.</param>
/// <param name="length">The amounty of data to process.</param>
/// <param name="outBytes">The output data array.</param>
/// <param name="outOff">The position within the output data array to start writing from.</param>
/// <returns>The amount of data written.</returns>
public int Decode(
byte[] input,
int inOff,
int length,
byte[] outBytes,
int outOff)
{
int halfLength = length / 2;
byte left, right;
for (int i = 0; i < halfLength; i++)
{
left = input[inOff + i * 2];
right = input[inOff + i * 2 + 1];
if (left < (byte)'a')
{
outBytes[outOff] = (byte)((left - '0') << 4);
}
else
{
outBytes[outOff] = (byte)((left - 'a' + 10) << 4);
}
if (right < (byte)'a')
{
outBytes[outOff] += (byte)(right - '0');
}
else
{
outBytes[outOff] += (byte)(right - 'a' + 10);
}
outOff++;
}
return halfLength;
}
}
}
|