Differences From Artifact [dd2be7ab8f]:
- File
src/XMPPAuthenticator.h
— part of check-in
[6a3b0a9988]
at
2011-02-21 03:09:39
on branch trunk
— Add SCRAM-SHA-1 support
This adds the new base class XMPPAuthenticator and the derived
classes XMPPSCRAMAuth and XMPPPLAINAuth.
They are now used for authentication from within XMPPConnection.Also adds XMPPAuthFailedException which is thrown in appropriate places. (user: florob@babelmonkeys.de, size: 2772) [annotate] [blame] [check-ins using]
To Artifact [d4a2643832]:
- File src/XMPPAuthenticator.h — part of check-in [6b83d2b4d4] at 2011-02-24 21:44:51 on branch trunk — Rename XMPPAuthenticator functions (user: florob@babelmonkeys.de, size: 2775) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
61 62 63 64 65 66 67 | - initWithAuthzid: (OFString*)authzid authcid: (OFString*)authcid password: (OFString*)password; /** * \return A OFDataAray containing the initial authentication message */ | | | | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | - initWithAuthzid: (OFString*)authzid authcid: (OFString*)authcid password: (OFString*)password; /** * \return A OFDataAray containing the initial authentication message */ - (OFDataArray*)clientFirstMessage; /** * \param challenge The challenge to generate a response for * \return The response to the given challenge */ - (OFDataArray*)calculateResponseWithChallenge: (OFDataArray*)challenge; /** * Checks whether the servers final message was valid * * \param message The servers final message */ - (void)parseServerFinalMessage: (OFDataArray*)message; |
︙ | ︙ |