Package org.bitcoinj.crypto
Class HDUtils
java.lang.Object
org.bitcoinj.crypto.HDUtils
Static utilities used in BIP 32 Hierarchical Deterministic Wallets (HDW).
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic HDPath
append
(List<ChildNumber> path, ChildNumber childNumber) Deprecated.static HDPath
concat
(List<ChildNumber> path, List<ChildNumber> path2) Deprecated.UseHDPath#extend
static String
formatPath
(List<ChildNumber> path) Deprecated.UseHDPath#toString
static byte[]
hmacSha512
(byte[] key, byte[] data) static HDPath
Deprecated.UseHDPath.parsePath
-
Constructor Details
-
HDUtils
public HDUtils()
-
-
Method Details
-
hmacSha512
public static byte[] hmacSha512(byte[] key, byte[] data) -
append
Deprecated.UseHDPath#extend
Append a derivation level to an existing path -
concat
Deprecated.UseHDPath#extend
Concatenate two derivation paths -
formatPath
Deprecated.UseHDPath#toString
Convert to a string path, starting with "M/" -
parsePath
Deprecated.UseHDPath.parsePath
Create an HDPath from a path string.
-
HDPath#extend