1
2
3
4
5
6
7
8
9
10
11
|
/*
* Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de>
*
* https://webkeks.org/git/?p=objxmpp.git
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice is present in all copies.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
>
|
|
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Copyright (c) 2011, Florian Zeitz <florob@babelmonkeys.de>
* Copyright (c) 2016, Jonathan Schleifer <js@heap.zone>
*
* https://heap.zone/git/?p=objxmpp.git
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice is present in all copies.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#import "XMPPAuthenticator.h"
@implementation XMPPAuthenticator
- initWithAuthcid: (OFString*)authcid
password: (OFString*)password
{
return [self initWithAuthzid: nil
authcid: authcid
password: password];
}
|
>
>
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#import "XMPPAuthenticator.h"
@implementation XMPPAuthenticator
@synthesize authzid = _authzid, authcid = _authcid, password = _password;
- initWithAuthcid: (OFString*)authcid
password: (OFString*)password
{
return [self initWithAuthzid: nil
authcid: authcid
password: password];
}
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
[_authzid release];
[_authcid release];
[_password release];
[super dealloc];
}
- (void)setAuthzid: (OFString*)authzid
{
OF_SETTER(_authzid, authzid, true, 1)
}
- (OFString*)authzid
{
OF_GETTER(_authzid, true)
}
- (void)setAuthcid: (OFString*)authcid
{
OF_SETTER(_authcid, authcid, true, 1)
}
- (OFString*)authcid
{
OF_GETTER(_authcid, true)
}
- (void)setPassword: (OFString*)password
{
OF_SETTER(_password, password, true, 1)
}
- (OFString*)password
{
OF_GETTER(_password, true)
}
- (OFDataArray*)initialMessage
{
return nil;
}
- (OFDataArray*)continueWithData: (OFDataArray*)challenge
{
return nil;
}
@end
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
[_authzid release];
[_authcid release];
[_password release];
[super dealloc];
}
- (OFDataArray*)initialMessage
{
return nil;
}
- (OFDataArray*)continueWithData: (OFDataArray*)challenge
{
return nil;
}
@end
|