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