示例#1
0
 public Task <string> CommitRequestAsync(byte[] commitment)
 {
     return(TLSRegistrarControllerService.CommitRequestAsync(commitment));
 }
示例#2
0
        public async Task <string> CommitRequestAsync(string name, string owner, string secret)
        {
            var commitment = await CalculateCommitmentAsync(name, owner, secret).ConfigureAwait(false);

            return(await TLSRegistrarControllerService.CommitRequestAsync(commitment));
        }