Technical specifications and blockchain architecture details for Phala Network.
IdentityKey
sr25519
key pair to uniquely identify an entity;EcdhKey
sr25519
key pair for secure communication;pRuntime
automatically generates the entity key pairs above with a random number generator. The generated key pairs are managed in pRuntime
in the Secure Enclave, which means the workers and gatekeepers can only use it with the limited APIs exported by pRuntime
, and can never gain the plaintext key pairs to read the encrypted data out of the Secure Enclave.
The generated key pairs can be locally encrypted and cached on the disk with Sealing and decrypted and loaded when restarting. This applies to both gatekeepers and workers.
EcdhKey
public key in the pRuntime
of a worker or gatekeeper is publicly available. Therefore an ECDH key agreement protocol can be applied to establish a secure communication channel between a worker (or a gatekeeper) and any other entity non-interactively.
A channel between two entities, A
and B
is denoted as , where and are the public keys of their ECDH key pairs correspondingly. A shared secret can be derived from one’s ECDH private key and the counterpart’s public key via the Diffie Hellman algorithm. Then the final communication key CommKey(A, B)
can be calculated via a one-way function. Finally, CommKey(A, B)
is used to encrypt the messages between the two entities.
In Khala, theThe public keys of the entities are registered on-chain. So we can build on-chain or off-chain communication channels:EcdhKey
is ansr25519
key pair. We can adopt the child key derivation (CKD) functions from Bitcoin BIP32 to deriveCommKey(A, B)
from the key agreed by ECDH. The messages are end-to-end encrypted withaes-gcm-256
.
A
and B
know each other’s public keys from the blockchain. They can derives CommKey(A, B)
;A
posts a cipher message encrypted by CommKey(A, B)
to the blockchain;B
receives it, and decrypts it with CommKey(A, B)
;A
is off-chain and B
is an on-chain worker) Communication
A
can learn B
’s public key from the blockchain and derive CommKey(A, B)
;A
learns the API endpoint of B
from its WorkerInfo
in WorkerState
on chain;A
sends a signed cipher message (encrypted by CommKey(A, B)
) with its public key to B
directly;B
gets A
’s public key from the message, and derives CommKey(A, B)
to decrypt it;nonce
is necessary for defending against Double-spend and Replay Attacks.from
shows the identity of the caller, and can be verified with sig
. from
will be further passed to the contract.to
is needed to specify the invocation target.input
encodes the invoked function and arguments, it should be serialized according to the ABI of contracts.Unlike the
EcdhKey
RotationIdentityKey
which shows the identity of a worker or gatekeeper thus should not be changed, we recommend a regular rotation of theEcdhKey
to ensure the security of the communication channels between different entities. In the future,pRuntime
will automatically rotate the managedEcdhKey
key after certain time interval.