refactor(crypto): simplify elliptic curve implementation

This commit is contained in:
Prad Nukala
2025-10-09 15:11:59 -04:00
parent a934caa7d3
commit 7d339ae522
205 changed files with 380 additions and 380 deletions
+4 -4
View File
@@ -12,10 +12,10 @@ import (
"testing"
"time"
"github.com/sonr-io/sonr/crypto/argon2"
ecdsaPkg "github.com/sonr-io/sonr/crypto/ecdsa"
"github.com/sonr-io/sonr/crypto/password"
"github.com/sonr-io/sonr/crypto/wasm"
"github.com/sonr-io/crypto/argon2"
ecdsaPkg "github.com/sonr-io/crypto/ecdsa"
"github.com/sonr-io/crypto/password"
"github.com/sonr-io/crypto/wasm"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)