Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
format
  • Loading branch information
jiuker committed Jul 18, 2024
1 parent eb09042 commit 17ada09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -1113,8 +1113,8 @@ func sidekickMain(ctx *cli.Context) {
console.Fatalln(err)
}
fingerprint := sha256.Sum256(certificates.Certificate[0])
console.Printf("\nCertificate: % X\n", fingerprint[:len(fingerprint)/2])
console.Printf(" % X", fingerprint[len(fingerprint)/2:])
console.Printf("\nCertificate: % X", fingerprint[:len(fingerprint)/2])
console.Printf("\n % X", fingerprint[len(fingerprint)/2:])
var publicKeyDER []byte
switch privateKey := certificates.PrivateKey.(type) {
case *ecdsa.PrivateKey:
Expand Down

0 comments on commit 17ada09

Please sign in to comment.