29

Anonymous web authentication with Stellar blockchain

 5 years ago
source link: https://www.tuicool.com/articles/hit/Eb2Ubez
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Learn how to use the combination of signed transactions and JWT tokens to authenticate users from a pair of cryptographic keys that identify the blockchain user. This article is based on Stellar Web Authentication proposal by Sergey Nebolsin and Tom Quisel that now becomes a part of  Stellar ecosystem. The same approach might be used in theory with other blockchain solutions.

In our examples, we will be using JavaScript and Node.js, but keep in mind that SEP-0010 can be implemented in any language or framework, as long as your domain is  integrated into Stellar network and your users have Stellar accounts (public/private key pair).

Strictly speaking, web-based authentication and blockchain do not even have to appear in the same sentence, as technologically these concepts are not more related than apples and oranges. In reality, though, it is the web that is the medium where customers discover blockchain solutions and use the ecosystem of blockchain-based services: from wallets and stocks exchanges to shady ICO websites and lotteries.

Every application that involves blockchain transactions and is facing the web needs to authenticate users somehow and, surprisingly so, the majority of these offerings still rely on traditional ways of HTTP-based authentication: email-password pair or a social media login through OAuth or similar access delegation standards. As this ties the user to a real-world email address or a social account, modern web leaves no place for anonymity. And as the majority of web services store user-related information in their own databases, breaching one centralized data storage can result in an unprecedented personal data leak .

Blockchain technology, on the other hand, is based on two pillars: privacy and  decentralization .

There is no way of associating a real-world person with a specific blockchain account unless they disclose this link deliberately. There is no central data storage anywhere. All the information about users and their actions is distributed among the vast number of nodes of the specific blockchain. It is nearly impossible to fake a node or take the whole network down.

Even while modern authentication solutions for the Web are quite robust, they contradict the whole philosophy of blockchain: disclosure of any personal information, be it an email, a social account, or a plain nickname violates the privacy principle. The promise of decentralization is also broken.

While working on Stellar-based project for one of our clients, we faced the need to implement an authentication solution and have studied the blockchain ecosystem for an approach that satisfies both privacy and decentralization requirements and is simple and straightforward to implement. In the end, we chose to build an authentication flow from scratch—on top of a Stellar protocol that our client was already actively using. We took the whole journey from proposal to implementation, and now you are free to use it in your own projects.

Stellar Web Authentication is a secure method of creating the session between two parties—application and user—that does not require a user to provide anything except his blockchain-related data and does not involve any third-party services on the application’s side.

Before we dive into details of implementation, stay with us for a quick recap of some important concepts. Otherwise, jumpto code examples.

What is a blockchain?

If you strip down all the buzz, the idea behind the blockchain is simple: it is just a linked list of elements that contain information. These elements are called “blocks”, and as they are chained together by a certain data structure, we call the whole thing “blockchain”.

This list is distributed among the nodes on the network in a way that every node possesses a current version of the list (also called a ledger ) and can validate it. Most importantly, the ledger is cryptographically protected to make any major modification enormously difficult and virtually impossible.

What is Stellar?

Stellar network is a blockchain-based payment infrastructure run by a nonprofit foundation. It uses a  consensus-based protocol instead of mining to verify transactions and ensure the integrity of the system, thus solving the transaction speed problem that haunts other blockchain offerings, including Bitcoin. Stellar protocol can be used as a foundation for any “coin” in blockchain sense of the word, it does not have to be a currency per se. Stellar’s own coin is called lumen . Here is what we like about Stellar:

Discover the details of Stellar Consensus Protocol and learn about Federated Byzantine Agreement (FBA) either through academic paper or a more approachable webcomic strip .

  • It is  fast . Bitcoin or  Ethereum payments could take hours or even days to come through. Stellar payments generally take 2 to 5 seconds: since the network does not rely on resource-heavy mining. Stellar Consensus Protocol has also recently become an  IETF draft proposal and is promoted as a way to ensure trust in any distributed storage solutions, not necessarily blockchain.
  • It allows issuing custom tokens (called “assets” ). Such tokens might be used to represent any third-party entity or asset (like stock valuables) making it possible to implement real-economy accounting on the blockchain.
  • It has integrated distributed exchange (called SDX ). SDX eliminates the requirement to use any third-party centralized exchanges for assets and  facilitates conversion between third-party currencies.
  • SDKs implement a lot of features and are easy to use.
  • Stellar is based on  ED25519 elliptical curve cryptography.

Like any other blockchain, it has two base networks: test and public. A public network holds actual money, a test one is used for development.

We will use Stellar in our authentication examples, but keep in mind that the same principle might be implemented for many other blockchains.

What is a “blockchain user”?

The key concept of every blockchain is a key pair .

Whatever algorithm is used, key pair consist of two parts: public and private. Think of a public key as of a bank account number: you can safely show it to anyone and expect to be paid. Private (or secret) key, however, should be securely stored on the account owner’s side so it can be used by the owner to perform operations on an account.

Basically, in blockchain world, user = key pair .

Surely, a single person may own dozens or hundreds of different accounts, but there is no way to link them between each other without knowing any personal details: in other words, without disclosing user’s privacy.

Here is what a Stellar key pair looks like:

# Public key (starts with "G")
GC5X3FML4S25HDAMJYZJYAC3CKLDWV2Z6YPV3IZXOSHSQKNSKUNQFXQN

# Private key (starts with "S")
SBX7SARQOFS6IM2HS2N5TVK54AEF55E3FHOXBTWA6IPEEJJ4W5WJWE6W

A Stellar key pair (representing an account) can be generated in Stellar Laboratory . After creation, you can fund your account with “test” lumens that give you full API access to Stellar network in  test mode . Note, however, that the account will not physically appear on the  real network unless it is funded with real money. For the purposes of pure authentication, however, whether account exists or not is not important: any valid key pair is enough, as you will see later.

Authenticating with blockchain

First of all, we have to accept the fact that both our user and our application are identified through their respective key pairs only . Both parties can safely know each other’s public keys—and nothing else.

An application needs to ensure that a user who tries to get in is the real owner of an account. A user needs to ensure the same thing about an application. If both parties can verify each other’s identity, they can establish a session.

The very important fact about the key pair is that owners can sign and encrypt messages using their private keys. This signing usually happens under two scenarios.

  • Cryptographic signature:A party that knows the public key can ensure that the message was sent by the real owner of the corresponding private key.

  • End-to-end encryption: Message can be encrypted in the way that only the party holding a specified public key and knowing encryptor’s public key can decrypt it.

The second scenario is not relevant to our specific use-case, but if you want to see the implementation of end-to-end encryption in JavaScript, or play with the algorithm interactively —we recommend taking a look at the  TweetNaCl.js library (pronounced “tweet-salt”, see the chemistry pun?) that has succinct implementation (some are so tiny they fit in a tweet, hence the name) of most important cryptographic primitives.

In other words, to perform a successful authentication, we need to verify two simple facts:

  • An application with a known public key owns its secret key.
  • A user with a known public key owns their secret key.

SEP-0010 (Stellar Ecosystem Proposal), co-authored by Sergey Nebolsin, describes the flow in detail, but here is the summary:

  1. A user opens an application and requests a  challenge .
  2. The server generates a challenge: a regular signed Stellar transaction containing the client’s public key and some additional data to validate later.
  3. A user validates a challenge transaction signature and, if it is valid, signs it and sends it back to the application.
  4. An application validates an original challenge transaction and user’s signature, and issues a JWT access token.

Let’s take a look at the implementation of each step. Step 1 is a simple HTTP request to a certain endpoint which is just an implementation detail, so let’s skip it and proceed directly to Step 2.

Generating the challenge server-side

See our full JavaScript/Node.js implementation of SEP-0010 in a dedicated repository on GitHub.

Our challenge transaction performs a single Manage Data operation and uses an invalid sequence number to prevent it from being executed on a ledger: as we only leverage certain features of Stellar Protocol to perform one-off authentication, we don’t want to mutate the whole blockchain. Stellar uses a binary format known as XDR to encode ledger and transaction data. You can build that representation either manually in Stellar’s Transaction Builder , or programmatically through various SDKs . When converted to the human-readable format, our transaction will look something like this:

{
  // Server public key
  "sourceAccount": "GCWHSK5KNLKB77NAEA3CKDKLY5GTMNKHXQRPUF6STZOD3J6VYVVZNBRV",
  // Invalid sequence number: prevents transaction from real execution
  "seqNum": 0,
  // Challenge is valid within this time limits to prevent replay attacks,
  // say, time of request + 5 minutes
  "timeBounds": {
    "minTime": 1547346533168,
    "maxTime": 1547346533468
  },
  "operations": [
    {
      "type": "manageData",
      // Client public key
      "sourceAccount": "GAZQFKRTG2LBDG5ARWL4MZ2QLNVZYQHRR7K7RPH2BQAPTSF7MXOMVWXO",
      // Service name
      "name": "Sample auth",
      // Random sequence to make challenges requested simultaneously
      // have different XDR's
      "value": "75d1e919612acdcc161fbe675eead56f995a9c12b58d591104cb272ae0b7ec75"
    }
  ],
  "signatures": [
    // [0] is signed with server private key
  ]
}

Here’s how it looks like in Stellar laboratory’s XDR Explorer. Error checking signatures... is expected: accounts used for the sake of example are not funded and do not exist in a public network.

Here is how we can build it on our Node.js server with the help of Stellar JavaScript library upon receiving a client’s public key in an HTTP request. These are just the important bits from the  full implementation available on GitHub.

// ...
// Set server public key and an invalid sequence number.
// Per specification, the number should be 0.
const account = new stellar.Account(
  SERVER_KEY_PAIR.publicKey(),
  INVALID_SEQUENCE
);

// Set time bounds
const minTime = Date.now();
const maxTime = minTime + 300; // + 5 minutes
const timebounds = {
  minTime: minTime.toString(),
  maxTime: maxTime.toString()
};

// Create a Manage Data operation
const op = stellar.Operation.manageData({
  source: req.query.public_key, // ?public_key=...,
  name: "Sample auth",
  value: crypto.randomBytes(32).toString("hex")
});

// Finally, build a transaction
const tx = new stellar.TransactionBuilder(account, { timebounds })
  .addOperation(op)
  .build();
tx.sign(SERVER_KEY_PAIR); // Server key pair with private key, defined somewhere in secrets
const xdr = tx.toEnvelope().toXDR("base64");

// Send HTTP response
res.json({ transaction: xdr });

Validating and signing client-side

After our client had received a server-generated challenge transaction in an HTTP response, it must validate the server’s signature, add their own signature and send it back to exchange a doubly-signed transaction for an access token.

// ...
// get the transaction XDR out of request body
const tx = new stellar.Transaction(body.transaction);
const { signatures } = tx;
const hash = tx.hash();

// SERVER_KEY_PAIR here represents server public key. This key pair can be
// used to check signatures only.
const valid = signatures.some(signature =>
  SERVER_KEY_PAIR.verify(hash, signature.signature())
);

if (!valid) {
  throw "Server signature invalid";
}

// Sign and encode back to XDR
tx.sign(CLIENT_KEY_PAIR); // Client private key, defined in config
const xdr = tx.toEnvelope().toXDR("base64");

Now checked and signed challenge transaction should be sent back to the server to obtain an access token. Take a look at the full code example in our SEP-0010 implementation repository.

Validating server-side

We are almost done with our authentication, but it is the time to perform final checks to ensure that the challenge is still valid (at least it did not expire), and the client signature is valid as well. A valid challenge must:

  • be signed by a client who has initially been requesting challenge;
  • be signed by a server having a valid signature;
  • contain a source account equal to the server’s public key;
  • contain a single ManageData operation with source account equal to the client’s public key; and
  • not be expired (current time is still within transaction time bounds).
// ...
const tx = new Transaction(req.body.transaction);
const op = tx.operations[0];
const { signatures } = tx;
const hash = tx.hash();

// Source account is ours
if (tx.source != SERVER_KEY_PAIR.publicKey()) {
  return res.json({ error: "Invalid source account." });
}

// Challenge transaction was generated by us
if (
  !signatures.some(signature =>
    SERVER_KEY_PAIR.verify(hash, signature.signature())
  )
) {
  return res.json({ error: "Server signature is missing or invalid." });
}

// ...

See the full example for the complete implementation of all these checks.

Now, if everything is OK, server issues a JWT access token that can be used by our client to access the service.

// ...
const token = jwt.sign(
  {
    iss: ENDPOINT, // Issuer URL
    sub: op.source, // Client public key
    iat: Math.floor(Date.now() / 1000), // Issued now
    exp: Math.floor(Date.now() / 1000) + 3600, // Expires in one hour
    jwtid: tx.hash().toString("hex") // Challenge transaction hash as ID
  },
  JWT_SECRET
);

// ...

res.json({ token: token });

Finally, take a look at our complete example to see the whole authentication service in action.

How can it be used?

One possible scenario: we need to provide a monthly subscription to a web service paid by cryptocurrency, Lumen or another Stellar-based coin. Here, the first payment and the subsequent authentication can be combined in one UX step: a convenience unimaginable in a world of conventional logins and traditional payment systems.

Here is the example flow:

  1. A user sends the first payment to the service owner’s account (server public key).
  2. The server acknowledges payment and adds payment source address to the  the white list of clients who are allowed to use the service. This could be done using Stellar Bridge , and white list might be a simple plaintext file. Otherwise, the server might periodically monitor incoming payments via a  Stellar Horizon endpoint.
  3. A user authenticates using an API endpoint through a technique described above.
  4. The server checks the account against a white list and grants access.

There is only one step missing in our example. SEP-0010 requires certain stellar.toml entries to be added for automatic service discovery. It might be a good idea to  generate this file in your real-world application dynamically.

If you are interested in blockchain solutions and ever felt a need to authenticate your customers anonymously and securely, please feel free to study the Stellar Web Authentication proposal (note it is pretty much a living specification at the moment, but the general approach is not subject to change) and borrow from our demo implementation in JavaScript and Node.js.

The idea to use blockchain key pairs for authentication has definitely been tried before . Trezor ’s solution is especially worth noting as it makes authentication with a crypto-currency hardware wallet as easy as pressing “Log in with Google” or “Log in with Facebook” buttons. However, the speed of Stellar network and the general accessibility of the surrounding ecosystem makes it a perfect candidate for the passwordless flow. And the  SEP-0010 itself was designed with security and the  ease of implementation in mind, leveraging only the features already built in into the protocol: we will be happy to see similar specifications appear for other blockchains.

At Evil Martians, we have been working on projects involving Stellar, and blockchain in general, for a while, and we will be happy to take on something new in a crypto area.Drop us a line if you have something in mind!


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK