488 return [] |
488 return [] |
489 |
489 |
490 chain = self.__sslConfiguration.peerCertificateChain() |
490 chain = self.__sslConfiguration.peerCertificateChain() |
491 return chain |
491 return chain |
492 |
492 |
|
493 def getSslConfiguration(self): |
|
494 """ |
|
495 Public method to return a reference to the current SSL configuration. |
|
496 |
|
497 @return reference to the SSL configuration in use (QSslConfiguration) |
|
498 """ |
|
499 return self.__sslConfiguration |
|
500 |
493 def showSslInfo(self, pos): |
501 def showSslInfo(self, pos): |
494 """ |
502 """ |
495 Public slot to show some SSL information for the loaded page. |
503 Public slot to show some SSL information for the loaded page. |
496 """ |
504 """ |
497 if SSL_AVAILABLE and self.__sslConfiguration is not None: |
505 if SSL_AVAILABLE and self.__sslConfiguration is not None: |