Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save schirrmacher/aa29812ce54bf00dba53b5d94da0feb6 to your computer and use it in GitHub Desktop.
Save schirrmacher/aa29812ce54bf00dba53b5d94da0feb6 to your computer and use it in GitHub Desktop.
Log deriveSecretsFromInputKeyMaterial params
{
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