diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-11-07 12:31:41 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-11-07 14:18:04 (GMT) | 
| commit | 70d19e3b5d3757310caf32e1732cac2cd4ae0a63 (patch) | |
| tree | db1e206fd1164d85c5e00b408e9dd5ed728a7ed6 /Swiften/TLS/OpenSSL/OpenSSLContext.h | |
| parent | 647e2cc6fc6bc1764c1bf449b4110917f6c723df (diff) | |
| download | swift-contrib-70d19e3b5d3757310caf32e1732cac2cd4ae0a63.zip swift-contrib-70d19e3b5d3757310caf32e1732cac2cd4ae0a63.tar.bz2  | |
Added certificate verification API to TLS context.
Diffstat (limited to 'Swiften/TLS/OpenSSL/OpenSSLContext.h')
| -rw-r--r-- | Swiften/TLS/OpenSSL/OpenSSLContext.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/Swiften/TLS/OpenSSL/OpenSSLContext.h b/Swiften/TLS/OpenSSL/OpenSSLContext.h index a01e3e5..a0e73c4 100644 --- a/Swiften/TLS/OpenSSL/OpenSSLContext.h +++ b/Swiften/TLS/OpenSSL/OpenSSLContext.h @@ -27,6 +27,9 @@ namespace Swift {  			void handleDataFromNetwork(const ByteArray&);  			void handleDataFromApplication(const ByteArray&); +			Certificate::ref getPeerCertificate() const; +			boost::optional<CertificateVerificationError> getPeerCertificateVerificationError() const; +  		private:  			static void ensureLibraryInitialized();	  | 
 Swift