Example #1
0
    static public string SelfTest()
    {
        string output = string.Empty;
        NECDsa dsa    = new NECDsa();

        dsa.Generate();
        dsa.Sign("hello!");
        dsa.Sign("hello!");
        return(output);
    }