Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
张蕾
Geth-Modification
Commits
af153e78
Commit
af153e78
authored
Mar 29, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix_ecrecover' of
https://github.com/ebuchman/go-ethereum
into ebuchman-fix_ecrecover
parents
3b20603e
d2fa6e77
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
7 deletions
+21
-7
address.go
core/vm/address.go
+21
-7
No files found.
core/vm/address.go
View file @
af153e78
...
...
@@ -3,8 +3,8 @@ package vm
import
(
"math/big"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
)
type
Address
interface
{
...
...
@@ -61,15 +61,29 @@ func ripemd160Func(in []byte) []byte {
return
common
.
LeftPadBytes
(
crypto
.
Ripemd160
(
in
),
32
)
}
func
ecrecoverFunc
(
in
[]
byte
)
[]
byte
{
// In case of an invalid sig. Defaults to return nil
defer
func
()
{
recover
()
}()
const
EcRecoverInputLength
=
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
)
<
EcRecoverInputLength
{
return
nil
}
hash
:=
in
[
:
32
]
v
:=
common
.
BigD
(
in
[
32
:
64
])
.
Bytes
()[
0
]
-
27
// 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
)
{
return
nil
}
sig
:=
append
(
in
[
64
:
],
v
)
return
common
.
LeftPadBytes
(
crypto
.
Sha3
(
crypto
.
Ecrecover
(
append
(
hash
,
sig
...
))[
1
:
])[
12
:
],
32
)
pubKey
:=
crypto
.
Ecrecover
(
append
(
hash
,
sig
...
))
// secp256.go returns either nil or 65 bytes
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
)
}
func
memCpy
(
in
[]
byte
)
[]
byte
{
...
...
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