mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
- **refactor: remove unused auth components** - **refactor: improve devbox configuration and deployment process** - **refactor: improve devnet and testnet setup** - **fix: update templ version to v0.2.778** - **refactor: rename pkl/net.matrix to pkl/matrix.net** - **refactor: migrate webapp components to nebula** - **refactor: protobuf types** - **chore: update dependencies for improved security and stability** - **feat: implement landing page and vault gateway servers** - **refactor: Migrate data models to new module structure and update related files** - **feature/1121-implement-ucan-validation** - **refactor: Replace hardcoded constants with model types in attns.go** - **feature/1121-implement-ucan-validation** - **chore: add origin Host struct and update main function to handle multiple hosts** - **build: remove unused static files from dwn module** - **build: remove unused static files from dwn module** - **refactor: Move DWN models to common package** - **refactor: move models to pkg/common** - **refactor: move vault web app assets to embed module** - **refactor: update session middleware import path** - **chore: configure port labels and auto-forwarding behavior** - **feat: enhance devcontainer configuration** - **feat: Add UCAN middleware for Echo with flexible token validation** - **feat: add JWT middleware for UCAN authentication** - **refactor: update package URI and versioning in PklProject files** - **fix: correct sonr.pkl import path** - **refactor: move JWT related code to auth package** - **feat: introduce vault configuration retrieval and management** - **refactor: Move vault components to gateway module and update file paths** - **refactor: remove Dexie and SQLite database implementations** - **feat: enhance frontend with PWA features and WASM integration** - **feat: add Devbox features and streamline Dockerfile** - **chore: update dependencies to include TigerBeetle** - **chore(deps): update go version to 1.23** - **feat: enhance devnet setup with PATH environment variable and updated PWA manifest** - **fix: upgrade tigerbeetle-go dependency and remove indirect dependency** - **feat: add PostgreSQL support to devnet and testnet deployments** - **refactor: rename keyshare cookie to token cookie** - **feat: upgrade Go version to 1.23.3 and update dependencies** - **refactor: update devnet and testnet configurations** - **feat: add IPFS configuration for devnet** - **I'll help you update the ipfs.config.pkl to include all the peers from the shell script. Here's the updated configuration:** - **refactor: move mpc package to crypto directory** - **feat: add BIP32 support for various cryptocurrencies** - **feat: enhance ATN.pkl with additional capabilities** - **refactor: simplify smart account and vault attenuation creation** - **feat: add new capabilities to the Attenuation type** - **refactor: Rename MPC files for clarity and consistency** - **feat: add DIDKey support for cryptographic operations** - **feat: add devnet and testnet deployment configurations** - **fix: correct key derivation in bip32 package** - **refactor: rename crypto/bip32 package to crypto/accaddr** - **fix: remove duplicate indirect dependency** - **refactor: move vault package to root directory** - **refactor: update routes for gateway and vault** - **refactor: remove obsolete web configuration file** - **refactor: remove unused TigerBeetle imports and update host configuration** - **refactor: adjust styles directory path** - **feat: add broadcastTx and simulateTx functions to gateway** - **feat: add PinVault handler**
166 lines
4.2 KiB
Go
Executable File
166 lines
4.2 KiB
Go
Executable File
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package ted25519
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto"
|
|
"crypto/rand"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/onsonr/sonr/crypto/core/curves"
|
|
)
|
|
|
|
// sign.input.gz is a selection of test cases from
|
|
// https://ed25519.cr.yp.to/python/sign.input
|
|
const testVectorPath = "../../../test/data/sign.input.gz"
|
|
|
|
type zeroReader struct{}
|
|
|
|
func (zeroReader) Read(buf []byte) (int, error) {
|
|
for i := range buf {
|
|
buf[i] = 0
|
|
}
|
|
return len(buf), nil
|
|
}
|
|
|
|
func TestUnmarshalMarshal(t *testing.T) {
|
|
pub, _, err := GenerateKey(rand.Reader)
|
|
require.NoError(t, err)
|
|
|
|
var publicKeyBytes [32]byte
|
|
copy(publicKeyBytes[:], pub)
|
|
|
|
A, err := new(curves.PointEd25519).FromAffineCompressed(publicKeyBytes[:])
|
|
require.NoError(t, err)
|
|
var pub2 [32]byte
|
|
copy(pub2[:], A.ToAffineCompressed())
|
|
|
|
if publicKeyBytes != pub2 {
|
|
t.Errorf("FromBytes(%v)->ToBytes does not round-trip, got %x\n", publicKeyBytes, pub2)
|
|
}
|
|
}
|
|
|
|
func TestSignVerify(t *testing.T) {
|
|
var zero zeroReader
|
|
public, private, err := GenerateKey(zero)
|
|
require.NoError(t, err)
|
|
|
|
message := []byte("test message")
|
|
sig, err := Sign(private, message)
|
|
require.NoError(t, err)
|
|
ok, _ := Verify(public, message, sig)
|
|
require.True(t, ok)
|
|
|
|
wrongMessage := []byte("wrong message")
|
|
ok, _ = Verify(public, wrongMessage, sig)
|
|
require.True(t, !ok)
|
|
}
|
|
|
|
func TestCryptoSigner(t *testing.T) {
|
|
var zero zeroReader
|
|
public, private, _ := GenerateKey(zero)
|
|
|
|
signer := crypto.Signer(private)
|
|
|
|
publicInterface := signer.Public()
|
|
public2, ok := publicInterface.(PublicKey)
|
|
if !ok {
|
|
t.Fatalf("expected PublicKey from Public() but got %T", publicInterface)
|
|
}
|
|
|
|
if !bytes.Equal(public, public2) {
|
|
t.Errorf("public keys do not match: original:%x vs Public():%x", public, public2)
|
|
}
|
|
|
|
message := []byte("message")
|
|
var noHash crypto.Hash
|
|
signature, err := signer.Sign(zero, message, noHash)
|
|
if err != nil {
|
|
t.Fatalf("error from Sign(): %s", err)
|
|
}
|
|
|
|
ok, _ = Verify(public, message, signature)
|
|
if !ok {
|
|
t.Errorf("Verify failed on signature from Sign()")
|
|
}
|
|
}
|
|
|
|
func TestMalleability(t *testing.T) {
|
|
// https://tools.ietf.org/html/rfc8032#section-5.1.7 adds an additional test
|
|
// that s be in [0, order). This prevents someone from adding a multiple of
|
|
// order to s and obtaining a second valid signature for the same message.
|
|
msg := []byte{0x54, 0x65, 0x73, 0x74}
|
|
sig := []byte{
|
|
0x7c, 0x38, 0xe0, 0x26, 0xf2, 0x9e, 0x14, 0xaa, 0xbd, 0x05, 0x9a,
|
|
0x0f, 0x2d, 0xb8, 0xb0, 0xcd, 0x78, 0x30, 0x40, 0x60, 0x9a, 0x8b,
|
|
0xe6, 0x84, 0xdb, 0x12, 0xf8, 0x2a, 0x27, 0x77, 0x4a, 0xb0, 0x67,
|
|
0x65, 0x4b, 0xce, 0x38, 0x32, 0xc2, 0xd7, 0x6f, 0x8f, 0x6f, 0x5d,
|
|
0xaf, 0xc0, 0x8d, 0x93, 0x39, 0xd4, 0xee, 0xf6, 0x76, 0x57, 0x33,
|
|
0x36, 0xa5, 0xc5, 0x1e, 0xb6, 0xf9, 0x46, 0xb3, 0x1d,
|
|
}
|
|
publicKey := []byte{
|
|
0x7d, 0x4d, 0x0e, 0x7f, 0x61, 0x53, 0xa6, 0x9b, 0x62, 0x42, 0xb5,
|
|
0x22, 0xab, 0xbe, 0xe6, 0x85, 0xfd, 0xa4, 0x42, 0x0f, 0x88, 0x34,
|
|
0xb1, 0x08, 0xc3, 0xbd, 0xae, 0x36, 0x9e, 0xf5, 0x49, 0xfa,
|
|
}
|
|
|
|
ok, _ := Verify(publicKey, msg, sig)
|
|
if ok {
|
|
t.Fatal("non-canonical signature accepted")
|
|
}
|
|
}
|
|
|
|
func BenchmarkKeyGeneration(b *testing.B) {
|
|
var zero zeroReader
|
|
for i := 0; i < b.N; i++ {
|
|
if _, _, err := GenerateKey(zero); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func BenchmarkNewKeyFromSeed(b *testing.B) {
|
|
seed := make([]byte, SeedSize)
|
|
b.ReportAllocs()
|
|
for i := 0; i < b.N; i++ {
|
|
_, _ = NewKeyFromSeed(seed)
|
|
}
|
|
}
|
|
|
|
func BenchmarkSigning(b *testing.B) {
|
|
var zero zeroReader
|
|
_, priv, err := GenerateKey(zero)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
message := []byte("Hello, world!")
|
|
b.ReportAllocs()
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_, _ = Sign(priv, message)
|
|
}
|
|
}
|
|
|
|
func BenchmarkVerification(b *testing.B) {
|
|
var zero zeroReader
|
|
pub, priv, err := GenerateKey(zero)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
message := []byte("Hello, world!")
|
|
signature, _ := Sign(priv, message)
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_, _ = Verify(pub, message, signature)
|
|
}
|
|
}
|