︙ | | |
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
+
|
* version 3.0 along with this program. If not, see
* <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#import "OFTLSStream.h"
#import "OFArray.h"
#import "OFDate.h"
#import "OFNotImplementedException.h"
#import "OFTLSHandshakeFailedException.h"
@interface OFTLSStreamHandshakeDelegate: OFObject <OFTLSStreamDelegate>
{
|
︙ | | |
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
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
105
106
107
|
+
+
+
+
+
+
+
+
|
- (void)stream: (OFTLSStream *)stream
didPerformClientHandshakeWithHost: (OFString *)host
exception: (id)exception
{
_done = true;
_exception = [exception retain];
}
- (void)streamDidPerformServerHandshake: (OFTLSStream *)stream
exception: (id)exception
{
_done = true;
_exception = [exception retain];
}
@end
@implementation OFTLSStream
@synthesize underlyingStream = _underlyingStream;
@dynamic delegate;
@synthesize verifiesCertificates = _verifiesCertificates;
@synthesize privateKey = _privateKey;
+ (instancetype)alloc
{
if (self == [OFTLSStream class]) {
if (OFTLSStreamImplementation != Nil)
return [OFTLSStreamImplementation alloc];
|
︙ | | |
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
+
+
+
+
+
+
+
+
+
+
+
+
+
|
- (void)close
{
[_underlyingStream release];
_underlyingStream = nil;
[super close];
}
- (void)setCertificateChain:
(OFArray OF_GENERIC(OFX509Certificate *) *)certificateChain
{
OFArray OF_GENERIC(OFX509Certificate *) *old = _certificateChain;
_certificateChain = [certificateChain copy];
[old release];
}
- (OFArray OF_GENERIC(OFX509Certificate *) *)certificateChain
{
return _certificateChain;
}
- (size_t)lowlevelReadIntoBuffer: (void *)buffer length: (size_t)length
{
OF_UNRECOGNIZED_SELECTOR
}
- (size_t)lowlevelWriteBuffer: (const void *)buffer length: (size_t)length
|
︙ | | |
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
[[[OFTLSStreamHandshakeDelegate alloc] init] autorelease];
OFRunLoop *runLoop = [OFRunLoop currentRunLoop];
_delegate = handshakeDelegate;
[self asyncPerformClientHandshakeWithHost: host
runLoopMode: handshakeRunLoopMode];
while (!handshakeDelegate->_done)
[runLoop runMode: handshakeRunLoopMode beforeDate: nil];
/* Cleanup */
[runLoop runMode: handshakeRunLoopMode beforeDate: [OFDate date]];
_delegate = delegate;
if (handshakeDelegate->_exception != nil)
@throw handshakeDelegate->_exception;
objc_autoreleasePoolPop(pool);
}
- (void)asyncPerformServerHandshake
{
[self asyncPerformServerHandshakeWithRunLoopMode: OFDefaultRunLoopMode];
}
- (void)asyncPerformServerHandshakeWithRunLoopMode: (OFRunLoopMode)runLoopMode
{
OF_UNRECOGNIZED_SELECTOR
}
- (void)performServerHandshake
{
void *pool = objc_autoreleasePoolPush();
id <OFTLSStreamDelegate> delegate = _delegate;
OFTLSStreamHandshakeDelegate *handshakeDelegate =
[[[OFTLSStreamHandshakeDelegate alloc] init] autorelease];
OFRunLoop *runLoop = [OFRunLoop currentRunLoop];
_delegate = handshakeDelegate;
[self asyncPerformServerHandshakeWithRunLoopMode: handshakeRunLoopMode];
while (!handshakeDelegate->_done)
[runLoop runMode: handshakeRunLoopMode beforeDate: nil];
/* Cleanup */
[runLoop runMode: handshakeRunLoopMode beforeDate: [OFDate date]];
_delegate = delegate;
|
︙ | | |