refactor: change default PKI directory to user home directory

This commit is contained in:
Tanishq Dubey 2025-05-16 21:15:40 -04:00 committed by Tanishq Dubey (aider)
parent 52d7af083e
commit 787262c8a0
No known key found for this signature in database
GPG Key ID: CFC1931B84DFC3F9

View File

@ -21,7 +21,7 @@ const (
// Default certificate validity period // Default certificate validity period
DefaultCertValidityDays = 365 // 1 year DefaultCertValidityDays = 365 // 1 year
// Default PKI directory // Default PKI directory
DefaultPKIDir = "/var/lib/kat/pki" DefaultPKIDir = "~/.kat/pki"
) )
// GenerateCA creates a new Certificate Authority key pair and certificate. // GenerateCA creates a new Certificate Authority key pair and certificate.