Skip to content

Commit

Permalink
Added Passive-Auth artifacts to HTML output template
Browse files Browse the repository at this point in the history
  • Loading branch information
osanderson committed Sep 4, 2024
1 parent b43b565 commit 419eaf0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions template.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,24 @@ ATR: {{.Atr | BytesToHex}}
ATS: {{.Ats | BytesToHex}}
</pre></div>

<h2>Passive Authentication (SOD)</h2>
{{if .PassiveAuthSOD}}
{{ range .PassiveAuthSOD.CertChain }}
{{template "fileHexAndTlv" .}}
{{ end }}
{{else}}
<i>No data</i>
{{end}}

<h2>Passive Authentication (CardSecurity)</h2>
{{if .PassiveAuthCardSec}}
{{ range .PassiveAuthCardSec.CertChain }}
{{template "fileHexAndTlv" .}}
{{ end }}
{{else}}
<i>No data</i>
{{end}}

<h2>CardAccess</h2>
{{if .Mf.CardAccess}}
{{template "fileHexAndTlv" .Mf.CardAccess.RawData}}
Expand Down

0 comments on commit 419eaf0

Please sign in to comment.