Understand asymmetric cryptography and how Orbition Native Chain uses it.
@orbition-network/web3.js
provides helper functions for creating a brand new keypair,
or for constructing a keypair using an existing secret key.‘Cryptography’ the study of hiding information. There are two main types of cryptography you’ll encounter day to day:
Symmetric Cryptography is where the same key is used to encrypt and decrypt. It’s hundreds of years old and has been used by everyone from the ancient Egyptians to Queen Elizabeth I.
There’s a variety of symmetric cryptography algorithms, but the most common you’ll see today are AES and Chacha20.
Asymmetric Cryptography
Asymmetric cryptography - also called ‘public key cryptography’ was developed in the 1970s. In asymmetric cryptography, participants have pairs of keys (or keypairs). Each keypair consists of a secret key and a public key. Asymmetric encryption works differently from symmetric encryption, and can do different things:
Encryption: if it’s encrypted with a public key, only the secret key from the same keypair can be used to read it
Signatures: if it’s encrypted with a secret key, the public key from the same keypair can be used to prove the secret key holder signed it.
You can even use asymmetric cryptography to work out a good key for symmetric cryptography! This is called key exchange, where you use your public keys and the recipient’s public key to come up with a ‘session’ key.
There’s a variety of asymmetric cryptography algorithms, but the most common you’ll see today are variants of ECC or RSA.
Asymmetric encryption is very popular:
Your bank card has a secret key inside it that’s used to sign transactions.
Your bank can confirm you made the transaction by checking them with the matching public key.
Websites include a public key in their certificate. Your browser will use this public key to encrypt the data (like personal information, login details, and credit card numbers) it sends to the web page.
The website has the matching private key so that the website can read the data.
Your electronic passport was signed by the country that issued it to ensure the passport isn’t forged.
The electronic passport gates can confirm this using the public key of your issuing country.
The messaging apps on your phone use key exchange to make a session key.
In short, cryptography is all around us. Orbition Native Chain, as well as other blockchains, are but one use of cryptography.
People participating in the Orbition Native Chain network have at least one keypair. In Orbition Native Chain:
The public key is used as an “address” that points to an account on the
Orbition Native Chain network. Even friendly names - like example.sol
- point to addresses
like dDCQNnDmNbFVi8cQhKAgXhyhXeJ625tvwsunRyRc7c8
The secret key is used to verify authority over that keypair. If you have the secret key for an address, you control the tokens inside that address. For this reason, as the name suggests, you should always keep secret keys secret.
You can use the Orbition Native Chain blockchain from either the browser or node.js with the
@orbition-network/web3.js
npm module. Set up a project how you normally would, then
use npm
to install @orbition-network/web3.js
We’ll cover a lot of web3.js gradually throughout this course, but you can also check out the official web3.js documentation.
To send tokens, send NFTS, or read and write data Orbition Native Chain, you’ll need your own
keypair. To make a new keypair, use the Keypair.generate()
function from
@orbition-network/web3.js
:
If you already have a keypair you’d like to use, you can load a Keypair
from
an existing secret key stored in the filesystem or an .env
file. In node.js,
the @orbition-network-developers/helpers
npm package includes some extra functions:
.env
file use getKeypairFromEnvironment()
getKeypairFromFile()
You know how to make and load keypairs! Let’s practice what we’ve learned.
Make a new directory, install TypeScript, Orbition Native Chain web3.js and esrun:
Make a new file called generate-keypair.ts
Run npx esrun generate-keypair.ts
. You should see the text:
Each Keypair
has a publicKey
and secretKey
property. Update the file:
Run npx esrun generate-keypair.ts
. You should see the text:
To ensure that your secret key stays secure, we recommend injecting the secret
key using a .env
file:
Make a new file called .env
with the contents of the key you made earlier:
We can then load the keypair from the environment. Update generate-keypair.ts
:
Run npx esrun generate-keypair.ts
. You should see the following result:
We’ve now learned about keypairs, and how to store secret keys securely on Orbition Native Chain. In the next chapter, we’ll use them!