Stories
Slash Boxes
Comments

SoylentNews is people

posted by Fnord666 on Thursday March 15 2018, @04:59PM   Printer-friendly
from the blockchain-architecture dept.

"The blockchain method primarily used by those engaging in cryptocurrency transactions is a decentralized mechanism where all the information is stored in blocks, can be viewed and altered by registered users. In the case of Sierra Leone elections, allows the votes to be seen by voters who are registered within the system, in the public ledgers, but only allowed authorized persons to make any changes, this, in turn, prevents the chances of fraud since the voting information is available to all the blockchain users."

URL: https://www.telesurtv.net/english/news/Sierra-Leone-Announces-Run-Off-Elections-Becomes-First-Country-With-Blockchain-Powered-Elections-20180314-0013.html

I would personally like it if they would explain the mechanics of their so-called "blockchain" to us mortals.

As I understand a blockchain, it is an extensible data structure that (when used in a bitcoin context) incorporates sequentially applied, recursively structured self-referential checksum mechanisms to counter efforts at tampering with the contents of the blocks; usually, via recursive encryption.

~childo


Original Submission

 
This discussion has been archived. No new comments can be posted.
Display Options Threshold/Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 2) by Snow on Thursday March 15 2018, @05:08PM (1 child)

    by Snow (1601) on Thursday March 15 2018, @05:08PM (#653003) Journal

    usually, via recursive encryption.

    Not encryption, but rather the use of one way hashing algorithms.

    Each block begins with the hash of the previous block so retroactive changes to prior blocks change the checksum and invalidate subsequent blocks.

    As long as blocks and publicly released in real-time, any changes made after publishing a block would be detectable. If they don't release blocks in real time, then changes can be made until blocks are publicly released. (Assuming they aren't using any sort of significant Proof of Work.)

    Starting Score:    1  point
    Karma-Bonus Modifier   +1  

    Total Score:   2  
  • (Score: 2) by Snow on Thursday March 15 2018, @05:10PM

    by Snow (1601) on Thursday March 15 2018, @05:10PM (#653005) Journal

    Sorry to reply to myself... When I say change the checksum, I meant change the hash result of the block (which is more or less a checksum...).