Difference between revisions of "Tracking Variables"

From AtlasWiki
Jump to: navigation, search
(Created page with "=== "Where does this variable come from?" ===")
 
("Where does this variable come from?")
Line 1: Line 1:
 
=== "Where does this variable come from?" ===
 
=== "Where does this variable come from?" ===
 +
 +
1. Identify variable of interest.  The variable we are concerned with is the PrivateKey variable "priv" used in the method changePassword.
 +
 +
[[File:ChangePassword.png|450px]]
 +
 +
2. The variable is set by a call to the decodePrivate method in PubkeyUtils.  Use the Smart View to inspect this method.  The Call Step script will show us calls that the method makes when generating our PrivateKey.
 +
 +
[[File:DecodePrivate_CallStep.png|300px]]
 +
 +
3.

Revision as of 22:07, 26 April 2015

"Where does this variable come from?"

1. Identify variable of interest. The variable we are concerned with is the PrivateKey variable "priv" used in the method changePassword.

ChangePassword.png

2. The variable is set by a call to the decodePrivate method in PubkeyUtils. Use the Smart View to inspect this method. The Call Step script will show us calls that the method makes when generating our PrivateKey.

DecodePrivate CallStep.png

3.