Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
link33
plugin
Commits
e7055a84
Commit
e7055a84
authored
Jun 04, 2020
by
vipwzw
Committed by
33cn
Jun 05, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update chain33 2020.06.04
parent
4c8918d6
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
go.mod
go.mod
+1
-1
go.sum
go.sum
+2
-2
onetimeed25519.go
plugin/dapp/privacy/crypto/onetimeed25519.go
+1
-1
privacy.go
plugin/dapp/privacy/crypto/privacy.go
+1
-1
privatekey.go
plugin/dapp/privacy/crypto/privatekey.go
+1
-1
ring_signature.go
plugin/dapp/privacy/crypto/ring_signature.go
+1
-1
ring_signature_crypto.go
plugin/dapp/privacy/crypto/ring_signature_crypto.go
+1
-1
No files found.
go.mod
View file @
e7055a84
...
@@ -3,7 +3,7 @@ module github.com/33cn/plugin
...
@@ -3,7 +3,7 @@ module github.com/33cn/plugin
go 1.12
go 1.12
require (
require (
github.com/33cn/chain33 v0.0.0-20200
527072033-e43d8da29c46
github.com/33cn/chain33 v0.0.0-20200
604064703-f83579f8a740
github.com/BurntSushi/toml v0.3.1
github.com/BurntSushi/toml v0.3.1
github.com/NebulousLabs/Sia v1.3.7
github.com/NebulousLabs/Sia v1.3.7
github.com/beorn7/perks v1.0.1 // indirect
github.com/beorn7/perks v1.0.1 // indirect
...
...
go.sum
View file @
e7055a84
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
github.com/33cn/chain33 v0.0.0-20200
527072033-e43d8da29c46 h1:i1O/BN5IvAkc0Jy3qfXyhlqI+v9N5+1j6McAgm///Mk
=
github.com/33cn/chain33 v0.0.0-20200
604064703-f83579f8a740 h1:VFYX0501ZnvpNy/Bf/lWS7cy51GkvnCpNjlqTeU4488
=
github.com/33cn/chain33 v0.0.0-20200
527072033-e43d8da29c46
/go.mod h1:RJsUKcMdXtCgpqp1W1ga6jTCieuJm6n7qd3XmnPXwa4=
github.com/33cn/chain33 v0.0.0-20200
604064703-f83579f8a740
/go.mod h1:RJsUKcMdXtCgpqp1W1ga6jTCieuJm6n7qd3XmnPXwa4=
github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7 h1:PqzgE6kAMi81xWQA2QIVxjWkFHptGgC547vchpUbtFo=
github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7 h1:PqzgE6kAMi81xWQA2QIVxjWkFHptGgC547vchpUbtFo=
github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=
github.com/AndreasBriese/bbloom v0.0.0-20180913140656-343706a395b7/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=
github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9 h1:HD8gA2tkByhMAwYaFAX9w2l7vxvBQ5NMoxDrkhqhtn4=
github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9 h1:HD8gA2tkByhMAwYaFAX9w2l7vxvBQ5NMoxDrkhqhtn4=
...
...
plugin/dapp/privacy/crypto/onetimeed25519.go
View file @
e7055a84
...
@@ -9,7 +9,7 @@ import (
...
@@ -9,7 +9,7 @@ import (
"unsafe"
"unsafe"
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/
common
/ed25519/edwards25519"
"github.com/33cn/chain33/
system/crypto/ed25519
/ed25519/edwards25519"
privacytypes
"github.com/33cn/plugin/plugin/dapp/privacy/types"
privacytypes
"github.com/33cn/plugin/plugin/dapp/privacy/types"
)
)
...
...
plugin/dapp/privacy/crypto/privacy.go
View file @
e7055a84
...
@@ -14,8 +14,8 @@ import (
...
@@ -14,8 +14,8 @@ import (
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/common/crypto/sha3"
"github.com/33cn/chain33/common/crypto/sha3"
"github.com/33cn/chain33/common/ed25519/edwards25519"
log
"github.com/33cn/chain33/common/log/log15"
log
"github.com/33cn/chain33/common/log/log15"
"github.com/33cn/chain33/system/crypto/ed25519/ed25519/edwards25519"
sccrypto
"github.com/NebulousLabs/Sia/crypto"
sccrypto
"github.com/NebulousLabs/Sia/crypto"
)
)
...
...
plugin/dapp/privacy/crypto/privatekey.go
View file @
e7055a84
...
@@ -10,7 +10,7 @@ import (
...
@@ -10,7 +10,7 @@ import (
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/common/crypto/sha3"
"github.com/33cn/chain33/common/crypto/sha3"
"github.com/33cn/chain33/
common
/ed25519/edwards25519"
"github.com/33cn/chain33/
system/crypto/ed25519
/ed25519/edwards25519"
)
)
// PrivKeyPrivacy struct data type
// PrivKeyPrivacy struct data type
...
...
plugin/dapp/privacy/crypto/ring_signature.go
View file @
e7055a84
...
@@ -8,7 +8,7 @@ import (
...
@@ -8,7 +8,7 @@ import (
"unsafe"
"unsafe"
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/
common
/ed25519/edwards25519"
"github.com/33cn/chain33/
system/crypto/ed25519
/ed25519/edwards25519"
"github.com/33cn/chain33/types"
"github.com/33cn/chain33/types"
privacytypes
"github.com/33cn/plugin/plugin/dapp/privacy/types"
privacytypes
"github.com/33cn/plugin/plugin/dapp/privacy/types"
)
)
...
...
plugin/dapp/privacy/crypto/ring_signature_crypto.go
View file @
e7055a84
...
@@ -15,7 +15,7 @@ import (
...
@@ -15,7 +15,7 @@ import (
"github.com/33cn/chain33/common"
"github.com/33cn/chain33/common"
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/common/crypto"
"github.com/33cn/chain33/
common
/ed25519/edwards25519"
"github.com/33cn/chain33/
system/crypto/ed25519
/ed25519/edwards25519"
"github.com/33cn/chain33/types"
"github.com/33cn/chain33/types"
privacytypes
"github.com/33cn/plugin/plugin/dapp/privacy/types"
privacytypes
"github.com/33cn/plugin/plugin/dapp/privacy/types"
)
)
...
...
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