decryptHdPath static method
Decrypts an encrypted Hierarchical Deterministic (HD) path using the provided key.
The hdPathEncBytes
parameter represents the encrypted HD path to decrypt.
The hdPathKeyBytes
parameter is the key used for decryption.
Returns a Bip32Path representing the decrypted HD path.
Implementation
static Bip32Path decryptHdPath(
List<int> hdPathEncBytes, List<int> hdPathKeyBytes) {
return _AdaByronAddrHdPath.decrypt(hdPathEncBytes, hdPathKeyBytes);
}