Created
February 4, 2020 08:52
-
-
Save schirrmacher/aa29812ce54bf00dba53b5d94da0feb6 to your computer and use it in GitHub Desktop.
Log deriveSecretsFromInputKeyMaterial params
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
onEnter: function (log, args, state) { | |
log("+[ WAHKDF deriveSecretsFromInputKeyMaterial: " + | |
ObjC.Object( args[2] ).toString() + "\n" + | |
" salt: " + ObjC.Object( args[3] ).toString() + "\n" + | |
" info: " + ObjC.Object( args[4] ).toString() + "\n" + | |
" bytes : " + args[5].toInt32 () + "\n" + | |
" withMessageVersion : " + args[6].toInt32 () + "\n]"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment