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