Made it a bit cleaner :)

This commit is contained in:
2025-12-19 16:57:47 -07:00
parent 302979b01a
commit 3822b1813c
7 changed files with 217 additions and 137 deletions

12
himbocrypt.go Normal file
View File

@@ -0,0 +1,12 @@
package himbocrypt
import "himbocrypt/pkg/engine"
type (
Engine = engine.Engine
KeyPair = engine.KeyPair
)
func NewEngine() *Engine {
return engine.NewEngine()
}