nips/111.md

243 lines
11 KiB
Markdown
Raw Normal View History

# NIP-111
2023-02-26 07:08:08 -05:00
2023-03-18 09:07:57 -04:00
Nostr-Specific Private Key Generation from Deterministic Wallet Signatures (Sign-In-With-X)
2023-02-17 07:27:57 -05:00
--
2023-02-11 15:26:38 -05:00
`draft` `optional` `author:0xc0de4c0ffee` `author:sshmatrix`
2023-02-17 07:27:57 -05:00
## Abstract
2023-02-11 15:26:38 -05:00
2023-03-18 09:07:57 -04:00
This specification provides an optional method for Nostr Clients, NIP-07 providers and Wallet providers to generate deterministic private keys from chain-agnostic CAIP-122 Signatures (`Sign-In-With-X` specification). The keypairs generated using this specification are Nostr-specific and do not expose the original signing keypair. The new private keys are derived using SHA-256 HMAC Key Derivation Function (HKDF) with NIP-02 or NIP-05 names, CAIP-02 Blockchain ID & CAIP-10 Account ID Specification identifiers, and deterministic signatures from connected wallets as inputs.
## Introduction
NIP-111 at its core is an account abstraction specification in which a cryptographic signature calculated by one signing algorithm and its native keypair (e.g. [Bitcoin-native Schnorr algorithm](https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki)) can be used to derive a deterministic cryptographic keypair for another signing algorithm (e.g. [Ethereum-native ECDSA algorithm](https://eips.ethereum.org/EIPS/eip-191)) using an appropriate singular (non-invertible) key derivation function. This specification particularly describes the case where the former and latter algorithms are Schnorr and ECDSA respectively, and the one-way adaptor from ECDSA to Schnorr keypair is HMAC-based Key Derivation Function ([HKDF](https://datatracker.ietf.org/doc/html/rfc586)).
2023-03-18 09:07:57 -04:00
NIP-111 specification originated from the desire to allow Nostr to function with widely popular Ethereum wallets such as Metamask and leverage the strong network effects of Ethereum ecosystem. The problem however lay in the fact that Nostr Protocol uses Bitcoin-native Schnorr algorithm for signing messages/data while Ethereum (and its wallets such as Metamask etc) uses ECDSA algorithm. The difference in two signing algorithms and respective signing keypairs is the exact technical incompatibility that this specification originally succeeded in resolving by enabling [Sign-In With Ethereum](https://login.xyz) (SIWE) on Nostr. The underlying schema however is fully capable of functioning as a chain-agnostic workflow and this improved draft reflects that property by using [CAIP](https://github.com/ChainAgnostic/CAIPs) (Chain-Agnostic Improvement Proposals) implementations.
2023-02-11 15:26:38 -05:00
2023-02-17 07:27:57 -05:00
## Terminology
2023-02-26 07:08:08 -05:00
2023-02-19 02:39:48 -05:00
### a) Username
2023-03-18 09:10:37 -04:00
`username` is either of the following:
2023-02-17 07:27:57 -05:00
2023-03-18 09:07:57 -04:00
- `petname` is a [NIP-02](https://github.com/nostr-protocol/nips/blob/master/02.md) compatible name,
- `petname@example.com` is a [NIP-05](https://github.com/nostr-protocol/nips/blob/master/05.md) identifier,
2023-02-26 07:08:08 -05:00
- `example.com` is NIP-05 identifier `_@example.com`,
2023-03-18 09:07:57 -04:00
- `sub.example.com` is NIP-05 identifier `_@sub.example.com`,
2023-02-11 15:26:38 -05:00
2023-03-18 09:07:57 -04:00
such that
2023-02-12 06:23:29 -05:00
```js
2023-03-18 09:07:57 -04:00
let username = 'petname' || 'petname@example.com' || 'example.com' || 'sub.example.com'
2023-02-11 15:26:38 -05:00
```
2023-02-26 07:08:08 -05:00
2023-03-18 09:07:57 -04:00
### b) Password
2023-03-18 09:10:37 -04:00
`password` is an optional `string` value used to salt the key derivation function (HKDF),
2023-02-11 15:26:38 -05:00
```js
2023-03-18 09:07:57 -04:00
let password = "horse staple battery"
2023-02-17 07:27:57 -05:00
```
2023-02-26 07:08:08 -05:00
2023-03-18 09:07:57 -04:00
## c) Chain-agnostic Identifiers
2023-03-18 09:10:37 -04:00
Chain-agnostic [CAIP-02: Blockchain ID Specification](https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-2.md) and [CAIP-10: Account ID Specification](https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-10.md) schemes are used to generate blockchain and address identifiers `caip02` and `caip10` respectively,
2023-03-18 09:07:57 -04:00
```js
2023-02-26 07:08:08 -05:00
let caip02 =
2023-03-10 06:24:00 -05:00
`eip155:<evm_chain_id>` ||
2023-02-26 07:08:08 -05:00
`cosmos:<hub_id_name>` ||
`bip122:<16 bytes genesis/fork hash>`;
let caip10 = `${caip02}:<checksum_address>`;
```
2023-03-18 09:07:57 -04:00
### d) Info
2023-03-18 09:10:37 -04:00
`info` is CAIP-10 and NIP-02/NIP-05 identifier string formatted as:
2023-03-18 09:07:57 -04:00
```js
let info = `${caip10}:${username}`;
```
### e) Message
2023-03-18 09:10:37 -04:00
Deterministic `message` to be signed by the wallet provider,
2023-03-18 09:07:57 -04:00
```js
2023-04-04 02:34:14 -04:00
let message = `Log into Nostr client as '${username}'\n\nIMPORTANT: Please verify the integrity and authenticity of connected Nostr client before signing this message\n\nSIGNED BY: ${caip10}`
2023-03-18 09:07:57 -04:00
```
2023-02-26 07:08:08 -05:00
2023-03-18 09:07:57 -04:00
### f) Signature
2023-03-18 09:10:37 -04:00
[RFC-6979](https://datatracker.ietf.org/doc/html/rfc6979) compatible (ECDSA) deterministic `signature` calculated by the wallet provider using native keypair,
2023-03-18 09:07:57 -04:00
```js
let signature = wallet.signMessage(message);
```
### g) Salt
2023-03-18 09:10:37 -04:00
`salt` is SHA-256 hash of the `info`, optional password and last **32 bytes** of signature string formatted as:
2023-03-18 09:07:57 -04:00
```js
let salt = await sha256(`${info}:${password?password:""}:${signature.slice(68)}`);
```
where, `signature.slice(68)` are the last 32 bytes of the deterministic ECDSA-derived Ethereum signature.
### h) Key Derivation Function (KDF)
HMAC-Based KDF `hkdf(sha256, inputKey, salt, info, dkLen = 42)` is used to derive the **42 bytes** long **hashkey** with inputs,
- `inputKey` is SHA-256 hash of signature bytes,
2023-02-17 07:27:57 -05:00
```js
let inputKey = await sha256(hexToBytes(signature.slice(2)));
```
2023-03-18 09:07:57 -04:00
- `info` is same as defined before, i.e.
2023-02-17 07:27:57 -05:00
```js
2023-02-26 07:08:08 -05:00
let info = `${caip10}:${username}`;
2023-02-17 07:27:57 -05:00
```
2023-02-19 02:57:46 -05:00
2023-03-18 09:07:57 -04:00
- `salt` is same as defined before, i.e.
2023-02-17 07:27:57 -05:00
```js
2023-02-26 07:08:08 -05:00
let salt = await sha256(`${info}:${password?password:""}:${signature.slice(68)}`);
2023-02-17 07:27:57 -05:00
```
2023-02-26 07:08:08 -05:00
2023-03-18 09:07:57 -04:00
- `dkLen` (Derived Key Length) is set to `42`,
2023-02-17 07:27:57 -05:00
```js
2023-02-19 02:39:48 -05:00
let dkLen = 42;
2023-02-17 07:27:57 -05:00
```
2023-03-18 09:07:57 -04:00
[FIPS 186-4 B.4.1](https://csrc.nist.gov/publications/detail/fips/186/4/final) requires hashkey length to be `>= n + 8`, where `n = 32` is the **bytelength** of the final `secp256k1` private key, such that `42 >= 32 + 8`.
2023-02-26 07:08:08 -05:00
2023-03-18 09:07:57 -04:00
- `hashToPrivateKey()` function is FIPS 186-4 B.4.1 implementation to convert HKDF-derived hashkey to valid `secp256k1` keypair. This function is implemented in JavaScript library `@noble/secp256k1` as `hashToPrivateKey()`.
2023-02-20 10:19:23 -05:00
2023-02-17 07:27:57 -05:00
```js
2023-03-18 09:07:57 -04:00
let hashKey = hkdf(sha256, inputKey, salt, info, dkLen = 42);
2023-02-17 07:27:57 -05:00
let privKey = secp256k1.utils.hashToPrivateKey(hashKey);
let pubKey = secp256k1.schnorr.getPublicKey(privKey);
```
2023-03-18 09:07:57 -04:00
## Architecture
The resulting architecture of NIP-111 can be visually interpreted as follows:
2023-03-18 09:07:57 -04:00
![](https://raw.githubusercontent.com/dostr-eth/resources/main/graphics/nip-xx.png)
2023-02-17 07:27:57 -05:00
## Implementation Requirements
2023-03-18 09:07:57 -04:00
- Connected Ethereum wallet Signer **MUST** be EIP-191 and RFC-6979 compatible.
- The `message` **MUST** be string formatted as
```
2023-04-04 02:34:14 -04:00
`Log into Nostr client as '${username}'\n\nIMPORTANT: Please verify the integrity and authenticity of connected Nostr client before signing this message\n\nSIGNED BY: ${caip10}`
2023-03-18 09:07:57 -04:00
```
- HKDF `inputKey` **MUST** be generated as the SHA-256 hash of 65 bytes long signature.
- HKDF `salt` **MUST** be generated as SHA-256 hash of string
```
2023-04-04 02:34:14 -04:00
${info}:${password?password:""}:${signature.slice(68)}
2023-03-18 09:07:57 -04:00
```
2023-04-04 02:34:14 -04:00
- HKDF Derived Key Length (`dkLen`) **MUST** be 42.
- HKDF `info` **MUST** be string formatted as
2023-03-18 09:07:57 -04:00
```
2023-04-04 02:34:14 -04:00
${caip10}:${username}
2023-03-18 09:07:57 -04:00
```
2023-02-17 07:27:57 -05:00
2023-02-19 02:39:48 -05:00
## JS Example
2023-02-17 07:27:57 -05:00
```js
2023-02-26 07:08:08 -05:00
import * as secp256k1 from '@noble/secp256k1'
import {hkdf} from '@noble/hashes/hkdf'
import {sha256} from '@noble/hashes/sha256'
import {queryProfile} from './nip05'
import {getPublicKey} from './keys'
import {ProfilePointer} from './nip19'
2023-02-19 02:39:48 -05:00
// const wallet = connected ethereum wallet with ethers.js
2023-02-26 07:08:08 -05:00
let username = "me@example.com"
2023-03-18 09:07:57 -04:00
let chainId = wallet.getChainId(); // get ChainID from connected wallet
let address = wallet.getAddress(); // get Address from wallet
2023-02-26 07:08:08 -05:00
let caip10 = `eip155:${chainId}:${address}`;
2023-04-04 02:34:14 -04:00
let message = `Log into Nostr client as '${username}'\n\nIMPORTANT: Please verify the integrity and authenticity of connected Nostr client before signing this message\n\nSIGNED BY: ${caip10}`
2023-03-18 09:07:57 -04:00
let signature = wallet.signMessage(message); // request Signature from wallet
2023-02-17 07:27:57 -05:00
let password = "horse staple battery"
2023-02-11 15:26:38 -05:00
2023-02-26 07:08:08 -05:00
/**
2023-03-10 06:24:00 -05:00
*
2023-03-18 09:07:57 -04:00
* @param username NIP-02/NIP-05 identifier
2023-02-26 07:08:08 -05:00
* @param caip10 CAIP identifier for the blockchain account
* @param sig Deterministic signature from X-wallet provider
* @param password Optional password
* @returns Deterministic private key as hex string
*/
export async function privateKeyFromX(
username: string,
caip10: string,
sig: string,
password: string | undefined
): Promise < string > {
if (sig.length < 64)
throw new Error("Signature too short");
let inputKey = await sha256(secp256k1.utils.hexToBytes(sig.toLowerCase().startsWith("0x") ? sig.slice(2) : sig))
let info = `${caip10}:${username}`
let salt = await sha256(`${info}:${password?password:""}:${sig.slice(-64)}`)
let hashKey = await hkdf(sha256, inputKey, salt, info, 42)
return secp256k1.utils.bytesToHex(secp256k1.utils.hashToPrivateKey(hashKey))
}
/**
2023-03-10 06:24:00 -05:00
*
2023-03-18 09:07:57 -04:00
* @param username NIP-02/NIP-05 identifier
2023-02-26 07:08:08 -05:00
* @param caip10 CAIP identifier for the blockchain account
* @param sig Deterministic signature from X-wallet provider
* @param password Optional password
2023-03-10 06:24:00 -05:00
* @returns
2023-02-26 07:08:08 -05:00
*/
export async function signInWithX(
username: string,
caip10: string,
sig: string,
password: string | undefined
): Promise < {
petname: string,
profile: ProfilePointer | null,
privkey: string
} > {
let profile = null
let petname = username
if (username.includes(".")) {
try {
profile = await queryProfile(username)
} catch (e) {
console.log(e)
throw new Error("Nostr Profile Not Found")
}
if(profile == null){
throw new Error("Nostr Profile Not Found")
2023-03-10 06:24:00 -05:00
}
2023-02-26 07:08:08 -05:00
petname = (username.split("@").length == 2) ? username.split("@")[0] : username.split(".")[0]
}
let privkey = await privateKeyFromX(username, caip10, sig, password)
let pubkey = getPublicKey(privkey)
if (profile?.pubkey && pubkey !== profile.pubkey) {
throw new Error("Invalid Signature/Password")
}
return {
petname,
profile,
privkey
}
}
2023-02-12 06:23:29 -05:00
```
2023-03-10 06:24:00 -05:00
## Implementations
2023-03-18 09:07:57 -04:00
1) Nostr Tools : [Sign-In-With-X](https://github.com/dostr-eth/nostr-tools/tree/siwx) ([Pull Request #132](https://github.com/nbd-wtf/nostr-tools/pull/132))
2) Nostr Client: [Dostr](https://github.com/dostr-eth/dostr-client)
2023-02-26 07:08:08 -05:00
2023-02-17 07:27:57 -05:00
## Security Considerations
2023-02-12 06:23:29 -05:00
2023-03-18 09:07:57 -04:00
- Users **SHOULD** always verify the integrity and authenticity of the Nostr client before signing the message.
- Users **SHOULD** ensure that they only input their Nostr `username` and `password` in trusted and secure clients.
2023-02-12 06:23:29 -05:00
2023-02-17 07:27:57 -05:00
## References:
2023-03-18 09:07:57 -04:00
- [RFC-6979: Deterministic Usage of the DSA and ECDSA](https://datatracker.ietf.org/doc/html/rfc6979)
- [RFC-5869: HKDF (HMAC-based Extract-and-Expand Key Derivation Function)](https://datatracker.ietf.org/doc/html/rfc5869)
2023-02-26 07:08:08 -05:00
- [CAIP-02: Blockchain ID Specification](https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-2.md)
- [CAIP-10: Account ID Specification](https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-10.md)
2023-03-10 06:24:00 -05:00
- [CAIP-122: Sign-in-With-X)](https://github.com/ChainAgnostic/CAIPs/pull/122)
2023-02-17 07:27:57 -05:00
- [Digital Signature Standard (DSS), FIPS 186-4 B.4.1](https://csrc.nist.gov/publications/detail/fips/186/4/final)
2023-03-18 09:07:57 -04:00
- [BIP-340: Schnorr Signature Standard](https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki)
- [ERC-191: Signed Data Standard](https://eips.ethereum.org/EIPS/eip-191)
- [EIP-155: Simple Replay Attack Protection](https://eips.ethereum.org/EIPS/eip-155)
2023-02-19 02:39:48 -05:00
- [NIP-02: Contact List and Petnames](https://github.com/nostr-protocol/nips/blob/master/02.md)
2023-03-18 09:07:57 -04:00
- [NIP-05: Mapping Nostr Keys to DNS-based Internet Identifiers](https://github.com/nostr-protocol/nips/blob/master/05.md)
- [ECDSA Signature Standard](https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.38.8014)
2023-02-17 07:27:57 -05:00
- [@noble/hashes](https://github.com/paulmillr/noble-hashes)
2023-03-10 06:24:00 -05:00
- [@noble/secp256k1](https://github.com/paulmillr/noble-secp256k1)