mirror of
https://github.com/fluencelabs/js-libp2p-crypto
synced 2025-06-30 16:41:35 +00:00
inital commit
This commit is contained in:
13
src/crypto.proto
Normal file
13
src/crypto.proto
Normal file
@ -0,0 +1,13 @@
|
||||
enum KeyType {
|
||||
RSA = 0;
|
||||
}
|
||||
|
||||
message PublicKey {
|
||||
required KeyType Type = 1;
|
||||
required bytes Data = 2;
|
||||
}
|
||||
|
||||
message PrivateKey {
|
||||
required KeyType Type = 1;
|
||||
required bytes Data = 2;
|
||||
}
|
Reference in New Issue
Block a user