Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Appease the formatting gods
  • Loading branch information
Lukasa committed Dec 16, 2024
commit 76cd2bea2ea0b34e51880a9231cd663e756fc72b
19 changes: 5 additions & 14 deletions Sources/NIOSSH/Keys And Signatures/NIOSSHCertifiedPublicKey.swift
Original file line number Diff line number Diff line change
Expand Up @@ -398,20 +398,11 @@ extension NIOSSHCertifiedPublicKey: CustomDebugStringConvertible {
public var debugDescription: String {
// Slightly hacky multiline string to try to keep things
// clear.
"NIOSSHCertifiedPublicKey(" +
"nonce: \(self.nonce), " +
"serial: \(self.serial), " +
"type: \(self.type), " +
"key: \(self.key), " +
"keyID: \(self.keyID), " +
"validPrincipals: \(self.validPrincipals), " +
"validAfter: \(self.validAfter), " +
"validBefore: \(self.validBefore), " +
"criticalOptions: \(self.criticalOptions), " +
"extensions: \(self.extensions), " +
"signatureKey: \(self.signatureKey), " +
"signature: \(self.signature)" +
")"
"NIOSSHCertifiedPublicKey(nonce: \(self.nonce), serial: \(self.serial), type: \(self.type), "
+ "key: \(self.key), keyID: \(self.keyID), validPrincipals: \(self.validPrincipals), "
+ "validAfter: \(self.validAfter), validBefore: \(self.validBefore), "
+ "criticalOptions: \(self.criticalOptions), extensions: \(self.extensions), "
+ "signatureKey: \(self.signatureKey), signature: \(self.signature))"
}
}

Expand Down
Loading