コード例 #1
0
    def remote_subject(self):
        """
        The subject from the peers certificate.

        :type: ``str``
        """
        return pn_ssl_get_remote_subject(self._ssl)
コード例 #2
0
    def get_cert_subject(self) -> str:
        """
        Get the subject from the peer's certificate.

        :return: A string containing the full subject.
        """
        subject = pn_ssl_get_remote_subject(self._ssl)
        return subject
コード例 #3
0
ファイル: _transport.py プロジェクト: apache/qpid-proton
 def remote_subject(self):
     return pn_ssl_get_remote_subject(self._ssl)
コード例 #4
0
ファイル: _transport.py プロジェクト: apache/qpid-proton
 def get_cert_subject(self):
     subject = pn_ssl_get_remote_subject(self._ssl)
     return subject
コード例 #5
0
ファイル: _transport.py プロジェクト: archerabi/qpid-proton
 def remote_subject(self):
     return pn_ssl_get_remote_subject(self._ssl)
コード例 #6
0
ファイル: _transport.py プロジェクト: archerabi/qpid-proton
 def get_cert_subject(self):
     subject = pn_ssl_get_remote_subject(self._ssl)
     return subject
コード例 #7
0
 def remote_subject(self) -> str:
     """
     The subject from the peers certificate.
     """
     return pn_ssl_get_remote_subject(self._ssl)