(self)
| 1189 | |
| 1190 | @_sslcopydoc |
| 1191 | def get_unverified_chain(self): |
| 1192 | chain = self._sslobj.get_unverified_chain() |
| 1193 | |
| 1194 | if chain is None: |
| 1195 | return [] |
| 1196 | |
| 1197 | return [cert.public_bytes(_ssl.ENCODING_DER) for cert in chain] |
| 1198 | |
| 1199 | @_sslcopydoc |
| 1200 | def selected_npn_protocol(self): |
nothing calls this directly
no test coverage detected