36
37
38
39
40
41
42
43
44
45
46
47
48
|
bool _certificateVerificationEnabled;
bool _requestClientCertificatesEnabled;
}
@property (getter=isRequestClientCertificatesEnabled)
bool requestClientCertificatesEnabled;
- initWithSocket: (OFTCPSocket*)socket;
- (void)SSL_super_close;
- (OFDataArray*)channelBindingDataWithType: (OFString*)type;
- (X509Certificate*)peerCertificate;
- (void)verifyPeerCertificate;
@end
|
|
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
|
bool _certificateVerificationEnabled;
bool _requestClientCertificatesEnabled;
}
@property (getter=isRequestClientCertificatesEnabled)
bool requestClientCertificatesEnabled;
- initWithSocket: (OFTCPSocket *)socket;
- (void)SSL_super_close;
- (OFDataArray *)channelBindingDataWithType: (OFString *)type;
- (X509Certificate *)peerCertificate;
- (void)verifyPeerCertificate;
@end
|