good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
61c5edcb
Commit
61c5edcb
authored
Mar 29, 2015
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup.
parent
af153e78
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/vm/address.go
+13
-10
13 additions, 10 deletions
core/vm/address.go
crypto/crypto.go
+7
-9
7 additions, 9 deletions
crypto/crypto.go
with
20 additions
and
19 deletions
core/vm/address.go
+
13
−
10
View file @
61c5edcb
...
...
@@ -61,27 +61,30 @@ func ripemd160Func(in []byte) []byte {
return
common
.
LeftPadBytes
(
crypto
.
Ripemd160
(
in
),
32
)
}
const
E
cRecoverInputLength
=
128
const
e
cRecoverInputLength
=
128
func
ecrecoverFunc
(
in
[]
byte
)
[]
byte
{
// "in" is (hash, v, r, s), each 32 bytes
// but for ecrecover we want (r, s, v)
if
len
(
in
)
<
E
cRecoverInputLength
{
if
len
(
in
)
<
e
cRecoverInputLength
{
return
nil
}
hash
:=
in
[
:
32
]
//
v is only a bit, but comes as 32 bytes from vm. We only need least significant byte
encodedV
:=
in
[
32
:
64
]
v
:=
encodedV
[
31
]
-
27
if
!
(
v
==
0
||
v
==
1
)
{
//
Treat V as a 256bit integer
v
:=
new
(
big
.
Int
)
.
Sub
(
common
.
Bytes2Big
(
in
[
32
:
64
]),
big
.
NewInt
(
27
))
// Ethereum requires V to be either 0 or 1 => (27 || 28)
if
!
(
v
.
Cmp
(
Zero
)
==
0
||
v
.
Cmp
(
One
)
==
0
)
{
return
nil
}
sig
:=
append
(
in
[
64
:
],
v
)
pubKey
:=
crypto
.
Ecrecover
(
append
(
hash
,
sig
...
))
// secp256.go returns either nil or 65 bytes
// v needs to be moved to the end
rsv
:=
append
(
in
[
64
:
128
],
byte
(
v
.
Uint64
()))
pubKey
:=
crypto
.
Ecrecover
(
in
[
:
32
],
rsv
)
// make sure the public key is a valid one
if
pubKey
==
nil
||
len
(
pubKey
)
!=
65
{
return
nil
}
// the first byte of pubkey is bitcoin heritage
return
common
.
LeftPadBytes
(
crypto
.
Sha3
(
pubKey
[
1
:
])[
12
:
],
32
)
}
...
...
This diff is collapsed.
Click to expand it.
crypto/crypto.go
+
7
−
9
View file @
61c5edcb
...
...
@@ -68,13 +68,8 @@ func Ripemd160(data []byte) []byte {
return
ripemd
.
Sum
(
nil
)
}
func
Ecrecover
(
data
[]
byte
)
[]
byte
{
var
in
=
struct
{
hash
[]
byte
sig
[]
byte
}{
data
[
:
32
],
data
[
32
:
]}
r
,
_
:=
secp256k1
.
RecoverPubkey
(
in
.
hash
,
in
.
sig
)
func
Ecrecover
(
hash
,
sig
[]
byte
)
[]
byte
{
r
,
_
:=
secp256k1
.
RecoverPubkey
(
hash
,
sig
)
return
r
}
...
...
@@ -151,9 +146,12 @@ func GenerateKey() (*ecdsa.PrivateKey, error) {
}
func
SigToPub
(
hash
,
sig
[]
byte
)
*
ecdsa
.
PublicKey
{
s
:=
Ecrecover
(
append
(
hash
,
sig
...
))
x
,
y
:=
elliptic
.
Unmarshal
(
S256
(),
s
)
s
:=
Ecrecover
(
hash
,
sig
)
if
s
==
nil
||
len
(
s
)
!=
65
{
return
nil
}
x
,
y
:=
elliptic
.
Unmarshal
(
S256
(),
s
)
return
&
ecdsa
.
PublicKey
{
S256
(),
x
,
y
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment