Package | Description |
---|---|
org.bitcoinj.testing |
Various utilities for writing unit tests: also useful for testing your own code and apps that build on top of
bitcoinj.
|
org.bitcoinj.wallet |
Classes that support the
Wallet , which knows how to find and save transactions relevant to
a set of keys or scripts, calculate balances, and spend money: the wallet has many features and can be extended
in various ways, please refer to the website for documentation on how to use it. |
Constructor and Description |
---|
KeyChainTransactionSigner(DeterministicKeyChain keyChain) |
Modifier and Type | Method and Description |
---|---|
DeterministicKeyChain |
KeyChainGroup.getActiveKeyChain()
Returns the key chain that's used for generation of fresh/current keys.
|
DeterministicKeyChain |
DeterministicKeyChain.toDecrypted(CharSequence password) |
DeterministicKeyChain |
DeterministicKeyChain.toDecrypted(org.spongycastle.crypto.params.KeyParameter aesKey) |
DeterministicKeyChain |
DeterministicKeyChain.toEncrypted(CharSequence password) |
DeterministicKeyChain |
DeterministicKeyChain.toEncrypted(KeyCrypter keyCrypter,
org.spongycastle.crypto.params.KeyParameter aesKey) |
DeterministicKeyChain |
KeyChainGroup.upgradeToDeterministic(long keyRotationTimeSecs,
org.spongycastle.crypto.params.KeyParameter aesKey)
If the key chain contains only random keys and no deterministic key chains, this method will create a chain
based on the oldest non-rotating private key (i.e.
|
static DeterministicKeyChain |
DeterministicKeyChain.watch(DeterministicKey accountKey)
Creates a key chain that watches the given account key.
|
static DeterministicKeyChain |
DeterministicKeyChain.watch(DeterministicKey accountKey,
long seedCreationTimeSecs)
Creates a key chain that watches the given account key, and assumes there are no transactions involving it until
the given time (this is an optimisation for chain scanning purposes).
|
static DeterministicKeyChain |
DeterministicKeyChain.watchAndFollow(DeterministicKey watchKey)
Creates a deterministic key chain with the given watch key and that follows some other keychain.
|
Modifier and Type | Method and Description |
---|---|
static List<DeterministicKeyChain> |
DeterministicKeyChain.fromProtobuf(List<Protos.Key> keys,
KeyCrypter crypter)
Returns all the key chains found in the given list of keys.
|
List<DeterministicKeyChain> |
KeyChainGroup.getDeterministicKeyChains()
Returns a copy of the current list of chains.
|
Modifier and Type | Method and Description |
---|---|
boolean |
KeyChainGroup.isMarried(DeterministicKeyChain keychain)
Returns true if the given keychain is being followed by at least one another keychain
|
Copyright © 2014. All rights reserved.