From 8742dd209a5927a505f4b51b25d0e51650dce7f2 Mon Sep 17 00:00:00 2001 From: Daan Selen Date: Mon, 24 Nov 2025 19:55:46 +0100 Subject: [PATCH] chore: update names --- main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 77ed57c..e9af9d6 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ import ( "fmt" "log" "os" - certpair "pkcs-generator/modules/cert-pairs" + certpair "pkcs-generator/modules/certpairs" "slices" "fyne.io/fyne/v2" @@ -26,8 +26,8 @@ var ( ) func main() { - a := app.NewWithID("nl.systemec.pkcs12-generator") - w := a.NewWindow("Systemec PKCS12-Generator") + a := app.NewWithID("nl.systemec.pkcs-generator") + w := a.NewWindow("Systemec PKCS-Generator") w.Resize(windowSize) var keyPath, certPath string @@ -228,7 +228,7 @@ func parseX509(certData []byte) *x509.Certificate { return cert } -func integrityCheckAndGo(keyPath, certPath, caCertString, caRootString string) (string, []byte) { +func integrityCheckAndGo(keyPath, certPath, caRootString, caCertString string) (string, []byte) { if _, err := os.Stat(keyPath); err != nil { fmt.Printf("Error checking Private Keyfile, %e", err) return "Error...", nil