Try โ€‚โ€‰HackMD

3: Private data on your local source chain

Each user in a Holochain network creates and stores their own data in a journal called a source chain. Each journal entry is cryptographically signed by its author, and is immutable once it's written.

Let's take another look at one single node and see what's happening from the user's perspective.

Agent identity

Back in the basics, we said that in Holochain, one pillar of trust is 'intrinsic data integrity.' To extend the metaphor a bit, the first stone in this pillar is public key cryptography, which allows each user to create their own account without a central login service.

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

When you join a hApp's network, you create an identity for yourself by generating a public/private key pair. With this key pair, you can:

  • identify yourself,
  • prove authorship of your data, and
  • view data meant for your eyes only.

The conductor generates and stores all your keypairs in an encrypted, password-protected file. This table shows how the public and private keys are used, and how they are different from each other.

[ diagram: maybe this following table could be made more visual? ]

Private Key Public Key
โ€ข Stays secret on your device โ€ข Shared with all your peers on the network
โ€ข Acts like a passwordโ€“-only you have it, and it's necessary for proving ownership of your public key โ€ข Acts like a user IDโ€“-uniquely identifies you to other users
โ€ข Acts like a royal sealโ€“-creates unforgeable, tamper-evident 'digital signatures' on your data โ€ข Acts like a picture of a royal sealโ€“-allows others to verify your signatures
โ€ข Acts like a mailbox keyโ€“-decrypts data encrypted with your public key โ€ข Acts like a mail slotโ€“-allows others to encrypt and send data meant only for you

Don't worry if some of this doesn't make sense. Public key cryptography is complicated, so analogies tend to end up pretty muddy.

Source chain: your own data store

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

The next stone in the pillar is a journal or log of every piece of data you've created. Only you have the authority to write to it, because it lives on your device and each entry must be signed by your private key.

Your journal is stored in a hash chain data structure. We call it a source chain, because every piece of data in a Holochain app (hApp) has its source in someone's journal.

This journal starts with two special system entries called 'genesis' entries:

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

  1. The hash of the DNA. Because the DNA constitutes the 'rules of play' for all agents in your app's network, this entry shows that you have seen and agree to abide by those rules.
  2. Your agent ID. This contains your public key. The signatures on all subsequent entries must match this public key in order to be valid.

After this comes the app entries or user data. As a developer, you define the format and custom validation rules for each type of app entry that your app needs. They can contain anything that fits into a string, but we give you tools to automatically convert from Rust structs to JSON and back again.

Other special system entry types may show up, but we'll get to those later.

An entry on your source chain must not be modified once it's been committed. This is important, because your source chain is a record of actions you've taken in the app.

How do we prevent, or at least detect, attempts to tamper with your source chain? Let's take a look at the commit process.

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

  1. When the DNA wants to create an entry, it first validates the entry according to its rules.
  2. It then asks the conductor to sign the entry with your private key.
  3. The conductor adds a header to the entry, which includes the signature and a few other items.
  4. The conductor saves the entry as the next item in your source chain.

The signature guarantees that the entry itself hasn't been tampered with by a corrupt actor. Like a physical signature written in ink, it guarantees that you created the entry. Unlike a physical signature, it's only valid for that specific entry, which means that if a third party tries to tamper with it, the signature breaks.

This lets us detect man-in-the-middle attacks on entry data. But it still doesn't tell us whether the source chain itself has been tampered with.

Let's take a closer look at the header. Along with the signature, it includes the hash of the previous header, a timestamp, and the entry's type.

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

Let's look even closer at that first line in the header.

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More โ†’

This is what ensures the integrity of the entire source chain. It points back to the previous entry's header, which points back to its previous entry's header, and so forth. With a paper journal, you can tell if someone's ripped out a page, glued a new page in, or taped a sheet of paper over an existing page. If you share your journal with someone else, they can verify its integrity in the same way. This chain of header hashes is the digital equivalent.

Butโ€“-what if I want to tamper with my own source chain? I have everything I need to recreate the necessary signatures and previous header hashes. This would be like buying a new journal, meticulously copying every entry up to the point that I wanted to make the change, then creating a new entry that didn't exist in my old journal. For a diary, this wouldn't matter so much. But if my source chain holds financial records, I could commit some serious mischief.

Holochain's answer is simpleโ€“-somebody will notice. More on that in the next concept!

Learn more

Tutorial: HelloMe >
Next: Public data on the DHT >>

tags: Holochain Core Concepts