-
Notifications
You must be signed in to change notification settings - Fork 0
7. Extract Decipher
Linus Klöckner edited this page Jan 16, 2019
·
4 revisions
Load the subfunction calls from the decipher function and store them in a list (function name + integer argument).
Needs: Decipher function definition
Gives: List of subfunction calls with argument
RegEx:
\.(..)\(.,(\d+)\)
RegEx Match (Group 1):
Every match will contain a subfunction name
RegEx Match (Group 2):
Every match will contain an integer argument
Next: Apply Decipher