Remove zero only if serialized key is 33 bytes long.
[NovacoinLibrary.git] / Novacoin / Interop.cs
1 \feff/**
2  *  Novacoin classes library
3  *  Copyright (C) 2015 Alex D. (balthazar.ad@gmail.com)
4
5  *  This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU Affero General Public License as
7  *  published by the Free Software Foundation, either version 3 of the
8  *  License, or (at your option) any later version.
9
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU Affero General Public License for more details.
14
15  *  You should have received a copy of the GNU Affero General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 using System;
20 using System.Collections.Generic;
21 using System.Text;
22
23 namespace Novacoin
24 {
25     public class InteropException : Exception
26     {
27         public InteropException()
28         {
29         }
30
31         public InteropException(string message)
32             : base(message)
33         {
34         }
35
36         public InteropException(string message, Exception inner)
37             : base(message, inner)
38         {
39         }
40     }
41
42     /// <summary>
43     /// Miscellaneous functions
44     /// </summary>
45     public class Interop
46     {
47         /// <summary>
48         /// Reverse byte array
49         /// </summary>
50         /// <param name="source">Source array</param>
51         /// <returns>Result array</returns>
52         public static byte[] ReverseBytes(byte[] source)
53         {
54             var b = new byte[source.Length];
55
56             source.CopyTo(b, 0);
57
58             Array.Reverse(b);
59
60             return b;
61         }
62
63         public static byte[] HexToArray(string hex)
64         {
65             int nChars = hex.Length;
66             var bytes = new byte[nChars / 2];
67
68             for (int i = 0; i < nChars; i += 2)
69             {
70                 bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
71             }
72
73             return bytes;
74         }
75
76         public static string ToHex(IEnumerable<byte> bytes)
77         {
78             var sb = new StringBuilder();
79             foreach (var b in bytes)
80             {
81                 sb.AppendFormat("{0:x2}", b);
82             }
83             return sb.ToString();
84         }
85
86         public static int GetTime()
87         {
88             return (int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds;
89         }
90     }
91 }