Bitcoin Forum
May 29, 2024, 09:30:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 ... 610 »
  Print  
Author Topic: [XCR] Crypti | Dapps | Sidechains | Dapp Store | OPEN SOURCE | 100% own code | DPoS  (Read 804605 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
SyRenity
Hero Member
*****
Offline Offline

Activity: 756
Merit: 502


View Profile
July 10, 2014, 10:52:51 AM
 #1021

Quick question, will the desktop clients for Windows be packaged as .exe's? Also from a usability perspective don't you think a 100 character pass-phrase is a bit long?

We are looking to eventually package the node via NSIS installing, making them indeed one-click installable.

XCP wallet (https://counterwallet.co) uses about 80 - 85, hence the extra 15 are negligible and bring you towards the round number of 100.
SyRenity
Hero Member
*****
Offline Offline

Activity: 756
Merit: 502


View Profile
July 10, 2014, 10:53:22 AM
 #1022

This looks good, very professional looking crypto, i like it. I noticed totaly new design for the presentation, which is rare.

Thanks, appreciate the kind words.
coinsolidation
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250

Bitmark Developer


View Profile WWW
July 10, 2014, 10:56:35 AM
 #1023

To be constructive, here is a simple proposal which includes 2FA for creating private key, run on the client:

result = hash('username', password');
private-key = hash(result, '2fa');

This way people can remember their details, and the overall length is high and hard to crack, whilst the resulting private key is as strong as whatever you choose for the hashing algorithm in terms of collissions.

If you want send private key via post over https to server.

Alternatively you can store the key locally using sessionStorage and sign transactions with it to send to server, then you can potentially use system as web wallet, as no keys ever leave the private device. Upgrade to RSA keys to fully encrypt instead of just sign.

Bitmark (reputation+money) : Bitmark v0.9.4 (release)
crypti (OP)
Hero Member
*****
Offline Offline

Activity: 511
Merit: 500

Boris, Crypti Lead Developer, Lisk Advisor


View Profile WWW
July 10, 2014, 11:09:35 AM
 #1024

To be constructive, here is a simple proposal which includes 2FA for creating private key, run on the client:

result = hash('username', password');
private-key = hash(result, '2fa');

This way people can remember their details, and the overall length is high and hard to crack, whilst the resulting private key is as strong as whatever you choose for the hashing algorithm in terms of collissions.

If you want send private key via post over https to server.

Alternatively you can store the key locally using sessionStorage and sign transactions with it to send to server, then you can potentially use system as web wallet, as no keys ever leave the private device. Upgrade to RSA keys to fully encrypt instead of just sign.

Ok,
username=test
password=test

var userpass = username + password; //testtest
var hash = sha256(userpass);
var keypair = keypair(hash);

Good. But it's same that i will use as username = tes, as password=ttest

var userpass = username + password; // testtest

Same hash, same public and private key.

About https, as i said, today we will add SSL.
Wulfcastle
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500



View Profile WWW
July 10, 2014, 11:10:20 AM
 #1025

Quick question, will the desktop clients for Windows be packaged as .exe's? Also from a usability perspective don't you think a 100 character pass-phrase is a bit long?

We are looking to eventually package the node via NSIS installing, making them indeed one-click installable.

XCP wallet (https://counterwallet.co) uses about 80 - 85, hence the extra 15 are negligible and bring you towards the round number of 100.


Ah okay, never used XCP hence the confusion at the long pass-phrase, coming from a QT here so thought it would be shorter Smiley. Also you say that a Crypti SDK can leverage the network to allow the development of "decentralized networks with its own fee structure and assets", will you guys actually develop any of the mentioned platforms such as cloud storage etc yourself or will you leave that up to third-party developers
hatecrypti
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
July 10, 2014, 11:10:34 AM
 #1026

@all DEVs
Using platform to IPO is really unfair for the guys who has been following and giving good suggestions to this coin in the community, I am not in, you DEVs are just interesting in money not tech innovation, I don't know why  you don't register a company and sell the coins, why should you get support from the community for free?!so disappointed!
coinsolidation
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250

Bitmark Developer


View Profile WWW
July 10, 2014, 11:18:04 AM
 #1027

To be constructive, here is a simple proposal which includes 2FA for creating private key, run on the client:

result = hash('username', password');
private-key = hash(result, '2fa');

This way people can remember their details, and the overall length is high and hard to crack, whilst the resulting private key is as strong as whatever you choose for the hashing algorithm in terms of collissions.

If you want send private key via post over https to server.

Alternatively you can store the key locally using sessionStorage and sign transactions with it to send to server, then you can potentially use system as web wallet, as no keys ever leave the private device. Upgrade to RSA keys to fully encrypt instead of just sign.

Ok,
username=test
password=test

var userpass = username + password; //testtest
var hash = sha256(userpass);
var keypair = keypair(hash);

Good. But it's same that i will use as username = tes, as password=ttest

var userpass = username + password; // testtest

Same hash, same public and private key.

About https, as i said, today we will add SSL.

I'm sure you follow what I meant, you can put in a special char, wrap each of user/pass in a hash function, whatever needed to make it work... it is much better than /unlock?secretPhrase=test you must agree.

Bitmark (reputation+money) : Bitmark v0.9.4 (release)
Wulfcastle
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500



View Profile WWW
July 10, 2014, 11:20:32 AM
 #1028

@all DEVs
Using platform to IPO is really unfair for the guys who has been following and giving good suggestions to this coin in the community, I am not in, you DEVs are just interesting in money not tech innovation, I don't know why  you don't register a company and sell the coins, why should you get support from the community for free?!so disappointed!


Welcome to my Ignore List!   Grin

...follow my lead folks...

LOL, account created 10 minutes ago  Roll Eyes
Wulfcastle
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500



View Profile WWW
July 10, 2014, 11:29:27 AM
 #1029

Just bumping this up :
Quote
you say that a Crypti SDK can leverage the network to allow the development of "decentralized networks with its own fee structure and assets", will you guys actually develop any of the mentioned platforms such as cloud storage etc yourself or will you leave that up to third-party developers

Reason I ask this as Node.js doesn't have the same amount of developers or as big a community backing as say Java or C++. Nevertheless from what I know about it is that it scales better, but it suffers when tasked to do mathematical equations etc. Considering that all digital currencies are based on cryptography which itself is extremely mathematical intense, wouldn't that hinder Crypti's ability to scale as Node.js just doesn't run mathematical tasks as quick as other languages.
hatecrypti
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
July 10, 2014, 11:30:29 AM
 #1030

@all DEVs
Using platform to IPO is really unfair for the guys who has been following and giving good suggestions to this coin in the community, I am not in, you DEVs are just interesting in money not tech innovation, I don't know why  you don't register a company and sell the coins, why should you get support from the community for free?!so disappointed!


Welcome to my Ignore List!   Grin

...follow my lead folks...

LOL, account created 10 minutes ago  Roll Eyes

This is my sock puppet, I am a senior member in the community and has been following on this coin from the very beginning, can you answer my question, don't change the topic, I am very pleased to argue with you,this is a democratic  community
Everybody
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
July 10, 2014, 11:33:04 AM
 #1031

@all DEVs
Using platform to IPO is really unfair for the guys who has been following and giving good suggestions to this coin in the community, I am not in, you DEVs are just interesting in money not tech innovation, I don't know why  you don't register a company and sell the coins, why should you get support from the community for free?!so disappointed!



Is the IPO already running? How does it work?  Huh
Sethtabiah
Full Member
***
Offline Offline

Activity: 120
Merit: 100


View Profile
July 10, 2014, 11:36:10 AM
 #1032

I bought the share from bter but it is not showing in my account balance and also they deducted my btc from my btc account?

.          █▄▄ ▄ █▄ ■■ ◥◣◢◤      Professional Crypto and GHash Exchange                                          ** 0% Fee Trades Until September **
.          █▄█ █ █▄ ■■ ◢◤◥◣      USD  EUR  GBP  LTC  BTC
..                  Spend Bitcoin Anywhere in the World with your bit-x Debit Card
Everybody
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
July 10, 2014, 11:39:45 AM
 #1033

Is the IPO already running? How does it work?  Huh

If you were planning to use Bter then you can go ahead...  the bonus for today and tomorrow is the same (30%).

If you were planning to use maxmint's escrow service...  wait until tonight 00:00 UTC.



How works the IPO? Where can i see instructions?  Shocked
hatecrypti
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
July 10, 2014, 11:46:20 AM
 #1034

@all DEVs
Using platform to IPO is really unfair for the guys who has been following and giving good suggestions to this coin in the community, I am not in, you DEVs are just interesting in money not tech innovation, I don't know why  you don't register a company and sell the coins, why should you get support from the community for free?!so disappointed!



Is the IPO already running? How does it work?  Huh

You guys know nothing except sending your money to DEV, dumper! This is the root cause why DEV want a platform IPO, do you feel shame?!
qawzsx
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250

NOT FUD! FACTS!


View Profile
July 10, 2014, 11:48:28 AM
 #1035

Why is there such a high limit? this is absurd ... 5000 BTC? for real?
Or how is this working? All those money goes to the dev or how is this working?
qawzsx
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250

NOT FUD! FACTS!


View Profile
July 10, 2014, 11:51:52 AM
 #1036

So...let me guess, you keep all the BTC from the IPO from the SALE of the coins, and you keep 25% from the total coins too?

What am I missing?
qawzsx
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250

NOT FUD! FACTS!


View Profile
July 10, 2014, 11:53:10 AM
 #1037

Why is there such a high limit? this is absurd ... 5000 BTC? for real?
Or how is this working? All those money goes to the dev or how is this working?

That is just an Ask that Bter has placed so they won't have to deal with it every two minutes...  it doesn't necessarily mean that all those shares will be sold.  Plus...  maxmint will be holding a good chunk of BTC too...  Heads Exploding!!!   Cheesy

https://github.com/crypti/crypti-docs/blob/master/presale.md

So, tell me then, what is the total amount to be invested by all investors... all 100kk coins = ? BTC
qawzsx
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250

NOT FUD! FACTS!


View Profile
July 10, 2014, 11:54:42 AM
 #1038

So...let me guess, you keep all the BTC from the IPO from the SALE of the coins, and you keep 25% from the total coins too?

What am I missing?

https://github.com/crypti/crypti-docs/blob/master/presale.md

...I am just keeping my share of CRYPTI by the way...

I don't understand anything from that...

you sell coins to the ipo, lets say 75.000.000 coins  = 75 BTC, this is only an example.
You get the 75 BTC, and you still keep the 25% from the total number of coins?

qawzsx
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250

NOT FUD! FACTS!


View Profile
July 10, 2014, 11:55:11 AM
 #1039

So, tell me then, what is the total amount to be invested by all investors... all 100kk coins = ? BTC

We will all know on August 10th, 00:00 UTC.


I see, so this is only a scam...because believe me, with 1000 BTC in the pocket, not dev in the world with give a shit anymore about his not-even-developed coin...
qawzsx
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250

NOT FUD! FACTS!


View Profile
July 10, 2014, 11:57:01 AM
 #1040

I don't understand anything from that...

you sell coins to the ipo, lets say 75.000.000 coins  = 75 BTC, this is only an example.
You get the 75 BTC, and you still keep the 25% from the total number of coins?

https://github.com/crypti/crypti-docs/blob/master/presale.md


FUCK YOU WITH THAT LINK ALREADY...I SAID THAT I DON"T UNDERSTNAD A THING FROM THAT...ANSWER MY QUESTIONS!

ARE YOU A BOT OR SOMETHING?
Pages: « 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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 ... 610 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!