(self)
| 1180 | |
| 1181 | @_sslcopydoc |
| 1182 | def get_verified_chain(self): |
| 1183 | chain = self._sslobj.get_verified_chain() |
| 1184 | |
| 1185 | if chain is None: |
| 1186 | return [] |
| 1187 | |
| 1188 | return [cert.public_bytes(_ssl.ENCODING_DER) for cert in chain] |
| 1189 | |
| 1190 | @_sslcopydoc |
| 1191 | def get_unverified_chain(self): |
nothing calls this directly
no test coverage detected