nips/101.md

146 lines
3.0 KiB
Markdown
Raw Normal View History

2023-09-01 00:37:11 -04:00
# NIP-101: Alias Key Exchange
2023-05-13 13:22:05 -04:00
## Abstract
2023-09-01 00:37:11 -04:00
This NIP proposes the 'Alias Exchange' protocol, designed to facilitate the secure exchange of alias keys in private communication. The protocol includes five kinds of events, each serving a specific function in the exchange process.
2023-05-13 13:22:05 -04:00
## Specification
### Kinds
2023-09-01 00:37:11 -04:00
- **10100 - Request**: This event is initiated by the user who wants to start the alias key exchange.
- **10101 - Accept**: This event represents the acceptance of the request for the alias key exchange.
2023-05-13 13:22:05 -04:00
2023-09-01 00:37:11 -04:00
- **10102 - Reject**: This event signifies the rejection of the request for the alias key exchange.
2023-05-13 13:22:05 -04:00
2023-09-01 00:37:11 -04:00
- **10103 - Close**: This event is used to close the exchange session.
- **10104 - update**: This event is used to refresh the alias key.
2023-05-13 13:22:05 -04:00
### Implementation
2023-09-01 00:37:11 -04:00
The protocol can be implemented following the steps below:
2023-05-13 13:22:05 -04:00
2023-09-01 00:37:11 -04:00
1. User A (the initiator) generates an alias key(random or derived).
2023-05-13 13:22:05 -04:00
2023-09-01 00:37:11 -04:00
2. User A sends a 10100 kind event to User B, the 'p' parameter is User B's real pubkey.
2023-05-14 01:02:31 -04:00
2023-05-14 10:44:37 -04:00
For example:
2023-05-14 01:02:31 -04:00
```json
{
2023-05-14 10:44:37 -04:00
"id": "event id",
2023-09-01 00:37:11 -04:00
"pubkey": "sender A",
2023-05-14 10:44:37 -04:00
"kind": 10100,
"tags": [
2023-09-01 00:37:11 -04:00
["p", <B's pubkey>, <A's alias pubkey for B>],
2023-05-14 10:44:37 -04:00
],
2023-09-01 00:37:11 -04:00
"content": "<exchange details in json string format>",
2023-05-14 10:44:37 -04:00
...other fields
2023-05-14 01:02:31 -04:00
}
```
2023-05-13 13:22:05 -04:00
2023-09-01 00:37:11 -04:00
content example:
2023-05-13 13:22:05 -04:00
2023-09-01 00:37:11 -04:00
```
{
"expiration": 1600000000,
"interval": 100,
"r": "wss://relay.example.com"
2023-05-13 13:22:05 -04:00
}
2023-09-01 00:37:11 -04:00
2023-05-13 13:22:05 -04:00
```
2023-09-01 00:37:11 -04:00
- **expiration**: Request expiration time
- **interval**: Udpate alias key at every interval
- **r**: Main relay for the exchange session
2023-05-13 13:22:05 -04:00
3. Upon receiving the request, User B can:
2023-09-01 00:37:11 -04:00
- Accept the request by generating his own alias key pair, sending a 10101 event to User A with his alias key.
2023-05-13 13:22:05 -04:00
For example:
```json
{
2023-09-01 00:37:11 -04:00
"id": "event id",
"pubkey": "sender B",
"kind": 10101,
"tags": [
["p", <A's pubkey>, <B's alias pubkey for A>],
["e", "kind 10100 event id"],
2023-05-13 13:22:05 -04:00
],
2023-09-01 00:37:11 -04:00
"content": "",
...other fields
2023-05-13 13:22:05 -04:00
}
```
2023-09-01 00:37:11 -04:00
- Reject the request by sending a 10102 event to User A.
2023-05-13 13:22:05 -04:00
2023-09-01 00:37:11 -04:00
For example:
2023-05-13 13:22:05 -04:00
```json
{
2023-09-01 00:37:11 -04:00
"id": "event id",
"pubkey": "sender B",
"kind": 10102,
"tags": [
["e", "kind 10100 event id"]
2023-05-13 13:22:05 -04:00
],
2023-09-01 00:37:11 -04:00
"content": "",
...other fields
2023-05-13 13:22:05 -04:00
}
```
2023-09-01 00:37:11 -04:00
4. If User A wants to close the session, they can send a 10103 event to User B
For example:
2023-05-13 13:22:05 -04:00
```json
{
2023-09-01 00:37:11 -04:00
"id": "event id",
"pubkey": "sender A",
"kind": 10103,
"tags": [
["e", "kind 10100 event id"]
2023-05-13 13:22:05 -04:00
],
2023-09-01 00:37:11 -04:00
"content": "",
...other fields
2023-05-13 13:22:05 -04:00
}
```
2023-09-01 00:37:11 -04:00
5. Refresh the alias key
```json
{
"id": "event id",
"pubkey": "sender B",
"kind": 10104,
"tags": [
["p", <A's pubkey>, <B's alias pubkey for A>],
["e", "kind 10100 event id"],
],
"content": "",
...other fields
}
```
2023-05-13 13:22:05 -04:00
A reference implementation for this protocol can be found [here](https://github.com/0xchat-app/nostr-dart/blob/main/lib/src/nips/nip_101.dart).
## Use Cases
2023-09-01 00:37:11 -04:00
This protocol can be used in secret chat applications:
2023-05-13 13:22:05 -04:00
2023-09-01 00:37:11 -04:00
- 10100 (Request) is used to initiate a secret chat request.
- 10101 (Accept) is used to accept a secret request
- 10102 (Reject) is used to reject a secret request
- 10103 (Close) is used to close a secret session
- 10104 (Update) is used to update the secret shared key
2023-05-13 13:22:05 -04:00