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
dd37064a
Commit
dd37064a
authored
Apr 12, 2017
by
Victor Farazdagi
Committed by
Felix Lange
Apr 12, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd/swarm: add --password (#3748)
parent
9de25750
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
main.go
cmd/swarm/main.go
+18
-6
No files found.
cmd/swarm/main.go
View file @
dd37064a
...
@@ -237,6 +237,7 @@ Cleans database of corrupted entries.
...
@@ -237,6 +237,7 @@ Cleans database of corrupted entries.
utils
.
IPCDisabledFlag
,
utils
.
IPCDisabledFlag
,
utils
.
IPCApiFlag
,
utils
.
IPCApiFlag
,
utils
.
IPCPathFlag
,
utils
.
IPCPathFlag
,
utils
.
PasswordFileFlag
,
// bzzd-specific flags
// bzzd-specific flags
CorsStringFlag
,
CorsStringFlag
,
EthAPIFlag
,
EthAPIFlag
,
...
@@ -368,10 +369,10 @@ func getAccount(ctx *cli.Context, stack *node.Node) *ecdsa.PrivateKey {
...
@@ -368,10 +369,10 @@ func getAccount(ctx *cli.Context, stack *node.Node) *ecdsa.PrivateKey {
am
:=
stack
.
AccountManager
()
am
:=
stack
.
AccountManager
()
ks
:=
am
.
Backends
(
keystore
.
KeyStoreType
)[
0
]
.
(
*
keystore
.
KeyStore
)
ks
:=
am
.
Backends
(
keystore
.
KeyStoreType
)[
0
]
.
(
*
keystore
.
KeyStore
)
return
decryptStoreAccount
(
ks
,
keyid
)
return
decryptStoreAccount
(
ks
,
keyid
,
utils
.
MakePasswordList
(
ctx
)
)
}
}
func
decryptStoreAccount
(
ks
*
keystore
.
KeyStore
,
account
string
)
*
ecdsa
.
PrivateKey
{
func
decryptStoreAccount
(
ks
*
keystore
.
KeyStore
,
account
string
,
passwords
[]
string
)
*
ecdsa
.
PrivateKey
{
var
a
accounts
.
Account
var
a
accounts
.
Account
var
err
error
var
err
error
if
common
.
IsHexAddress
(
account
)
{
if
common
.
IsHexAddress
(
account
)
{
...
@@ -392,9 +393,9 @@ func decryptStoreAccount(ks *keystore.KeyStore, account string) *ecdsa.PrivateKe
...
@@ -392,9 +393,9 @@ func decryptStoreAccount(ks *keystore.KeyStore, account string) *ecdsa.PrivateKe
if
err
!=
nil
{
if
err
!=
nil
{
utils
.
Fatalf
(
"Can't load swarm account key: %v"
,
err
)
utils
.
Fatalf
(
"Can't load swarm account key: %v"
,
err
)
}
}
for
i
:=
1
;
i
<=
3
;
i
++
{
for
i
:=
0
;
i
<
3
;
i
++
{
pass
phrase
:=
promptPassphrase
(
fmt
.
Sprintf
(
"Unlocking swarm account %s [%d/3]"
,
a
.
Address
.
Hex
(),
i
)
)
pass
word
:=
getPassPhrase
(
fmt
.
Sprintf
(
"Unlocking swarm account %s [%d/3]"
,
a
.
Address
.
Hex
(),
i
+
1
),
i
,
passwords
)
key
,
err
:=
keystore
.
DecryptKey
(
keyjson
,
pass
phrase
)
key
,
err
:=
keystore
.
DecryptKey
(
keyjson
,
pass
word
)
if
err
==
nil
{
if
err
==
nil
{
return
key
.
PrivateKey
return
key
.
PrivateKey
}
}
...
@@ -403,7 +404,18 @@ func decryptStoreAccount(ks *keystore.KeyStore, account string) *ecdsa.PrivateKe
...
@@ -403,7 +404,18 @@ func decryptStoreAccount(ks *keystore.KeyStore, account string) *ecdsa.PrivateKe
return
nil
return
nil
}
}
func
promptPassphrase
(
prompt
string
)
string
{
// getPassPhrase retrieves the password associated with bzz account, either by fetching
// from a list of pre-loaded passwords, or by requesting it interactively from user.
func
getPassPhrase
(
prompt
string
,
i
int
,
passwords
[]
string
)
string
{
// non-interactive
if
len
(
passwords
)
>
0
{
if
i
<
len
(
passwords
)
{
return
passwords
[
i
]
}
return
passwords
[
len
(
passwords
)
-
1
]
}
// fallback to interactive mode
if
prompt
!=
""
{
if
prompt
!=
""
{
fmt
.
Println
(
prompt
)
fmt
.
Println
(
prompt
)
}
}
...
...
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