Merge pull request #90 from status-im/spec-stable/account

Move Account to stable
This commit is contained in:
Oskar Thorén 2020-03-27 14:37:12 +08:00 committed by GitHub
commit 966e3f5aad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View File

@ -25,13 +25,14 @@ The following SIPs are stable and running in production.
- [Status Whisper Usage Specification](status-whisper-usage-spec.md). How we use Whisper to do routing, metadata protection and provide 1:1/group/public chat. - [Status Whisper Usage Specification](status-whisper-usage-spec.md). How we use Whisper to do routing, metadata protection and provide 1:1/group/public chat.
- [Status Account Specification](status-account-spec.md). What a Status account is and how trust is established.
### Draft ### Draft
The following SIPs are under consideration for standardization. The following SIPs are under consideration for standardization.
- [Status Client Specification](status-client-spec.md). The main specification for writing a Status client. **Start here** - [Status Client Specification](status-client-spec.md). The main specification for writing a Status client. **Start here**
- [Status Payload Specification](status-payloads-spec.md). What the message payloads look like. - [Status Payload Specification](status-payloads-spec.md). What the message payloads look like.
- [Status Account Specification](status-account-spec.md). What a Status account is and how trust is established.
### Raw ### Raw

View File

@ -1,12 +1,14 @@
# Status Account Specification # Status Account Specification
> Version: 0.1 (Draft) > Version: 0.2
>
> Status: Stable
> >
> Authors: Corey Petty <corey@status.im>, Oskar Thorén <oskar@status.im> (alphabetical order) > Authors: Corey Petty <corey@status.im>, Oskar Thorén <oskar@status.im> (alphabetical order)
## Abstract ## Abstract
TBD. In this specification we explain what Status account is, and how trust is established.
## Table of Contents ## Table of Contents
@ -108,6 +110,7 @@ not do this.
**Trust establishment deals with users verifying they are communicating with who they think they are.** **Trust establishment deals with users verifying they are communicating with who they think they are.**
### Terms Glossary ### Terms Glossary
| term | description | | term | description |
| ---- | ----------- | | ---- | ----------- |
| privkey | ECDSA secp256k1 private key | | privkey | ECDSA secp256k1 private key |
@ -214,4 +217,4 @@ All messages sent are encrypted with the public key of the destination and signe
## Security Considerations ## Security Considerations
TBD. -