Package | Description |
---|---|
org.bitcoinj.core |
The core package contains classes for network messages like
Block and
Transaction , peer connectivity via PeerGroup ,
and block chain management. |
org.bitcoinj.crypto |
The crypto package contains classes that work with key derivation algorithms like scrypt (passwords to AES keys),
BIP 32 hierarchies (chains of keys from a root seed), X.509 utilities for the payment protocol and other general
cryptography tasks.
|
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. |
Modifier and Type | Method and Description |
---|---|
Protos.Wallet.EncryptionType |
ECKey.getEncryptionType() |
Modifier and Type | Method and Description |
---|---|
Protos.Wallet.EncryptionType |
EncryptableItem.getEncryptionType()
Returns an enum constant describing what algorithm was used to encrypt the key or UNENCRYPTED.
|
Protos.Wallet.EncryptionType |
KeyCrypter.getUnderstoodEncryptionType()
Return the EncryptionType enum value which denotes the type of encryption/ decryption that this KeyCrypter
can understand.
|
Protos.Wallet.EncryptionType |
KeyCrypterScrypt.getUnderstoodEncryptionType()
Return the EncryptionType enum value which denotes the type of encryption/ decryption that this KeyCrypter
can understand.
|
Modifier and Type | Method and Description |
---|---|
Protos.Wallet.EncryptionType |
Protos.WalletOrBuilder.getEncryptionType()
optional .wallet.Wallet.EncryptionType encryption_type = 5 [default = UNENCRYPTED]; |
Protos.Wallet.EncryptionType |
Protos.Wallet.getEncryptionType()
optional .wallet.Wallet.EncryptionType encryption_type = 5 [default = UNENCRYPTED]; |
Protos.Wallet.EncryptionType |
Protos.Wallet.Builder.getEncryptionType()
optional .wallet.Wallet.EncryptionType encryption_type = 5 [default = UNENCRYPTED]; |
Protos.Wallet.EncryptionType |
DeterministicSeed.getEncryptionType() |
Protos.Wallet.EncryptionType |
Wallet.getEncryptionType()
Get the type of encryption used for this wallet.
|
static Protos.Wallet.EncryptionType |
Protos.Wallet.EncryptionType.valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static Protos.Wallet.EncryptionType |
Protos.Wallet.EncryptionType.valueOf(int value) |
static Protos.Wallet.EncryptionType |
Protos.Wallet.EncryptionType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Protos.Wallet.EncryptionType[] |
Protos.Wallet.EncryptionType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static com.google.protobuf.Internal.EnumLiteMap<Protos.Wallet.EncryptionType> |
Protos.Wallet.EncryptionType.internalGetValueMap() |
Modifier and Type | Method and Description |
---|---|
Protos.Wallet.Builder |
Protos.Wallet.Builder.setEncryptionType(Protos.Wallet.EncryptionType value)
optional .wallet.Wallet.EncryptionType encryption_type = 5 [default = UNENCRYPTED]; |
Copyright © 2016. All rights reserved.