-
Notifications
You must be signed in to change notification settings - Fork 176
bx ec to ek
Kulpreet Singh edited this page Aug 21, 2023
·
36 revisions
Encrypt an EC private key as an encrypted private key (BIP38).
$ bx ec-to-ek --help
Usage: bx ec-to-ek [-hu] [--config VALUE] [--version VALUE] PASSPHRASE
[EC_PRIVATE_KEY]
Info: Encrypt an EC private key as an encrypted private key (BIP38).
Options (named):
-c [--config] The path to the configuration settings file.
-h [--help] Get a description and instructions for this command.
-u [--uncompressed] Use the uncompressed public key format.
-v [--version] The desired payment address version.
Arguments (positional):
PASSPHRASE The passphrase for encrypting the private key.
EC_PRIVATE_KEY The EC private key to encrypt. If not specified the
key is read from STDIN.
Third party-generated encrypted private keys are referred to as multiplied by BIP-38. To create multiplied encrypted public keys use token-new and ec-new.
The --version
option is a libbitcoin enhancement not yet specified in BIP-38.
See also ek-to-ec.
mainnet
$ bx ec-to-ek "my passphrase" 261fc32e9f29c70e3d898aa7db028c81ede0658e8ff8ffab8160073c048ae83f
6PYXCdvtrs4NN1TjUYbGS5Sd2gjsVsDm7GttqERRWvRjWDsrhQfJeEHrg5
empty passphrase
$ bx ec-to-ek "" 261fc32e9f29c70e3d898aa7db028c81ede0658e8ff8ffab8160073c048ae83f
6PYXCdvttCfzn7bo5NrhXsSE1hrYgw2oLbGQCvSLMZV4qr7FEJK7fJhN4R
piped commands
$ echo [user entropy] | bx ec-new | bx ec-to-ek "my passphrase"
349e9b1e16620f3af0c8cdd313540c8c4174fc9aa7100f7e
261fc32e9f29c70e3d898aa7db028c81ede0658e8ff8ffab8160073c048ae83f
6PYXCdvtrs4NN1TjUYbGS5Sd2gjsVsDm7GttqERRWvRjWDsrhQfJeEHrg5
round trip
$ bx ec-to-ek "my passphrase" 261fc32e9f29c70e3d898aa7db028c81ede0658e8ff8ffab8160073c048ae83f | bx ek-to-ec "my passphrase"
6PYXCdvtrs4NN1TjUYbGS5Sd2gjsVsDm7GttqERRWvRjWDsrhQfJeEHrg5
261fc32e9f29c70e3d898aa7db028c81ede0658e8ff8ffab8160073c048ae83f
--uncompressed
$ bx ec-to-ek -u "my passphrase" 261fc32e9f29c70e3d898aa7db028c81ede0658e8ff8ffab8160073c048ae83f
6PRPDbKfv3A45QPPfEtvcxM4oA6ShVL7t72VP74P1W3JEUHPrZXNy39FKe
--version 111 (testnet)
$ bx ec-to-ek -v 111 "my passphrase" 261fc32e9f29c70e3d898aa7db028c81ede0658e8ff8ffab8160073c048ae83f
8EzHSxX3sfZp6NjYUdt7fZAPCKByrFDS12PHfdexFLSaSAfM7wM7tw3Hof
--version 111 (testnet), --uncompressed
$ bx ec-to-ek -u -v 111 "my passphrase" 261fc32e9f29c70e3d898aa7db028c81ede0658e8ff8ffab8160073c048ae83f
8EsMUV3Z5A9m8eA28nSYECHAmKmy4YsyCYpGNvzHocFJBFhVYZARNfrfnt
Users | Developers | License | Copyright © 2011-2024 libbitcoin developers
- Home
- Build BX
- General Information
- Developer Information
- Configuration Settings
- Tutorials
- Meta Commands
- Wallet Commands
- Key Encryption Commands
- Stealth Commands
- Messaging Commands
- Transaction Commands
- Online Commands
- Encoding Commands
- Hash Commands
- Math Commands