Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethcrypto
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nebula
ethcrypto
Commits
5de490f2
Commit
5de490f2
authored
Jul 05, 2025
by
vicotor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update mod name
parent
daf37694
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
26 additions
and
26 deletions
+26
-26
json_example_test.go
common/hexutil/json_example_test.go
+1
-1
bn256_fast.go
crypto/bn256/bn256_fast.go
+1
-1
bn256_slow.go
crypto/bn256/bn256_slow.go
+1
-1
crypto.go
crypto/crypto.go
+2
-2
ecies.go
crypto/ecies/ecies.go
+1
-1
ecies_test.go
crypto/ecies/ecies_test.go
+1
-1
params.go
crypto/ecies/params.go
+1
-1
kzg4844.go
crypto/kzg4844/kzg4844.go
+1
-1
kzg4844_ckzg_cgo.go
crypto/kzg4844/kzg4844_ckzg_cgo.go
+1
-1
dummy.go
crypto/secp256k1/dummy.go
+3
-3
signature_cgo.go
crypto/signature_cgo.go
+2
-2
go.mod
go.mod
+1
-1
decode.go
rlp/decode.go
+1
-1
decode_test.go
rlp/decode_test.go
+1
-1
encbuffer_example_test.go
rlp/encbuffer_example_test.go
+1
-1
encode.go
rlp/encode.go
+1
-1
encode_test.go
rlp/encode_test.go
+1
-1
encoder_example_test.go
rlp/encoder_example_test.go
+1
-1
iterator_test.go
rlp/iterator_test.go
+1
-1
gen.go
rlp/rlpgen/gen.go
+1
-1
main.go
rlp/rlpgen/main.go
+1
-1
typecache.go
rlp/typecache.go
+1
-1
No files found.
common/hexutil/json_example_test.go
View file @
5de490f2
...
...
@@ -20,7 +20,7 @@ import (
"encoding/json"
"fmt"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/common/hexutil"
"
code.wuban.net.cn/cmpchain
/ethcrypto/common/hexutil"
)
type
MyType
[
5
]
byte
...
...
crypto/bn256/bn256_fast.go
View file @
5de490f2
...
...
@@ -9,7 +9,7 @@
package
bn256
import
(
bn256cf
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto/bn256/cloudflare"
bn256cf
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto/bn256/cloudflare"
)
// G1 is an abstract cyclic group. The zero value is suitable for use as the
...
...
crypto/bn256/bn256_slow.go
View file @
5de490f2
...
...
@@ -8,7 +8,7 @@
// Package bn256 implements the Optimal Ate pairing over a 256-bit Barreto-Naehrig curve.
package
bn256
import
bn256
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto/bn256/google"
import
bn256
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto/bn256/google"
// G1 is an abstract cyclic group. The zero value is suitable for use as the
// output of an operation, but cannot be used as an input.
...
...
crypto/crypto.go
View file @
5de490f2
...
...
@@ -24,14 +24,14 @@ import (
"encoding/hex"
"errors"
"fmt"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/common/math"
"
code.wuban.net.cn/cmpchain
/ethcrypto/common/math"
"hash"
"io"
"math/big"
"os"
metatypes
"github.com/CaduceusMetaverseProtocol/MetaTypes/types"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/rlp"
"
code.wuban.net.cn/cmpchain
/ethcrypto/rlp"
"golang.org/x/crypto/sha3"
)
...
...
crypto/ecies/ecies.go
View file @
5de490f2
...
...
@@ -41,7 +41,7 @@ import (
"io"
"math/big"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto"
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto"
)
var
(
...
...
crypto/ecies/ecies_test.go
View file @
5de490f2
...
...
@@ -39,7 +39,7 @@ import (
"math/big"
"testing"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto"
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto"
)
func
TestKDF
(
t
*
testing
.
T
)
{
...
...
crypto/ecies/params.go
View file @
5de490f2
...
...
@@ -43,7 +43,7 @@ import (
"fmt"
"hash"
ethcrypto
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto"
ethcrypto
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto"
)
var
(
...
...
crypto/kzg4844/kzg4844.go
View file @
5de490f2
...
...
@@ -24,7 +24,7 @@ import (
"reflect"
"sync/atomic"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/common/hexutil"
"
code.wuban.net.cn/cmpchain
/ethcrypto/common/hexutil"
)
//go:embed trusted_setup.json
...
...
crypto/kzg4844/kzg4844_ckzg_cgo.go
View file @
5de490f2
...
...
@@ -23,7 +23,7 @@ import (
"errors"
"sync"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/common/hexutil"
"
code.wuban.net.cn/cmpchain
/ethcrypto/common/hexutil"
gokzg4844
"github.com/crate-crypto/go-kzg-4844"
ckzg4844
"github.com/ethereum/c-kzg-4844/bindings/go"
)
...
...
crypto/secp256k1/dummy.go
View file @
5de490f2
...
...
@@ -15,7 +15,7 @@
package
secp256k1
import
(
_
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto/secp256k1/libsecp256k1/include"
_
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto/secp256k1/libsecp256k1/src"
_
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto/secp256k1/libsecp256k1/src/modules/recovery"
_
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto/secp256k1/libsecp256k1/include"
_
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto/secp256k1/libsecp256k1/src"
_
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto/secp256k1/libsecp256k1/src/modules/recovery"
)
crypto/signature_cgo.go
View file @
5de490f2
...
...
@@ -23,9 +23,9 @@ import (
"crypto/ecdsa"
"errors"
"fmt"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/common/math"
"
code.wuban.net.cn/cmpchain
/ethcrypto/common/math"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/crypto/secp256k1"
"
code.wuban.net.cn/cmpchain
/ethcrypto/crypto/secp256k1"
)
// Ecrecover returns the uncompressed public key that created the given signature.
...
...
go.mod
View file @
5de490f2
module
github.com/CaduceusMetaverseProtocol
/ethcrypto
module
code.wuban.net.cn/cmpchain
/ethcrypto
go 1.24.0
...
...
rlp/decode.go
View file @
5de490f2
...
...
@@ -28,7 +28,7 @@ import (
"strings"
"sync"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/rlp/internal/rlpstruct"
"
code.wuban.net.cn/cmpchain
/ethcrypto/rlp/internal/rlpstruct"
"github.com/holiman/uint256"
)
...
...
rlp/decode_test.go
View file @
5de490f2
...
...
@@ -28,7 +28,7 @@ import (
"strings"
"testing"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/common/math"
"
code.wuban.net.cn/cmpchain
/ethcrypto/common/math"
"github.com/holiman/uint256"
)
...
...
rlp/encbuffer_example_test.go
View file @
5de490f2
...
...
@@ -20,7 +20,7 @@ import (
"bytes"
"fmt"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/rlp"
"
code.wuban.net.cn/cmpchain
/ethcrypto/rlp"
)
func
ExampleEncoderBuffer
()
{
...
...
rlp/encode.go
View file @
5de490f2
...
...
@@ -23,7 +23,7 @@ import (
"math/big"
"reflect"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/rlp/internal/rlpstruct"
"
code.wuban.net.cn/cmpchain
/ethcrypto/rlp/internal/rlpstruct"
"github.com/holiman/uint256"
)
...
...
rlp/encode_test.go
View file @
5de490f2
...
...
@@ -26,7 +26,7 @@ import (
"sync"
"testing"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/common/math"
"
code.wuban.net.cn/cmpchain
/ethcrypto/common/math"
"github.com/holiman/uint256"
)
...
...
rlp/encoder_example_test.go
View file @
5de490f2
...
...
@@ -20,7 +20,7 @@ import (
"fmt"
"io"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/rlp"
"
code.wuban.net.cn/cmpchain
/ethcrypto/rlp"
)
type
MyCoolType
struct
{
...
...
rlp/iterator_test.go
View file @
5de490f2
...
...
@@ -19,7 +19,7 @@ package rlp
import
(
"testing"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/common/hexutil"
"
code.wuban.net.cn/cmpchain
/ethcrypto/common/hexutil"
)
// TestIterator tests some basic things about the ListIterator. A more
...
...
rlp/rlpgen/gen.go
View file @
5de490f2
...
...
@@ -23,7 +23,7 @@ import (
"go/types"
"sort"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/rlp/internal/rlpstruct"
"
code.wuban.net.cn/cmpchain
/ethcrypto/rlp/internal/rlpstruct"
)
// buildContext keeps the data needed for make*Op.
...
...
rlp/rlpgen/main.go
View file @
5de490f2
...
...
@@ -27,7 +27,7 @@ import (
"golang.org/x/tools/go/packages"
)
const
pathOfPackageRLP
=
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/rlp"
const
pathOfPackageRLP
=
"
code.wuban.net.cn/cmpchain
/ethcrypto/rlp"
func
main
()
{
var
(
...
...
rlp/typecache.go
View file @
5de490f2
...
...
@@ -23,7 +23,7 @@ import (
"sync"
"sync/atomic"
"
github.com/CaduceusMetaverseProtocol
/ethcrypto/rlp/internal/rlpstruct"
"
code.wuban.net.cn/cmpchain
/ethcrypto/rlp/internal/rlpstruct"
)
// typeinfo is an entry in the type cache.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment