Author

Topic: SDC takes solution from Eclipse (Read 594 times)

legendary
Activity: 1008
Merit: 1000
September 12, 2016, 09:18:28 AM
#2
What do you expected from SDC? They go arounds copy/paste/edit codes all over crypto world and claimed their own.
Any post not pumping their crap coin or negative comment will be removed from their OP.
newbie
Activity: 16
Merit: 0
March 07, 2016, 03:45:55 AM
#1
Eclipse will soon be the market leader and overtake SDC.  Clearly superior developers with legit experience here.

Taken from: https://bitcointalksearch.org/topic/m.14121951


It looks like SDC went live with our solution for hashToEC.

https://i.imgur.com/S9Q3t7l.png


They switched from creating a new generator, discussed here: https://bitcointalksearch.org/topic/m.14079014

What's this mean?

We are the leaders kids.


This is the heart of our algo, pushed publicly 9 days ago:

Code:
    for (j = 0; j < k; ++j)
    {
        if (j == 0)
            x = u;
        else
        {
            secp256k1_fe_set_int(&i, j);
            secp256k1_fe_add(&x, &i);
        }
        if (secp256k1_ge_set_xquad_var(&Q, &x))
        {
            success = 1;
            break;
        }
    }



This is shadowcash's pushed to their repo 3 days ago:

Code:
        while(!EC_POINT_set_compressed_coordinates_GFp(ecGrp, ptRet, bnTmp, 0, bnCtx) && count < 100)
        {
            count += 1;

            if (count == 100)
                return errorN(1, "%s: Failed to find a valid point for public key.", __func__);

            BN_add(bnTmp, bnTmp, bnOne);
        }


This is their commit after they read our critique of their method:

https://github.com/shadowproject/shadow/commit/106afc6975cf41090ca2a0c47877de0cc8a16f1a



Jump to: