Add unit tests for keymatch.

This commit is contained in:
2025-11-19 00:32:39 -08:00
parent 245cf78ebb
commit 90a48a1890
6 changed files with 193 additions and 0 deletions

11
certlib/certgen/keygen.go Normal file
View File

@@ -0,0 +1,11 @@
package certgen
import (
"encoding/asn1"
)
var (
oidEd25519 = asn1.ObjectIdentifier{1, 3, 101, 110}
)
func GenerateKey() {}