Pages:
Author

Topic: [ANN] [DSK] DarkCash | PoW/PoS | StackHash | I2P | TOR | Markets - page 8. (Read 15591 times)

sr. member
Activity: 313
Merit: 250
Wann gehts los? Smiley
sr. member
Activity: 240
Merit: 250
NEWS: SOURCE READY, SHOULD WE IMPLEMENT TOR AND I2P NOW?

Release it!!! Cheesy Will we have linux wallet?
sr. member
Activity: 280
Merit: 250
From Russia with love
NEWS: SOURCE READY, SHOULD WE IMPLEMENT TOR AND I2P NOW?

Maybe after release?
newbie
Activity: 28
Merit: 0
NEWS: SOURCE READY, SHOULD WE IMPLEMENT TOR AND I2P NOW?
newbie
Activity: 28
Merit: 0
So far so good....Will keep a watch on this coin.

Thank You for your interest. So far I am fixing up some bugs and on initial release it will be like ShadowCoin but without BIP44 and with a GPU/ASIC (or worst case CPU) resistant algorithm and slightly more security.
sr. member
Activity: 444
Merit: 250
So far so good....Will keep a watch on this coin.
newbie
Activity: 28
Merit: 0
"PITA (Pain In The Ass - Secret Feature)"

it will be released when the dev dump and disappear

LOL

You wish but I spent way too much time working on this so I am not going to dissapear, also to dump you need coins, this is 0 premine, also PITA is basically bugs and possibly bugged code

Sounds good
please countdown  Cool
PoW Reward: 0.025 DSK Incrementing Every 25000 Blocks until reaching 5 DSK and then reducing till 1 DSK and staying there.
total coin?

Well, two weeks is an approximate, I got most things to work but my list of errors

- UI Failure
- Public Key RAW Output Failure
- Missing Dependancies (Secure Messaging)
- QTLocalServer
- OutPutDebugStringF
- Proxy

Finalized Version of the Algorithm is released (without dependancies):

https://github.com/sightisanillusion/stackhash/blob/master/stack.h



Current Hash Algorithm without RandMemoHash Implementation

Will you supply cpu and gpu miner on release?

No, that's out of my area of expertise

So in wallet miner?

Yup!
full member
Activity: 154
Merit: 104
Finalized Version of the Algorithm is released (without dependancies):

https://github.com/sightisanillusion/stackhash/blob/master/stack.h



Current Hash Algorithm without RandMemoHash Implementation

Will you supply cpu and gpu miner on release?

No, that's out of my area of expertise

So in wallet miner?
legendary
Activity: 1568
Merit: 1012
Sounds good
please countdown  Cool
PoW Reward: 0.025 DSK Incrementing Every 25000 Blocks until reaching 5 DSK and then reducing till 1 DSK and staying there.
total coin?
legendary
Activity: 2184
Merit: 1028
#mitandopelomundo
"PITA (Pain In The Ass - Secret Feature)"

it will be released when the dev dump and disappear

LOL
newbie
Activity: 28
Merit: 0
Finalized Version of the Algorithm is released (without dependancies):

https://github.com/sightisanillusion/stackhash/blob/master/stack.h



Current Hash Algorithm without RandMemoHash Implementation

Will you supply cpu and gpu miner on release?

No, that's out of my area of expertise
full member
Activity: 154
Merit: 104
newbie
Activity: 28
Merit: 0
Code:
#ifndef STACKHASH_H
#define STACKHASH_H

#include "uint256.h"
#include "sph_blake.h"
#include "sph_bmw.h"
#include "sph_groestl.h"
#include "sph_jh.h"
#include "sph_keccak.h"
#include "sph_skein.h"
#include "sph_luffa.h"
#include "sph_cubehash.h"
#include "sph_shavite.h"
#include "sph_simd.h"
#include "sph_echo.h"
#include "sph_hamsi.h"
#include "sph_fugue.h"
#include "sph_shabal.h"
#include "sph_whirlpool.h"
#include "sph_sha2.h"

#ifndef QT_NO_DEBUG
#include
#endif

#ifdef GLOBALDEFINED
#define GLOBAL
#else
#define GLOBAL extern
#endif

GLOBAL sph_blake512_context     z_blake;
GLOBAL sph_bmw512_context       z_bmw;
GLOBAL sph_groestl512_context   z_groestl;
GLOBAL sph_jh512_context        z_jh;
GLOBAL sph_keccak512_context    z_keccak;
GLOBAL sph_skein512_context     z_skein;
GLOBAL sph_luffa512_context     z_luffa;
GLOBAL sph_cubehash512_context  z_cubehash;
GLOBAL sph_shavite512_context   z_shavite;
GLOBAL sph_simd512_context      z_simd;
GLOBAL sph_echo512_context      z_echo;
GLOBAL sph_hamsi512_context     z_hamsi;
GLOBAL sph_fugue512_context     z_fugue;
GLOBAL sph_shabal512_context    z_shabal;
GLOBAL sph_whirlpool_context    z_whirlpool;
GLOBAL sph_sha512_context       z_sha2;

#define fillz() do { \
    sph_blake512_init(&z_blake); \
    sph_bmw512_init(&z_bmw); \
    sph_groestl512_init(&z_groestl); \
    sph_jh512_init(&z_jh); \
    sph_keccak512_init(&z_keccak); \
    sph_skein512_init(&z_skein); \
    sph_luffa512_init(&z_luffa); \
    sph_cubehash512_init(&z_cubehash); \
    sph_shavite512_init(&z_shavite); \
    sph_simd512_init(&z_simd); \
    sph_echo512_init(&z_echo); \
    sph_hamsi512_init(&z_hamsi); \
    sph_fugue512_init(&z_fugue); \
    sph_shabal512_init(&z_shabal); \
    sph_whirlpool_init(&z_whirlpool); \
    sph_sha512_init(&z_sha2); \
} while (0)


#define ZBLAKE (memcpy(&ctx_blake, &z_blake, sizeof(z_blake)))
#define ZBMW (memcpy(&ctx_bmw, &z_bmw, sizeof(z_bmw)))
#define ZGROESTL (memcpy(&ctx_groestl, &z_groestl, sizeof(z_groestl)))
#define ZJH (memcpy(&ctx_jh, &z_jh, sizeof(z_jh)))
#define ZKECCAK (memcpy(&ctx_keccak, &z_keccak, sizeof(z_keccak)))
#define ZSKEIN (memcpy(&ctx_skein, &z_skein, sizeof(z_skein)))
#define ZHAMSI (memcpy(&ctx_hamsi, &z_hamsi, sizeof(z_hamsi)))
#define ZFUGUE (memcpy(&ctx_fugue, &z_fugue, sizeof(z_fugue)))
#define ZSHABAL (memcpy(&ctx_shabal, &z_shabal, sizeof(z_shabal)))
#define ZWHIRLPOOL (memcpy(&ctx_whirlpool, &z_whirlpool, sizeof(z_whirlpool)))
#define ZSHA2 (memcpy(&ctx_sha2, &z_sha2, sizeof(z_sha2)))

template
inline uint256 Hash9(const T1 pbegin, const T1 pend)

{
    sph_blake512_context      ctx_blake;
    sph_bmw512_context        ctx_bmw;
    sph_groestl512_context    ctx_groestl;
    sph_jh512_context         ctx_jh;
    sph_keccak512_context     ctx_keccak;
    sph_skein512_context      ctx_skein;
    sph_luffa512_context      ctx_luffa;
    sph_cubehash512_context   ctx_cubehash;
    sph_shavite512_context    ctx_shavite;
    sph_simd512_context       ctx_simd;
    sph_echo512_context       ctx_echo;
    sph_hamsi512_context      ctx_hamsi;
    sph_fugue512_context      ctx_fugue;
    sph_shabal512_context     ctx_shabal;
    sph_whirlpool_context     ctx_whirlpool;
    sph_sha512_context        ctx_sha2;

static unsigned char pblank[1];

#ifndef QT_NO_DEBUG
    //std::string strhash;
    //strhash = "";
#endif
   
    uint512 hash[17];

    sph_shabal512_init(&ctx_shabal);
    sph_shabal512 (&ctx_shabal, (pbegin == pend ? pblank : static_cast(&pbegin[0])), (pend - pbegin) * sizeof(pbegin[0]));
    sph_shabal512_close(&ctx_shabal, static_cast(&hash[0]));
   
    sph_bmw512_init(&ctx_bmw);
    sph_bmw512 (&ctx_bmw, static_cast(&hash[0]), 64);
    sph_bmw512_close(&ctx_bmw, static_cast(&hash[1]));

    sph_groestl512_init(&ctx_groestl);
    sph_groestl512 (&ctx_groestl, static_cast(&hash[1]), 64);
    sph_groestl512_close(&ctx_groestl, static_cast(&hash[2]));

    if ((hash[2] & mask) != zero)
    {
        sph_keccak512_init(&ctx_keccak);
        sph_keccak512 (&ctx_keccak, static_cast(&hash[2]), 64);
        sph_keccak512_close(&ctx_keccak, static_cast(&hash[3]));
    }
    else
    {
sph_skein512_init(&ctx_skein);
sph_skein512 (&ctx_skein, static_cast(&hash[2]), 64);
sph_skein512_close(&ctx_skein, static_cast(&hash[3]));
    }

sph_shabal512_init(&ctx_shabal);
    sph_shabal512 (&ctx_shabal, static_cast(&hash[3]), 64);
    sph_shabal512_close(&ctx_shabal, static_cast(&hash[4]));

if ((hash[4] & mask) != zero)
    {
sph_jh512_init(&ctx_jh);
sph_jh512 (&ctx_jh, static_cast(&hash[4]), 64);
sph_jh512_close(&ctx_jh, static_cast(&hash[5]));
    }
    else
    {
sph_cubehash512_init(&ctx_cubehash);
sph_cubehash512 (&ctx_cubehash, static_cast(&hash[4]), 64);
sph_cubehash512_close(&ctx_cubehash, static_cast(&hash[5]));
    }

sph_shabal512_init(&ctx_shabal);
    sph_shabal512 (&ctx_shabal, static_cast(&hash[5]), 64);
    sph_shabal512_close(&ctx_shabal, static_cast(&hash[6]));

if ((hash[6] & mask) != zero)
    {
sph_keccak512_init(&ctx_keccak);
sph_keccak512 (&ctx_keccak, static_cast(&hash[6]), 64);
sph_keccak512_close(&ctx_keccak, static_cast(&hash[7]));
    }
    else
    {
sph_cubehash512_init(&ctx_cubehash);
sph_cubehash512 (&ctx_cubehash, static_cast(&hash[6]), 64);
sph_cubehash512_close(&ctx_cubehash, static_cast(&hash[7]));
    }

sph_shabal512_init(&ctx_shabal);
    sph_shabal512 (&ctx_shabal, static_cast(&hash[7]), 64);
    sph_shabal512_close(&ctx_shabal, static_cast(&hash[8]));

if ((hash[8] & mask) != zero)
    {
sph_luffa512_init(&ctx_luffa);
sph_luffa512 (&ctx_luffa, static_cast(&hash[8]), 64);
sph_luffa512_close(&ctx_luffa, static_cast(&hash[9]));
    }
    else
    {
sph_simd512_init(&ctx_simd);
sph_simd512 (&ctx_simd, static_cast(&hash[8]), 64);
sph_simd512_close(&ctx_simd, static_cast(&hash[9]));
    }

  sph_shabal512_init(&ctx_shabal);
    sph_shabal512 (&ctx_shabal, static_cast(&hash[9]), 64);
    sph_shabal512_close(&ctx_shabal, static_cast(&hash[10]));

if ((hash[10] & mask) != zero)
    {
sph_echo512_init(&ctx_echo);
sph_echo512 (&ctx_echo, static_cast(&hash[10]), 64);
sph_echo512_close(&ctx_echo, static_cast(&hash[11]));
    }
    else
    {
sph_hamsi512_init(&ctx_hamsi);
sph_hamsi512 (&ctx_hamsi, static_cast(&hash[10]), 64);
sph_hamsi512_close(&ctx_hamsi, static_cast(&hash[11]));
    }

if ((hash[11] & mask) != zero)
    {
sph_fugue512_init(&ctx_fugue);
sph_fugue512 (&ctx_fugue, static_cast(&hash[11]), 64);
sph_fugue512_close(&ctx_fugue, static_cast(&hash[12]));
    }
    else
    {
sph_whirlpool_init(&ctx_whirlpool);
sph_whirlpool (&ctx_whirlpool, static_cast(&hash[11]), 64);
sph_whirlpool_close(&ctx_whirlpool, static_cast(&hash[12]));
    }

if ((hash[12] & mask) != zero)
    {
sph_sha512_init(&ctx_sha2);
sph_sha512 (&ctx_sha2, static_cast(&hash[12]), 64);
sph_sha512_close(&ctx_sha2, static_cast(&hash[13]));
    }
    else
    {
sph_blake512_init(&ctx_blake);
sph_blake512 (&ctx_blake, static_cast(&hash[11]), 64);
sph_blake512_close(&ctx_blake, static_cast(&hash[12]));
    }

    return hash[12].trim256();
}

#endif // STACKHASH_H

Current Hash Algorithm without RandMemoHash Implementation
newbie
Activity: 28
Merit: 0
when it will be launched?  Wink

It's an experiment, after my satisfaction it is stable, I can tell
full member
Activity: 137
Merit: 100
This wouldn't be the first DarkCash,

https://bitcointalksearch.org/topic/anndrkc-darkcash-0-premine-powpos-x11-p2p-exchange-atm-anon-709322

Don't know if it makes a difference, it was quite a while ago.
legendary
Activity: 1059
Merit: 1000
when it will be launched?  Wink
newbie
Activity: 28
Merit: 0
Thank you for your interest in DarkCash
newbie
Activity: 28
Merit: 0
So CPU only?

It is also GPU Compatible but it will not make sense as the GPU will work inefficiently compared to the CPU's

It's as good as - CPU - 12 H/s and GPU - 3 H/s
hero member
Activity: 574
Merit: 500
newbie
Activity: 28
Merit: 0
10 second block times? Would that not be a threat to network security?

Latency Issues

10 second block times? Would that not be a threat to network security?



There will be problems with latency using a 10 second block time. Lot's of forks and orphans.




Solutions:

1) We increase the block time to 27.5 Seconds (Safe In My Opinion)
2) We increase minimum difficulty?Huh (Experimentally Risky)

ocminer/stoner19 will be happy to see a PoW coin hahaha Cheesy

How is that so? So many coins are released in one day



notsofast, I will quote your Post on the OP



Looks interesting. Got a time-frame for the release of this bad mamma jamma?

This is severely bleeding edge so I can release the source code right now or later but not with a production network, so I need to know is it doable, so far our fork contains ShadowCoin/ShadowCash + FlutterCoin + DASH (Still Looking Into It) Code + StealthCash (Is it worth it?)
Pages:
Jump to: