/// <summary>
 /// Decrypts the encrypted key using a specified password.
 /// </summary>
 /// <param name="password">The password.</param>
 /// <returns>System.String.</returns>
 public string Decrypt(Password password)
 {
     return(CryptoUtils.PasswordToPrivateKey(password.Value, EncryptedKey.FromHex(), Iv.FromHex(), "pass:bip32"));
 }