-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathBase32.cs
91 lines (87 loc) · 3.32 KB
/
Base32.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Ipfs
{
/// <summary>
/// A codec for Base-32.
/// </summary>
/// <remarks>
/// <para>
/// A codec for Base-32, <see cref="Encode"/> and <see cref="Decode"/>. Adds the extension method <see cref="ToBase32"/>
/// to encode a byte array and <see cref="FromBase32"/> to decode a Base-32 string.
/// </para>
/// <para>
/// <see cref="Encode"/> and <see cref="ToBase32"/> produce the lower case form of
/// <see href="https://tools.ietf.org/html/rfc4648"/> with no padding.
/// <see cref="Decode"/> and <see cref="FromBase32"/> are case-insensitive and
/// allow optional padding.
/// </para>
/// <para>
/// A thin wrapper around <see href="https://github.com/ssg/SimpleBase"/>.
/// </para>
/// </remarks>
public static class Base32
{
/// <summary>
/// Converts an array of 8-bit unsigned integers to its equivalent string representation that is
/// encoded with base-32 characters.
/// </summary>s
/// <param name="input">
/// An array of 8-bit unsigned integers.
/// </param>
/// <returns>
/// The string representation, in base 32, of the contents of <paramref name="input"/>.
/// </returns>
public static string Encode(byte[] input)
{
return SimpleBase.Base32.Rfc4648.Encode(input, false).ToLowerInvariant();
}
/// <summary>
/// Converts an array of 8-bit unsigned integers to its equivalent string representation that is
/// encoded with base-32 digits.
/// </summary>
/// <param name="bytes">
/// An array of 8-bit unsigned integers.
/// </param>
/// <returns>
/// The string representation, in base 32, of the contents of <paramref name="bytes"/>.
/// </returns>
public static string ToBase32(this byte[] bytes)
{
return Encode(bytes);
}
/// <summary>
/// Converts the specified <see cref="string"/>, which encodes binary data as base 32 digits,
/// to an equivalent 8-bit unsigned integer array.
/// </summary>
/// <param name="input">
/// The base 32 string to convert.
/// </param>
/// <returns>
/// An array of 8-bit unsigned integers that is equivalent to <paramref name="input"/>.
/// </returns>
/// <remarks>
/// <paramref name="input"/> is case-insensitive and allows padding.
/// </remarks>
public static byte[] Decode(string input)
{
return SimpleBase.Base32.Rfc4648.Decode(input);
}
/// <summary>
/// Converts the specified <see cref="string"/>, which encodes binary data as base 32 digits,
/// to an equivalent 8-bit unsigned integer array.
/// </summary>
/// <param name="s">
/// The base 32 string to convert; case-insensitive and allows padding.
/// </param>
/// <returns>
/// An array of 8-bit unsigned integers that is equivalent to <paramref name="s"/>.
/// </returns>
public static byte[] FromBase32(this string s)
{
return Decode(s);
}
}
}