Block and transaction verifications
[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     /// <summary>
26     /// Miscellaneous functions
27     /// </summary>
28     public class Interop
29     {
30         /// <summary>
31         /// Reverse byte array
32         /// </summary>
33         /// <param name="source">Source array</param>
34         /// <returns>Result array</returns>
35         public static byte[] ReverseBytes(byte[] source)
36         {
37             var b = new byte[source.Length];
38
39             source.CopyTo(b, 0);
40
41             Array.Reverse(b);
42
43             return b;
44         }
45
46         public static byte[] HexToArray(string hex)
47         {
48             int nChars = hex.Length;
49             var bytes = new byte[nChars / 2];
50
51             for (int i = 0; i < nChars; i += 2)
52             {
53                 bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
54             }
55
56             return bytes;
57         }
58
59         public static string ToHex(byte[] bytes)
60         {
61             var sb = new StringBuilder();
62             foreach (var b in bytes)
63             {
64                 sb.AppendFormat("{0:x2}", b);
65             }
66             return sb.ToString();
67         }
68
69         public static uint GetTime()
70         {
71             return (uint)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds;
72         }
73     }
74 }