Implement some CScript functionality
[NovacoinLibrary.git] / Novacoin / Hash160.cs
index eb4e9e4..6aa9048 100644 (file)
@@ -8,47 +8,13 @@ namespace Novacoin
        /// <summary>
        /// Representation of pubkey/script hash.
        /// </summary>
-       public class Hash160
+       public class Hash160 : Hash
        {
         // 20 bytes
-        const int hashSize = 20;
-
-               /// <summary>
-               /// Array of digest bytes.
-               /// </summary>
-        private byte[] hashBytes = new byte[hashSize];
-
-               /// <summary>
-               /// Initializes an empty instance of the Hash160 class.
-               /// </summary>
-               public Hash160 ()
-               {
-            hashBytes = Enumerable.Repeat<byte>(0, hashSize).ToArray();
-               }
-
-        /// <summary>
-        /// Initializes a new instance of Hash160 class with first 20 bytes from supplied list
-        /// </summary>
-        /// <param name="bytesList">List of bytes</param>
-        public Hash160(IList<byte> bytesList)
+        public override int hashSize
         {
-            hashBytes = bytesList.Take<byte>(hashSize).ToArray<byte>();
+            get { return 20; }
         }
-
-        public Hash160(byte[] bytesArray)
-        {
-            hashBytes = bytesArray;
-        }
-
-               public override string ToString()
-               {
-            StringBuilder sb = new StringBuilder(hashSize * 2);
-            foreach (byte b in hashBytes)
-                       {
-                               sb.AppendFormat ("{0:x2}", b);
-                       }
-                       return sb.ToString();
-               }
        }
 }