up
This commit is contained in:
		@@ -78,7 +78,12 @@ internal sealed class AuthorityRevocationClient : IAuthorityRevocationClient
 | 
			
		||||
 | 
			
		||||
        if (verbose)
 | 
			
		||||
        {
 | 
			
		||||
            logger.LogInformation("Received revocation export sequence {Sequence} (sha256:{Digest}, signing key {KeyId}).", payload.Sequence, digest, payload.SigningKeyId ?? "<unspecified>");
 | 
			
		||||
            logger.LogInformation(
 | 
			
		||||
                "Received revocation export sequence {Sequence} (sha256:{Digest}, signing key {KeyId}, provider {Provider}).",
 | 
			
		||||
                payload.Sequence,
 | 
			
		||||
                digest,
 | 
			
		||||
                payload.SigningKeyId ?? "<unspecified>",
 | 
			
		||||
                string.IsNullOrWhiteSpace(payload.Signature?.Provider) ? "default" : payload.Signature!.Provider);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        return new AuthorityRevocationExportResult
 | 
			
		||||
@@ -88,7 +93,8 @@ internal sealed class AuthorityRevocationClient : IAuthorityRevocationClient
 | 
			
		||||
            Digest = digest,
 | 
			
		||||
            Sequence = payload.Sequence,
 | 
			
		||||
            IssuedAt = payload.IssuedAt,
 | 
			
		||||
            SigningKeyId = payload.SigningKeyId
 | 
			
		||||
            SigningKeyId = payload.SigningKeyId,
 | 
			
		||||
            SigningProvider = payload.Signature?.Provider
 | 
			
		||||
        };
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@@ -201,6 +207,9 @@ internal sealed class AuthorityRevocationClient : IAuthorityRevocationClient
 | 
			
		||||
        [JsonPropertyName("keyId")]
 | 
			
		||||
        public string KeyId { get; set; } = string.Empty;
 | 
			
		||||
 | 
			
		||||
        [JsonPropertyName("provider")]
 | 
			
		||||
        public string Provider { get; set; } = string.Empty;
 | 
			
		||||
 | 
			
		||||
        [JsonPropertyName("value")]
 | 
			
		||||
        public string Value { get; set; } = string.Empty;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user