Package org.bitcoinj.protobuf.wallet
Interface Protos.EncryptedDataOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder
 - All Known Implementing Classes:
- Protos.EncryptedData,- Protos.EncryptedData.Builder
 - Enclosing class:
- Protos
 
 public static interface Protos.EncryptedDataOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetEncryptedPrivateKey()The encrypted private keycom.google.protobuf.ByteStringgetInitialisationVector()The initialisation vector for the AES encryption (16 bytes)booleanhasEncryptedPrivateKey()The encrypted private keybooleanhasInitialisationVector()The initialisation vector for the AES encryption (16 bytes)
 
- 
- 
- 
Method Detail- 
hasInitialisationVectorboolean hasInitialisationVector() The initialisation vector for the AES encryption (16 bytes) required bytes initialisation_vector = 1;- Returns:
- Whether the initialisationVector field is set.
 
 - 
getInitialisationVectorcom.google.protobuf.ByteString getInitialisationVector() The initialisation vector for the AES encryption (16 bytes) required bytes initialisation_vector = 1;- Returns:
- The initialisationVector.
 
 - 
hasEncryptedPrivateKeyboolean hasEncryptedPrivateKey() The encrypted private key required bytes encrypted_private_key = 2;- Returns:
- Whether the encryptedPrivateKey field is set.
 
 - 
getEncryptedPrivateKeycom.google.protobuf.ByteString getEncryptedPrivateKey() The encrypted private key required bytes encrypted_private_key = 2;- Returns:
- The encryptedPrivateKey.
 
 
- 
 
-