31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
*/
@interface XMPPSCRAMAuth: XMPPAuthenticator
{
Class _hashType;
OFString *_cNonce;
OFString *_GS2Header;
OFString *_clientFirstMessageBare;
OFDataArray *_serverSignature;
XMPPConnection *_connection;
bool _plusAvailable;
bool _authenticated;
}
/**
* \brief Creates a new autoreleased XMPPSCRAMAuth with an authcid and password.
|
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
*/
@interface XMPPSCRAMAuth: XMPPAuthenticator
{
Class _hashType;
OFString *_cNonce;
OFString *_GS2Header;
OFString *_clientFirstMessageBare;
OFData *_serverSignature;
XMPPConnection *_connection;
bool _plusAvailable;
bool _authenticated;
}
/**
* \brief Creates a new autoreleased XMPPSCRAMAuth with an authcid and password.
|