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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
0969b35e
Commit
0969b35e
authored
9 years ago
by
Péter Szilágyi
Browse files
Options
Downloads
Patches
Plain Diff
crypto: code polish + ensure key file contents match with name
parent
cda91ee1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
crypto/key_store_passphrase.go
+12
-5
12 additions, 5 deletions
crypto/key_store_passphrase.go
with
12 additions
and
5 deletions
crypto/key_store_passphrase.go
+
12
−
5
View file @
0969b35e
...
...
@@ -34,7 +34,6 @@ import (
"errors"
"fmt"
"io"
"reflect"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto/randentropy"
...
...
@@ -157,8 +156,7 @@ func DecryptKey(keyjson []byte, auth string) (*Key, error) {
keyBytes
,
keyId
[]
byte
err
error
)
v
:=
reflect
.
ValueOf
(
m
[
"version"
])
if
v
.
Kind
()
==
reflect
.
String
&&
v
.
String
()
==
"1"
{
if
version
,
ok
:=
m
[
"version"
]
.
(
string
);
ok
&&
version
==
"1"
{
k
:=
new
(
encryptedKeyJSONV1
)
if
err
:=
json
.
Unmarshal
(
keyjson
,
k
);
err
!=
nil
{
return
nil
,
err
...
...
@@ -183,12 +181,21 @@ func DecryptKey(keyjson []byte, auth string) (*Key, error) {
},
nil
}
func
decryptKeyFromFile
(
keysDirPath
string
,
keyAddr
common
.
Address
,
auth
string
)
(
key
*
Key
,
err
error
)
{
func
decryptKeyFromFile
(
keysDirPath
string
,
keyAddr
common
.
Address
,
auth
string
)
(
*
Key
,
error
)
{
// Load the key from the keystore and decrypt its contents
keyjson
,
err
:=
getKeyFile
(
keysDirPath
,
keyAddr
)
if
err
!=
nil
{
return
nil
,
err
}
return
DecryptKey
(
keyjson
,
auth
)
key
,
err
:=
DecryptKey
(
keyjson
,
auth
)
if
err
!=
nil
{
return
nil
,
err
}
// Make sure we're really operating on the requested key (no swap attacks)
if
keyAddr
!=
key
.
Address
{
return
nil
,
fmt
.
Errorf
(
"key content mismatch: have account %x, want %x"
,
key
.
Address
,
keyAddr
)
}
return
key
,
nil
}
func
decryptKeyV3
(
keyProtected
*
encryptedKeyJSONV3
,
auth
string
)
(
keyBytes
[]
byte
,
keyId
[]
byte
,
err
error
)
{
...
...
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