2020-01-30 11:41:24 +00:00
|
|
|
syntax = "proto3";
|
2020-08-05 23:25:50 +00:00
|
|
|
|
2020-08-12 21:43:51 +00:00
|
|
|
package neo.fs.v2.service;
|
2020-08-05 23:25:50 +00:00
|
|
|
|
2020-08-14 18:27:31 +00:00
|
|
|
option go_package = "github.com/nspcc-dev/neofs-api-go/v2/service/grpc;service";
|
2020-08-12 21:43:51 +00:00
|
|
|
option csharp_namespace = "NeoFS.API.v2.Service";
|
2020-01-30 11:41:24 +00:00
|
|
|
|
2020-08-11 15:21:45 +00:00
|
|
|
// Signature of something in NeoFS
|
2020-08-11 10:54:58 +00:00
|
|
|
message Signature {
|
|
|
|
// Public key used for signing.
|
|
|
|
bytes key = 1;
|
|
|
|
// Signature
|
|
|
|
bytes sign = 2;
|
|
|
|
}
|
|
|
|
|
2020-08-11 14:49:31 +00:00
|
|
|
// Verification info for request signed by all intermediate nodes
|
2020-01-30 11:41:24 +00:00
|
|
|
message RequestVerificationHeader {
|
2020-08-11 15:21:45 +00:00
|
|
|
// Request Body signature. Should be generated once by request initiator.
|
2020-08-11 14:49:31 +00:00
|
|
|
Signature body_signature = 1;
|
2020-08-11 15:21:45 +00:00
|
|
|
// Request Meta signature is added and signed by any intermediate node
|
2020-08-11 14:49:31 +00:00
|
|
|
Signature meta_signature = 2;
|
2020-08-11 15:21:45 +00:00
|
|
|
// Sign previous hops
|
|
|
|
Signature origin_signature = 3;
|
2020-04-24 16:18:28 +00:00
|
|
|
|
2020-08-11 15:21:45 +00:00
|
|
|
// Chain of previous hops signatures
|
|
|
|
RequestVerificationHeader origin = 4;
|
2020-06-18 07:58:11 +00:00
|
|
|
}
|
2020-08-11 14:49:31 +00:00
|
|
|
|
|
|
|
// Verification info for response signed by all intermediate nodes
|
|
|
|
message ResponseVerificationHeader {
|
2020-08-11 15:21:45 +00:00
|
|
|
// Response Body signature. Should be generated once by answering node.
|
2020-08-11 14:49:31 +00:00
|
|
|
Signature body_signature = 1;
|
2020-08-11 15:21:45 +00:00
|
|
|
// Response Meta signature is added and signed by any intermediate node
|
2020-08-11 14:49:31 +00:00
|
|
|
Signature meta_signature = 2;
|
2020-08-11 15:21:45 +00:00
|
|
|
// Sign previous hops
|
|
|
|
Signature origin_signature = 3;
|
2020-08-11 14:49:31 +00:00
|
|
|
|
2020-08-11 15:21:45 +00:00
|
|
|
// Chain of previous hops signatures
|
|
|
|
ResponseVerificationHeader origin = 4;
|
2020-08-11 14:49:31 +00:00
|
|
|
}
|