mirror of
https://github.com/fluencelabs/js-peer-id
synced 2025-05-30 04:11:22 +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;
|
||
|
}
|