Initial commit: crypto.go and protocol.go implementation + unit tests

This commit is contained in:
robert
2026-01-04 20:18:59 +00:00
commit e98625ef58
7 changed files with 506 additions and 0 deletions

14
ownwire_sdk_suite_test.go Normal file
View File

@@ -0,0 +1,14 @@
package ownwire_sdk_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestOwnwireSdk(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Ownwire SDK Suite")
}