Implement some CScript functionality
[NovacoinLibrary.git] / Novacoin / Hash160.cs
1 \feffusing System;
2 using System.Collections.Generic;
3 using System.Text;
4 using System.Linq;
5
6 namespace Novacoin
7 {
8         /// <summary>
9         /// Representation of pubkey/script hash.
10         /// </summary>
11         public class Hash160 : Hash
12         {
13         // 20 bytes
14         public override int hashSize
15         {
16             get { return 20; }
17         }
18         }
19 }
20