-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathBase58.cs
85 lines (81 loc) · 3 KB
/
Base58.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Ipfs
{
/// <summary>
/// A codec for IPFS Base-58.
/// </summary>
/// <remarks>
/// <para>
/// A codec for Base-58, <see cref="Encode"/> and <see cref="Decode"/>. Adds the extension method <see cref="ToBase58"/>
/// to encode a byte array and <see cref="FromBase58"/> to decode a Base-58 string.
/// </para>
/// <para>
/// This is just thin wrapper of <see href="https://github.com/ssg/SimpleBase"/>.
/// </para>
/// <para>
/// This codec uses the BitCoin alphabet <b>not Flickr's</b>.
/// </para>
/// </remarks>
public static class Base58
{
/// <summary>
/// Converts an array of 8-bit unsigned integers to its equivalent string representation that is
/// encoded with base-58 characters.
/// </summary>s
/// <param name="bytes">
/// An array of 8-bit unsigned integers.
/// </param>
/// <returns>
/// The string representation, in base 58, of the contents of <paramref name="bytes"/>.
/// </returns>
public static string Encode(byte[] bytes)
{
return SimpleBase.Base58.Bitcoin.Encode(bytes);
}
/// <summary>
/// Converts an array of 8-bit unsigned integers to its equivalent string representation that is
/// encoded with base-58 digits.
/// </summary>
/// <param name="bytes">
/// An array of 8-bit unsigned integers.
/// </param>
/// <returns>
/// The string representation, in base 58, of the contents of <paramref name="bytes"/>.
/// </returns>
public static string ToBase58(this byte[] bytes)
{
return Encode(bytes);
}
/// <summary>
/// Converts the specified <see cref="string"/>, which encodes binary data as base 58 digits,
/// to an equivalent 8-bit unsigned integer array.
/// </summary>
/// <param name="s">
/// The base 58 string to convert.
/// </param>
/// <returns>
/// An array of 8-bit unsigned integers that is equivalent to <paramref name="s"/>.
/// </returns>
public static byte[] Decode(string s)
{
return SimpleBase.Base58.Bitcoin.Decode(s);
}
/// <summary>
/// Converts the specified <see cref="string"/>, which encodes binary data as base 58 digits,
/// to an equivalent 8-bit unsigned integer array.
/// </summary>
/// <param name="s">
/// The base 58 string to convert.
/// </param>
/// <returns>
/// An array of 8-bit unsigned integers that is equivalent to <paramref name="s"/>.
/// </returns>
public static byte[] FromBase58(this string s)
{
return Decode(s);
}
}
}