mirror of
https://github.com/fluencelabs/js-peer-id
synced 2025-06-27 14:31:49 +00:00
13 lines
181 B
Protocol Buffer
13 lines
181 B
Protocol Buffer
![]() |
enum KeyType {
|
||
|
RSA = 0;
|
||
|
}
|
||
|
|
||
|
message PublicKey {
|
||
|
required KeyType Type = 1;
|
||
|
required bytes Data = 2;
|
||
|
}
|
||
|
|
||
|
message PrivateKey {
|
||
|
required KeyType Type = 1;
|
||
|
required bytes Data = 2;
|
||
|
}
|