aboutsummaryrefslogtreecommitdiffstats
path: root/ffi/cs/bls256_test.cs
blob: 5c358fea0495f75bdc76cfcfd40b2dcefa6bc4cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using System;

namespace mcl {
    using static BLS256;
    class BLS256Test {
        static int err = 0;
        static void assert(string msg, bool b)
        {
            if (b) return;
            Console.WriteLine("ERR {0}", msg);
            err++;
        }
        static void TestId()
        {
            Console.WriteLine("TestId");
            Id id = new Id();
            id.SetStr("255", 10);
            assert("GetStr(10)", id.GetStr(10) == "255");
            assert("GetStr(16)", id.GetStr(16) == "ff");
            id.SetArray(new ulong[] { 1, 2, 3, 4 });
            assert("GetStr(16)", id.GetStr(16) == "4000000000000000300000000000000020000000000000001");
        }
        static void TestSecretKey()
        {
            Console.WriteLine("TestSecretKey");
            SecretKey sec = new SecretKey();
            sec.SetStr("255", 10);
            assert("GetStr(10)", sec.GetStr(10) == "255");
            assert("GetStr(16)", sec.GetStr(16) == "ff");
            sec.SetArray(new ulong[] { 1, 2, 3, 4 });
            assert("GetStr(16)", sec.GetStr(16) == "4000000000000000300000000000000020000000000000001");
            {
                SecretKey sec2 = new SecretKey();
                sec.SetStr("321", 10);
                sec2.SetStr("4000", 10);
                sec.Add(sec2);
                assert("sec.Add", sec.GetStr(10) == "4321");
                sec.Init();
                Console.WriteLine("sec.Init={0}", sec);
            }
        }
        static void Main(string[] args)
        {
            try {
                Init();
                TestId();
                TestSecretKey();
                if (err == 0) {
                    Console.WriteLine("all tests succeed");
                } else {
                    Console.WriteLine("err={0}", err);
                }
            } catch (Exception e) {
                Console.WriteLine("ERR={0}", e);
            }
        }
    }
}