in Notation.Plugin.AzureKeyVault/Command/DescribeKey.cs [42:50]
public async Task<IPluginResponse> RunAsync()
{
// Get certificate from Azure Key Vault
var cert = await _keyVaultClient.GetCertificateAsync();
return new DescribeKeyResponse(
keyId: _request.KeyId,
keySpec: cert.KeySpec().EncodeKeySpec());
}