feat(GODT-2771): improved macOS cert installation tools.

This commit is contained in:
Xavier Michelon
2023-08-15 16:41:03 +02:00
parent bccf31501d
commit 2d6f42e0b5
3 changed files with 405 additions and 77 deletions

View File

@ -30,3 +30,7 @@ func (installer *Installer) InstallCert(certPEM []byte) error {
func (installer *Installer) UninstallCert(certPEM []byte) error {
return uninstallCert(certPEM)
}
func (installer *Installer) IsCertInstalled(certPEM []byte) bool {
return isCertInstalled(certPEM)
}