cerman updated

This commit is contained in:
Олег Бородин
2024-08-07 11:31:18 +02:00
parent 07b32e881e
commit a21b4e2db9
20 changed files with 638 additions and 377 deletions

View File

@@ -45,10 +45,13 @@ message getIssuerCertificateParams {
string issuerName = 2;
}
message getIssuerCertificateResult {
string name = 1;
string certificate = 2;
bool revoked = 3;
int64 issuerID = 4;
int64 issuerID = 1;
string name = 2;
string certificate = 3;
int64 signerID = 4;
string signerName = 5;
bool revoked = 6;
repeated string signerCertificates = 7;
}
message importIssuerPairParams {
@@ -81,7 +84,9 @@ message listIssuerPairsResult {
message IssierShortDescriptor {
int64 issuerID = 1;
string name = 2;
bool revoked = 3;
int64 signerID = 3;
string signerName = 4;
bool revoked = 5;
}
message createServicePairParams {