In PHP, I can call base64_encode(\"\\x00\". $username. \"\\x00\". $password) and the \"\\x00\" represents a NULL character.
base64_encode(\"\\x00\". $username. \"\\x00\". $password)
\"\\x00\"
Now, in Objecti
stefanB's answer looks like a right option. Turns out I was passing in wrong info to make it look like \0 wasn't working
This was ok:
[NSString stringWithFormat:@"\0user\0pass"]