mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-21 22:58:24 +00:00
console: fix cert validity order
This commit is contained in:
parent
a7f27259a7
commit
46cf75d01e
@ -65,8 +65,8 @@ def flowdetails(state, flow: mitmproxy.flow.Flow):
|
||||
parts = [
|
||||
("Type", "%s, %s bits" % c.keyinfo),
|
||||
("SHA256 digest", c.fingerprint().hex(' ')),
|
||||
("Valid to", str(c.notafter)),
|
||||
("Valid from", str(c.notbefore)),
|
||||
("Valid to", str(c.notafter)),
|
||||
("Serial", str(c.serial)),
|
||||
("Subject", urwid.Pile(common.format_keyvals(c.subject, key_format="highlight"))),
|
||||
("Issuer", urwid.Pile(common.format_keyvals(c.issuer, key_format="highlight")))
|
||||
|
Loading…
Reference in New Issue
Block a user