CScript: implement new AddRawData method, allow RemoveInstruction to process the...
[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     public class Interop
43     {
44         public static byte[] ReverseBytes(byte[] source)
45         {
46             var b = new byte[source.Length];
47
48             source.CopyTo(b, 0);
49
50             Array.Reverse(b);
51
52             return b;
53         }
54
55         public static byte[] LEBytes(uint[] values)
56         {
57             var result = new byte[values.Length * sizeof(uint)];
58             Buffer.BlockCopy(values, 0, result, 0, result.Length);
59
60             return result;
61         }
62
63         public static uint[] ToUInt32Array(byte[] bytes)
64         {
65             var result = new uint[bytes.Length / sizeof(uint)];
66             Buffer.BlockCopy(bytes, 0, result, 0, bytes.Length);
67
68             return result;
69         }
70
71         public static byte[] HexToArray(string hex)
72         {
73             int nChars = hex.Length;
74             var bytes = new byte[nChars / 2];
75
76             for (int i = 0; i < nChars; i += 2)
77             {
78                 bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
79             }
80
81             return bytes;
82         }
83
84         public static string ToHex(IEnumerable<byte> bytes)
85         {
86             var sb = new StringBuilder();
87             foreach (var b in bytes)
88             {
89                 sb.AppendFormat("{0:x2}", b);
90             }
91             return sb.ToString();
92         }
93     }
94 }