Bitcoin Forum
April 27, 2024, 08:03:56 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 [1583] 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 ... 2557 »
  Print  
Author Topic: NXT :: descendant of Bitcoin - Updated Information  (Read 2761529 times)
^[GS]^
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 10, 2014, 12:57:43 PM
 #31641

The idea was to prevent hacking and emptyings.

Is almost impossible to make a error sending by placing the phrase and all. Tongue

My next idea to prevent hacking and emptyings consists to create a second key 16-32 characters.
That would register like the ALIAS. Key is not used to unlock the account, only to send!
The key can be changed.
Remember that Bitcoin is still beta software. Don't put all of your money into BTC!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714248236
Hero Member
*
Offline Offline

Posts: 1714248236

View Profile Personal Message (Offline)

Ignore
1714248236
Reply with quote  #2

1714248236
Report to moderator
1714248236
Hero Member
*
Offline Offline

Posts: 1714248236

View Profile Personal Message (Offline)

Ignore
1714248236
Reply with quote  #2

1714248236
Report to moderator
EmoneyRu
Hero Member
*****
Offline Offline

Activity: 600
Merit: 500

Nxt-kit developer


View Profile
February 10, 2014, 12:58:44 PM
 #31642

Code:
63096 	15'475 + 19 	282 %
?

CIYAM
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
February 10, 2014, 01:01:47 PM
 #31643

Nxt exchanges shouldn't rely on transaction ids though. Coz ids can be changed in a way similar to Bitcoin.

So - there we have it from CfB - Nxt has THE SAME problem as Bitcoin.

Can you please stop the stupid tweets now as I can see CfB's statement being used as the "payback".

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
abctc
Legendary
*
Offline Offline

Activity: 1792
Merit: 1038



View Profile
February 10, 2014, 01:02:36 PM
 #31644

Code:
63096 	15'475 + 19 	282 %
?
- correct.

█████████████████████████████████████████████████
███████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
██████████████████████████████████████████████████████
█████
█████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████
███████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████
   
, the Next platform.  Magis quam Moneta (More than a Coin)
BitcoinForumator
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


View Profile
February 10, 2014, 01:04:15 PM
 #31645

Nxt exchanges shouldn't rely on transaction ids though. Coz ids can be changed in a way similar to Bitcoin.

So - there we have it from CfB - Nxt has THE SAME problem as Bitcoin.

Can you please stop the stupid tweets now as I can see CfB's statement being used as the "payback".


Delete this asap  Grin

Edit: i will delete it to  Cheesy
jkoil
Hero Member
*****
Offline Offline

Activity: 834
Merit: 524


Nxt NEM


View Profile
February 10, 2014, 01:06:47 PM
 #31646

if you're asking if negative input is legal, yes it is.

To simplify it, it's similar to how modulo operates in C.
If you do:
Code:
int x = (1-3) % 5;    // -2 % 5

you'll get "-2" as a result, but what you're actually interested in is:
Code:
int x = (1-3 + group_order) % 5;    // (-2 + 5) % 5  = 3 % 5 == 5

group_order == 5, and you'll get 3 as a result...

Yes, I know.

So, the problem is that -2 or 3 is processed further and we are not certain if -2 behaves differently than 3 does. That is certainly a problem.

EDIT: we are not certain if the 3 resulting from a -2 is process the same way as we would give it another try.

"-2" is passed as input to verify() which was expecting to see "3" not "-2"...


But it is not sure, if -2 in form as a 3 would result in the same outcome as it would be a 'real' 3 from the beginning.

In math  -2 mod 5 equals 3.   Is that the result, which is wanted?    ... in that case C implementation is wrong there and should not use % with negative numbers. (change to positive by adding 5)




I think that's not the point here. Consider this:
Code:
b = f(a)

c = g(b)

d = h(a, c)

Let's assume c results in -2 with a certain b.

Even if c=-2 and c=3 are interchangeable mathematically, h might not work as expected as the pair (a, c) belong together.

So, it could be the case that h(a, -2) != h(a, 3) for the very same a. This must be avoided at any cost.

yes ... and no Smiley   
No; I didn't mean that c=-2 and c=3 are interchangeable. The results and consequences are likely different, possibly in "many" cases, where the c will be used (in h(a,c) as you  stated).
Yes; as you said "this must be avoided at any cost."   I agree, when not knowing the background of the original implementation (has it been assumed that no negative input or something else...)  Smiley


CIYAM
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
February 10, 2014, 01:08:55 PM
 #31647

Delete this asap  Grin

Just as those who "couldn't resist" trying to "score points" from the FUD - I can't resist keeping the "told you so".

Grin

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
BitcoinForumator
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


View Profile
February 10, 2014, 01:11:29 PM
 #31648

Delete this asap  Grin

Just as those who "couldn't resist" trying to "score points" from the FUD - I can't resist keeping the "told you so".

Grin


I know Smiley But many/most? of us actually put a lot of weight to your words.
wesleyh
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250


View Profile
February 10, 2014, 01:11:50 PM
 #31649

So why does nxt have this problem too? Is this something inherent to crypto currencies?

Can it be fixed?
Will it be fixed?
What should exchanges rely on instead of transaction Ids / transaction bytes?
bitcoinpaul
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1000



View Profile
February 10, 2014, 01:13:07 PM
 #31650

The idea was to prevent hacking and emptyings.

Is almost impossible to make a error sending by placing the phrase and all. Tongue

My next idea to prevent hacking and emptyings consists to create a second key 16-32 characters.
That would register like the ALIAS. Key is not used to unlock the account, only to send!
The key can be changed.


BCNext implements Account Control. Let's wait for that...
CIYAM
Legendary
*
Offline Offline

Activity: 1890
Merit: 1075


Ian Knowles - CIYAM Lead Developer


View Profile WWW
February 10, 2014, 01:16:23 PM
 #31651

So why does nxt have this problem too? Is this something inherent to crypto currencies?

Can it be fixed?
Will it be fixed?
What should exchanges rely on instead of transaction Ids / transaction bytes?

It is due to the way a tx is constructed and hashed - if the signature(s) do not include every byte of the transaction then it will always be possible to modify the tx and if the hash is of the entire tx (not just the signed part(s)) then there is not much you can do about it apart from:

Don't rely upon the tx hash (something Mt. Gox should never have been doing in the first place).

Nxt does actually make things simpler in that you can just use Account #s (you don't have to deal with UTXOs).

An exchange should only display a txid *after* the tx has been confirmed (until then it should just be displayed as "unconfirmed" with no hash at all) and even then the txid should only be handled as "descriptive" data (i.e. not indexed for any important purpose).

With CIYAM anyone can create 100% generated C++ web applications in literally minutes.

GPG Public Key | 1ciyam3htJit1feGa26p2wQ4aw6KFTejU
pandaisftw
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
February 10, 2014, 01:17:37 PM
 #31652

So why does nxt have this problem too? Is this something inherent to crypto currencies?

Can it be fixed?
Will it be fixed?
What should exchanges rely on instead of transaction Ids / transaction bytes?

Only thing I can think of off the top of my head is individualized accounts, so you can constantly poll getGauranteedBalance on them.

Question: If what parts of the transactions can be faked? The sender ID? All of it?

NXT: 13095091276527367030
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
February 10, 2014, 01:18:23 PM
 #31653

So why does nxt have this problem too? Is this something inherent to crypto currencies?

Can it be fixed?
Will it be fixed?
What should exchanges rely on instead of transaction Ids / transaction bytes?

It's a problem only for exchanges that rely solely on transaction id. It doesn't need to be fixed. An exchange is supposed to pay attention to timestamp and other parameters of a transaction.
^[GS]^
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
February 10, 2014, 01:23:52 PM
 #31654

The idea was to prevent hacking and emptyings.

Is almost impossible to make a error sending by placing the phrase and all. Tongue

My next idea to prevent hacking and emptyings consists to create a second key 16-32 characters.
That would register like the ALIAS. Key is not used to unlock the account, only to send!
The key can be changed.


BCNext implements Account Control. Let's wait for that...
ahhh! I did not know! expect expect!  Grin
gimre
Legendary
*
Offline Offline

Activity: 866
Merit: 1002



View Profile WWW
February 10, 2014, 01:27:31 PM
 #31655

I think that's not the point here. Consider this:
Code:
b = f(a)

c = g(b)

d = h(a, c)

Let's assume c results in -2 with a certain b.

Even if c=-2 and c=3 are interchangeable mathematically, h might not work as expected as the pair (a, c) belong together.

So, it could be the case that h(a, -2) != h(a, 3) for the very same a. This must be avoided at any cost.

That IS the case, as h == verify, verify WORKS (validates) on "3" (and it SHOULD work on "3") and doesn't work on "-2",
(that's why you can see those "Generated incorrect block messages")

NemusExMāchinā
Catapult docs: https://docs.symbol.dev
github: https://github.com/symbol
salsacz
Hero Member
*****
Offline Offline

Activity: 490
Merit: 504


View Profile
February 10, 2014, 01:36:36 PM
 #31656

important people from Berlin conf are responding on my invitation and they are very excited about Nxt Smiley
Bitventurer
Sr. Member
****
Offline Offline

Activity: 488
Merit: 250

S P 8 D E


View Profile WWW
February 10, 2014, 01:41:35 PM
 #31657

important people from Berlin conf are responding on my invitation and they are very excited about Nxt Smiley

let's decide how much coins we will tip away...infecting people with NXT from our smartphones...

SP8DE - The Game of Chance. Changed.
allwelder
Legendary
*
Offline Offline

Activity: 1512
Merit: 1004



View Profile
February 10, 2014, 01:43:28 PM
 #31658



tell you DGEX to send and receive your deposits in 10 minutes. lol


I don't know what Dgex problems are but I can use bter to sell and buy Nxt within minutes.

This is DGex problem, not Nxt.

Would you buy online clips (porn or not)  with Nxt if you get the download link AFTER  24 hours?

That will make Nxt useless.

Even bitcoin with 10 minute for one confirmation is faster.


I will accept Nxt as a merchant with even one confirmation (1 minute), but I won't accept Nxt if transactions are reversible for 24 hours.

I would rather then find a better currency.
no body said the transaction is reversible.

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.CryptoTalk.org.|.MAKE POSTS AND EARN BTC!.🏆
lovebit
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
February 10, 2014, 01:45:40 PM
 #31659

I heard on Lets Talk Bitcoin a few nights ago that the Zerocoin protocol is being developed for NXT.  Does this mean that NXT is developing a Zercoin-like protocol or have the Zerocoin developers decided to build on top of NXT?  Are the developers working together?
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
February 10, 2014, 01:46:25 PM
 #31660

important people from Berlin conf are responding on my invitation and they are very excited about Nxt Smiley

Do u mean Angela Merkel?
Pages: « 1 ... 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 [1583] 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 ... 2557 »
  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!