fix broken links in mobile account management page
This commit is contained in:
@ -44,14 +44,9 @@ trade-offs nonetheless.
|
|||||||
|
|
||||||
*For those interested in the cryptographic and/or implementation details, the key-store
|
*For those interested in the cryptographic and/or implementation details, the key-store
|
||||||
uses the `secp256k1` elliptic curve as defined in the [Standards for Efficient
|
uses the `secp256k1` elliptic curve as defined in the [Standards for Efficient
|
||||||
Cryptography](sec2), implemented by the [`libsecp256k`](secp256k1) library and wrapped by
|
Cryptography](sec2), implemented by the [`libsecp256k`][secp256k1] library and wrapped by
|
||||||
[`github.com/ethereum/go-ethereum/accounts`](accounts-go). Accounts are stored on disk in
|
[`github.com/ethereum/go-ethereum/accounts`][accounts-go]. Accounts are stored on disk in
|
||||||
the [Web3 Secret Storage](secstore) format.*
|
the [Web3 Secret Storage][secstore] format.*
|
||||||
|
|
||||||
[sec2]: https://www.secg.org/sec2-v2.pdf
|
|
||||||
[accounts-go]: https://godoc.org/github.com/ethereum/go-ethereum/accounts
|
|
||||||
[secp256k1]: https://github.com/bitcoin-core/secp256k1
|
|
||||||
[secstore]: https://github.com/ethereum/wiki/wiki/Web3-Secret-Storage-Definition
|
|
||||||
|
|
||||||
### Keystores on Android (Java)
|
### Keystores on Android (Java)
|
||||||
|
|
||||||
@ -125,8 +120,7 @@ importing them on another device.
|
|||||||
|
|
||||||
Although the keystore defines the encryption strength it uses to store your accounts,
|
Although the keystore defines the encryption strength it uses to store your accounts,
|
||||||
there is no global master password that can grant access to all of them. Rather each
|
there is no global master password that can grant access to all of them. Rather each
|
||||||
account is maintained individually, and stored on disk in its [encrypted
|
account is maintained individually, and stored on disk in its [encrypted format][secstore]
|
||||||
format](https://github.com/ethereum/wiki/wiki/Web3-Secret-Storage-Definition)
|
|
||||||
individually, ensuring a much cleaner and stricter separation of credentials.
|
individually, ensuring a much cleaner and stricter separation of credentials.
|
||||||
|
|
||||||
This individuality however means that any operation requiring access to an account will
|
This individuality however means that any operation requiring access to an account will
|
||||||
@ -322,3 +316,7 @@ try! ks?.timedUnlock(signer, passphrase: "Signer password", timeout: 1000000000)
|
|||||||
signed = try! ks?.signTx(signer, tx: tx, chainID: chain)
|
signed = try! ks?.signTx(signer, tx: tx, chainID: chain)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
[sec2]: https://www.secg.org/sec2-v2.pdf
|
||||||
|
[accounts-go]: https://godoc.org/github.com/ethereum/go-ethereum/accounts
|
||||||
|
[secp256k1]: https://github.com/bitcoin-core/secp256k1
|
||||||
|
[secstore]: https://github.com/ethereum/wiki/wiki/Web3-Secret-Storage-Definition
|
||||||
|
Reference in New Issue
Block a user