This commit is contained in:
eyedeekay
2024-10-03 21:55:35 -04:00
parent 0c7a3f0f22
commit 9f4154ff45
2 changed files with 3 additions and 5 deletions

View File

@ -6,13 +6,13 @@ import "crypto"
// Public Key and the Signing Public Key
type PrivateKeysAndCert struct {
KeysAndCert
PK_KEY crypto.PrivateKey
PK_KEY crypto.PrivateKey
SPK_KEY crypto.PrivateKey
}
func NewPrivateKeysAndCert() (*PrivateKeysAndCert, error) {
var pkc PrivateKeysAndCert
var err error
//pkc.PK_KEY, err =
// pkc.PK_KEY, err =
return &pkc, err
}
}

View File

@ -5,9 +5,7 @@ import (
)
func TestServer(t *testing.T) {
}
func TestEstablishment(t *testing.T) {
}