484 |
484 |
485 sslInfo = self.__sslConfiguration.peerCertificate() |
485 sslInfo = self.__sslConfiguration.peerCertificate() |
486 sslInfo.url = QUrl(self.__sslConfiguration.url) |
486 sslInfo.url = QUrl(self.__sslConfiguration.url) |
487 return sslInfo |
487 return sslInfo |
488 |
488 |
|
489 def getSslConfiguration(self): |
|
490 """ |
|
491 Public method to return a reference to the current SSL configuration. |
|
492 |
|
493 @return reference to the SSL configuration in use (QSslConfiguration) |
|
494 """ |
|
495 return self.__sslConfiguration |
|
496 |
489 def showSslInfo(self): |
497 def showSslInfo(self): |
490 """ |
498 """ |
491 Public slot to show some SSL information for the loaded page. |
499 Public slot to show some SSL information for the loaded page. |
492 """ |
500 """ |
493 if SSL_AVAILABLE and self.__sslConfiguration is not None: |
501 if SSL_AVAILABLE and self.__sslConfiguration is not None: |