owned this note
owned this note
Published
Linked with GitHub
---
tags: spec
---
# tKey — a composable system for user-centric key management
Existing private key management solutions have come a long way in terms of user experience. However, many of these solutions make tradeoffs with reduced guarantees on custody and censorship-resistance. For example, password-manager key management solutions can restrict user access by refusing to return the encrypted key from their servers. Which then ultimately derives down to resorting to the usual approach of protecting private keys via redundant backups.
We propose a model of key management, tKey, that uses [Shamir Secret Sharing](https://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing) to achieve this without sacrificing user experience, while retaining end-user autonomy and control over the private key.
tKey manages private keys using the user's device, private input, and wallet service provider. As long as a user has access to 2 out of 3 (2/3) of these shares, they will be able to retrieve their private key.
We describe the architecture of tKey and detail several core user flows for onboarding, key recovery, and device management. To achieve these flows, tKey leverages heavily on its service provider and its properties, which could be a centralized provider or something distributed, such as the [Torus Network](https://medium.com/toruslabs/what-distributed-key-generation-is-866adc79620). tKey also depends on a persistent storage layer (e.g. IPFS, Arweave, Sia) to store encrypted metadata.
## tKey Overview
The user starts by generating (client-side) a 2 out of 3 (2/3) Shamir secret sharing. This gives the user three shares: ShareA, ShareB, and ShareC.
1. **ShareA is stored on the user's device**: Implementation is device and system specific. For example, on mobile devices, the share could be stored in device storage secured via biometrics.
2. **ShareB is managed by a service provider**: This share is kept and managed by a wallet service provider via their own authentication flows.
3. **ShareC is a recovery share**: An extra share to be kept by the user, possibly kept on a seperate device, downloaded or based on user input with enough entropy (eg. password, security questions, hardware device etc.).
Similar to existing 2FA systems, a user needs to prove ownership of at least 2 out of 3 (2/3) shares, in order to retrieve his private key. This initial setup provides several benefits.
### Self-custodial
In existing systems, even if wallet service providers have high levels of security in terms of private key storage, a user could still lose their authentication credentials and have their private key stolen.
Using tKey, since the wallet service provider only has access to one share, it's not possible for the wallet service provider to retrieve the user's private key on their own.
### Censorship resistance
Using a 2/3 threshold also prevents censorship by the wallet service provider. In the case that a wallet service provider refuses to return the user's private key even after the user has authenticated successfully, the user can still reconstruct their private key using ShareA (device share) and ShareC (recovery share). Users can then choose a different wallet service provider, which helps to prevent vendor lock-in.
### Improvements to key recovery
In the event of a lost device/share, there is redundancy built into the share threshold such that a user can still recover their key. It is also possible to refresh shares such that lost shares are revoked.
This is an improvement over writing down a seed phrase on a piece of paper, since losing the seed phrase gives complete access to the private key. Losing a share, however, is acceptable as long as the user does not lose more than one share without refreshing his existing shares.
### Incremental security
Users can increase security on their key by increasing the 2/3 threshold to a higher threshold. For example, a user can increase the threshold from 2/3 to 3/4 and add yet another authentication factor like a hardware device. This might be necessary if the user's has high amounts of cryptocurrency on his private key.
### Compatible with existing user flows
Many wallet service providers have streamlined user access to a point where private key retrieval has become indistinguishable from Web2.0 logins. This has greatly improved user experience in this space, and tKey does not detract from this goal.
By using user device storage for one of the shares, the main user flows for existing wallet service providers remain unaffected and these service providers can continue to use any form of attestation/authentication (eg. traditional user based accounts, OAuth, biometrics).
### Native signatures
Unlike traditional smart contract wallets which require additional setup and can be expensive to deploy and manage, tKey can be used to generate normal private keys to sign messages. Secret sharing and share refresh is also done completely off-chain, which makes tKey usable on blockchains with limited smart contract functionality.
## Technical Architecture
![](https://hackmd.io/_uploads/BySGvhPzD.png)
### Components
#### Service provider
Service providers provide a user-specific key based on some form of attestation from the user. This attestation could come in the form of an OAuth login from an existing account, a traditional email account login, or even biometrics. Service providers need not return a private key, but need to fufill the interface:
- $retrievePubKey()$
- $encrypt(msg, pubKey)$
- $decrypt(msg)$
- $sign(msg)$
For ease of illustration the rest of this document assumes that this is implemented with secp256k1 keys and ECIES. The key retrieved from the service provider is refered to as an encryption key or $encKey$.
#### Storage layer
The storage layer serves as a persistent data store for storing encrypted metadata. Examples of such systems include IPFS, Arweave, Sia, or even BFT layers. Data availability and cost are the main factors to consider but the choice of storage layer is ultimately up to the implementer.
tKey utilizes $encKey$ from the service provider as an entry point to retrieve the private key. $encKey$ is used to retrieve encrypted user-specific data from the storage layer, refered to as metadata. This data includes a user's threshold, polynomial commitments, associated devices, and so on.
#### User device
tKey is dependent on user devices to store shares. The base flow accomodates a single device, but users can use multiple devices to increase the threshold once they have an initial setup. Access to device storage on the user's device is implementation specific. For example, for native applications on mobile, they can make use of the device keychain.
#### Recovery share
This is generally *not* used during normal operation, and is intended for use in key recovery / share refresh if the user loses his/her device or shares.
### Key initialization and reconstruction
A key is initialized upon a user-triggered action (eg. login to service provider). We then attempt to retrieve associated metadata for the user. If none exists, the user is a new one and we generate a corresponding SSS 2/3 polynomial with its respective key and shares. If it exists, we decrypt the metadata using the service provider $encKey$ and read the metadata to verify user information and associated secret sharing parameters.
#### Initialization
We select a polynomial $f(z)$ over $Z_q$ where: $$ f(z) = a_1z + \sigma $$
* $f(0) = \sigma$ denotes the private key scalar to be used by the user
* $a_1$ is a coefficient to $z$
* $f(z_1),f(z_2)$ and $f(z_3)$ are ShareA, ShareB and ShareC respectively
![](https://hackmd.io/_uploads/SJU6kNwa8.png)
ShareA is stored on the user's device, ShareB is encrypted with the $encKey$ and stored on the storage layer for future retrieval, and ShareC dependent on user input or handled as a recovery share.
#### Reconstruction
![](https://hackmd.io/_uploads/BkQMlVvaU.png)
If a user has logged in previously, he/she reconstructs their key by decrypting ShareB (retrieved through the storage layer) and combining it with ShareA on the user's current device using [Lagrange interpolation](https://brilliant.org/wiki/lagrange-interpolation/#:~:text=Lagrange%20Interpolation,proof%20of%20the%20theorem%20below).
#### Key generation with deterministic share
Provided with a user input, $input$, we can pre-determine a single share in the generation of the SSS polynomial, where we peg ShareC or $f(z_3)$ to a users input. Let $H$ be a cryptographically secure hash function.
$$\text{Given} \, f(z_3)= H(input)\\ \text{Select } \sigma \text{ over } Z_q \text{ and solve } a_1= \frac{f(z_3) - \sigma}{z_3}$$
In the case of secret resharing, we can also conduct the deterministic generation of the $f(z)$ polynomial with a given $\sigma$ and $input$. We are able to peg $n$ given values to the key or shares as long as $n\le d + 1$ where $d$ is the degree of the SSS polynomial $f(z)$.
It is important that $input$ has sufficent entropy in its generation. A potential way to guarentee this is via using several security questions (for example three of them) with answers $A,B,C$ to derive $input = A|B|C$. This can be implemented with a repository of questions, of which order and index can be defined in metadata.
Candidate qualified questions are suggested to be ones with deterministic answers (i.e. "your parent's birthday" or "your city of birth"), rather than "what's your favorite singer?". To accomodate for cases that users tend to forget their answers. There is a further potential of splitting the answers themselves via SSS such that the user can answer 3/5 questions, giving redundancy.
### Expanding the number of shares (adding a device)
In the case of a new device the user needs to migrate a share to the device to reconstruct their key. This can be done user input or through a login to a current device.
![](https://hackmd.io/_uploads/SJpLgEvaL.png)
On reconstruction of $f(z)$ on the new device we set ShareD to $f(z_4)$.
### Share resharing and revokability
Utilizing the storage layer, we are able to generate new shares for all devices, regardless if they are online or offline. This allows us to remove devices from the sharing, allow the user to change their security questions and/or adjust their security threshold. The key concept here is utilizing published Share commitments as encryption keys to retrieve shares on the most updated SSS polynomial.
This is illustrated from a 2/4 SSS sharing $f(z)$ with shares $s_a, s_b, s_c, s_d$ kept on 3 user devices and the service provider. Let $g$ be a generator of a multiplicative subgroup where the discrete log problem is assumed hard to solve. During initialization of the key we create share commitments $g^{s_a}, g^{s_b}, g^{s_c}, g^{s_d}$ to be stored on the storage layer. These share commitments are analgous to public keys derived from the share scalars.
Given the user loses device D holding $s_d$, and wants to make that share redundant. He/she first reconstructs their key on device A. We utilize a public key based encryption scheme (eg. ECIES).
The user generates a new 2/3 SSS polynomial $h(z)$ on the same $\sigma$ with shares $s_1, s_2, s_3$ and encrypts the newly generated shares for each respective share commitment, except for the lost $g^{s_d}$ commitment.
$$\text{for }i = \{1,2,3\} \text{ and } v = \{a,b,c\} \\ encrypt(s_iu,g^{s_v}) \Rightarrow c_{nv} \\
\text{where } nv = \{1a,2b,2c\}$$
$c_{nv}$, the resulting ciphertext from the encryption, is then stored on the storage layer for retrieval on other devices.
On login to device B, the user retrieves $c_{2b}$ is able to use $s_b$ to decrypt the new $s_2$ and reconstruct their key with $s_1$ derived from the service provider in a similar fashion. Using the $h(z)$ allows $s^d$ to also be deprecated as a share.
Resharing allows us to share a key on a new polynomial with a different degree/threshold, allowing us to also increase a user's security/factor devices or inputs to reconstruct thier key as they require it. This can be incrementally done as needed.
## Comparisons to existing key/asset management systems
Compared to traditional key management, tKey improves on recoverability, usability, and flexibility. It also allows revocability of shares and edits of access structures to a user's key. Today, we do have multi-sigs and smart contract wallets (SCW) that hold assets which provide similar properties. They work well and tKey can be used as an external key to these contructions. Relative to these tools, because tKey revolves around managing a native private key it is far more composable.
While an onchain multi-sig/SCW can fufill most functions, there are nuances to consider implementation-wise. For example, being on-chain, they are limited to the layer-1 chain they are implemented on, limiting interoperability with other layer-2 scalability solutions or other blockchains. Deployment fees for smart contract wallets can also be expensive and slow, which increases user-friction.
The model is also flexible, and different configurations of SSS thresholds can help to balance convenience, security, and redundancy, according to the user's needs.
## Future directions
### Proactive Secret Sharing with Threshold Signature Schemes
tKey can be implemented with threshold signature schemes such that the key need not be constructed in an existing front-end when signing transactions, which helps to improve security. The initial private key can also be generated via distributed key generation, to ensure that the private key is never reconstructed at all. In this case resharing of shares for a new polynomial could be done through proactive secret sharing schemes with dynamic participants.