mirror of
https://github.com/fluencelabs/js-peer-id
synced 2025-04-25 16:12:41 +00:00
15 lines
201 B
Protocol Buffer
15 lines
201 B
Protocol Buffer
package crypto.pb;
|
|
|
|
enum KeyType {
|
|
RSA = 0;
|
|
}
|
|
|
|
message PublicKey {
|
|
required KeyType Type = 1;
|
|
required bytes Data = 2;
|
|
}
|
|
|
|
message PrivateKey {
|
|
required KeyType Type = 1;
|
|
required bytes Data = 2;
|
|
} |