def remote_subject(self):
        """
        The subject from the peers certificate.

        :type: ``str``
        """
        return pn_ssl_get_remote_subject(self._ssl)
Beispiel #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
Beispiel #3
0
 def remote_subject(self):
     return pn_ssl_get_remote_subject(self._ssl)
Beispiel #4
0
 def get_cert_subject(self):
     subject = pn_ssl_get_remote_subject(self._ssl)
     return subject
Beispiel #5
0
 def remote_subject(self):
     return pn_ssl_get_remote_subject(self._ssl)
Beispiel #6
0
 def get_cert_subject(self):
     subject = pn_ssl_get_remote_subject(self._ssl)
     return subject
Beispiel #7
0
 def remote_subject(self) -> str:
     """
     The subject from the peers certificate.
     """
     return pn_ssl_get_remote_subject(self._ssl)