all: add Go 1.25 support

This commit is contained in:
Ayke van Laethem
2025-07-11 09:34:44 +02:00
committed by Ron Evans
parent 8911abbc6d
commit b33b6ce293
9 changed files with 37 additions and 23 deletions
+4
View File
@@ -63,6 +63,10 @@ func SecCertificateCopyData(cert CFRef) ([]byte, error) {
return nil, errors.New("not implemented")
}
func SecTrustCopyCertificateChain(trustObj CFRef) (CFRef, error) {
return 0, errors.New("not implemented")
}
func SecTrustEvaluateWithError(trustObj CFRef) (int, error) {
return 0, errors.New("not implemented")
}