Load from CCache file
(self, fname)
| 446 | self.hashes_cache = collections.defaultdict(dict) |
| 447 | |
| 448 | def open_ccache(self, fname): |
| 449 | """ |
| 450 | Load from CCache file |
| 451 | """ |
| 452 | self.ccache_fname = fname |
| 453 | self.hashes_cache = collections.defaultdict(dict) |
| 454 | with open(self.ccache_fname, "rb") as fd: |
| 455 | self.ccache = CCache(fd.read()) |
| 456 | |
| 457 | def open_keytab(self, fname): |
| 458 | """ |
no test coverage detected