Overview
Comment: | SSLSocket: Re-add verifyPeerCertificate
This was accidentally removed from the interface. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ecf34717f0fa4b6cbd0e12414ab6d4ce |
User & Date: | js on 2017-07-22 23:34:45 |
Other Links: | manifest | tags |
Context
2017-08-01
| ||
18:49 | Fix compilation with OpenSSL 1.1 check-in: ed3f707a5c user: js tags: trunk | |
2017-07-22
| ||
23:34 | SSLSocket: Re-add verifyPeerCertificate check-in: ecf34717f0 user: js tags: trunk | |
23:32 | X509Certificate: Fix typo check-in: ad16b8498f user: js tags: trunk | |
Changes
Modified src/SSLSocket.h from [8b46b339d4] to [482ed92e1f].
︙ | ︙ | |||
43 44 45 46 47 48 49 50 51 52 | bool requestClientCertificatesEnabled; @property OF_NULLABLE_PROPERTY (readonly, nonatomic) X509Certificate *peerCertificate; - initWithSocket: (OFTCPSocket *)socket; - (OFData *)channelBindingDataWithType: (OFString *)type; - (nullable X509Certificate *)peerCertificate; @end OF_ASSUME_NONNULL_END | > | 43 44 45 46 47 48 49 50 51 52 53 | bool requestClientCertificatesEnabled; @property OF_NULLABLE_PROPERTY (readonly, nonatomic) X509Certificate *peerCertificate; - initWithSocket: (OFTCPSocket *)socket; - (OFData *)channelBindingDataWithType: (OFString *)type; - (nullable X509Certificate *)peerCertificate; - (void)verifyPeerCertificate; @end OF_ASSUME_NONNULL_END |