working commit

This commit is contained in:
2026-01-30 00:15:20 +02:00
parent 1efa93804d
commit 95aa086327
5 changed files with 221 additions and 19 deletions
+15
View File
@@ -0,0 +1,15 @@
package auxx509
import (
"fmt"
"testing"
"github.com/stretchr/testify/require"
)
func TestCert(t *testing.T) {
caCert, caKey, err := CreateSelfSignedCert("test1")
require.NoError(t, err)
fmt.Println(string(caCert))
fmt.Println(string(caKey))
}