Newer
Older
syntax = "proto3";
package pbkeys;
service Keys {
rpc GenerateKey(GenRequest) returns (GenResponse);
rpc PublicKey(PubRequest) returns (PubResponse);
rpc Sign(SignRequest) returns (SignResponse);
rpc Verify(VerifyRequest) returns (VerifyResponse);
rpc Import(ImportRequest) returns (ImportResponse);
rpc ImportJSON(ImportJSONRequest) returns (ImportResponse);
rpc Export(ExportRequest) returns (ExportResponse);
rpc Hash(HashRequest) returns (HashResponse);
rpc RemoveName(RemoveNameRequest) returns (RemoveNameResponse);
rpc List(ListRequest) returns (ListResponse);
rpc AddName(AddNameRequest) returns (AddNameResponse);
// Some empty types we may define later
message ListRequest {
message RemoveNameResponse {
}
message AddNameResponse {
}
message RemoveNameRequest {
string keyname = 1;
}
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
message GenRequest {
string passphrase = 1;
string curvetype = 2;
string keyname = 3;
}
message GenResponse {
string address = 1;
}
message PubRequest {
string address = 1;
string name = 2;
}
message PubResponse {
bytes pub = 1;
string curvetype = 2;
}
message ImportJSONRequest {
string passphrase = 1;
string JSON = 2;
}
message ImportResponse {
string address = 1;
}
message ImportRequest {
string passphrase = 1;
string name = 2;
string curvetype = 3;
bytes keybytes = 4;
}
message ExportRequest {
string passphrase = 1;
string name = 2;
string address = 3;
}
message ExportResponse {
bytes publickey = 1;
bytes privatekey = 2;
bytes address = 3;
string curvetype = 4;
}
message SignRequest {
string passphrase = 1;
string address = 2;
string name = 3;
bytes message = 4;
}
message SignResponse {
bytes signature = 1;
string curvetype = 2;
}
message VerifyRequest {
string curvetype = 1;
bytes pub = 2;
bytes signature = 4;
}
message HashRequest {
string hashtype = 1;
bytes message = 2;
}
message HashResponse {
string hash = 1;
}
message Key {
string address = 1;
string keyname = 2;
}
message ListResponse {
repeated Key key = 1;
}
string keyname = 1;
string address = 2;
}