Resign a ticket from CCache :param hash: the hash to use to compute the Server Signature :param kdc_hash: the hash to use to compute the KDC signature (if None, not recomputed unless its a TGT where is uses hash)
(self, i, hash=None, kdc_hash=None)
| 2417 | return tkt |
| 2418 | |
| 2419 | def resign_ticket(self, i, hash=None, kdc_hash=None): |
| 2420 | """ |
| 2421 | Resign a ticket from CCache |
| 2422 | |
| 2423 | :param hash: the hash to use to compute the Server Signature |
| 2424 | :param kdc_hash: the hash to use to compute the KDC signature |
| 2425 | (if None, not recomputed unless its a TGT where is uses hash) |
| 2426 | """ |
| 2427 | tkt = self.dec_ticket(i, hash=hash) |
| 2428 | self.update_ticket(i, tkt, resign=True, hash=hash, kdc_hash=kdc_hash) |
| 2429 | |
| 2430 | def request_tgt( |
| 2431 | self, |
nothing calls this directly
no test coverage detected