I cannot seem to find what format should be included in the TLS response after I get the challenge. Where can I find that info?
Say I was doing it in PHP, should it look like:
$nonce = "somenoncevaluehere";
$qop = "auth";
$charset = "utf-8";
$algorithm = "md5-sess";
$server = "example.com";
$user = "bob";
$pass = "somepass";
$md5Response = "realm=$server,nonce=$nonce,qop=$qop,charset=$charset,algorithm=$algorithm,xmpp,$server,$user,$pass";
I found a cocoa version