{% for cert in file.pe.digital_signers %}
{% if cert.subject_commonName %}
| Certificate Common Name |
{{cert.subject_commonName}} |
{% endif %}
{% if cert.subject_commonName %}
| Subject Organization Name |
{{cert.subject_commonName}} |
{% endif %}
{% if cert.subject_organizationalUnitName %}
| Subject Organization Unit Name |
{{cert.subject_organizationalUnitName}} |
{% endif %}
{% if cert.subject_streetAddress %}
| Subject Street Address |
{{cert.subject_streetAddress}} |
{% endif %}
{% if cert.subject_localityName %}
| Subject Locality |
{{cert.subject_localityName}} |
{% endif %}
{% if cert.subject_stateOrProvinceName %}
| Subject State or Province |
{{cert.subject_stateOrProvinceName}} |
{% endif %}
{% if cert.subject_postalCode %}
| Subject Postal Code |
{{cert.subject_postalCode}} |
{% endif %}
{% if cert.subject_countryName %}
| Subject Country |
{{cert.subject_countryName}} |
{% endif %}
{% if cert.issuer_commonName %}
| Issuer Common Name |
{{cert.issuer_commonName}} |
{% endif %}
{% if cert.issuer_organizationName %}
| Issuer Organization Name |
{{cert.issuer_organizationName}} |
{% endif %}
{% if cert.issuer_organizationalUnitName %}
| Issuer Organization Unit Name |
{{cert.issuer_organizationalUnitName}} |
{% endif %}
{% if cert.issuer_localityName %}
| Issuer Locality |
{{cert.issuer_localityName}} |
{% endif %}
{% if cert.issuer_stateOrProvinceName %}
| Issuer State or Province |
{{cert.issuer_stateOrProvinceName}} |
{% endif %}
{% if cert.issuer_countryName %}
| Issuer Country |
{{cert.issuer_countryName}} |
{% endif %}
{% if cert.serial_number %}
| Serial Number |
{{cert.serial_number}} |
{% endif %}
{% if cert.sha256_fingerprint %}
| SHA256 Fingerprint |
{{cert.sha256_fingerprint}} |
{% endif %}
{% if cert.sha1_fingerprint %}
| SHA1 Fingerprint |
{{cert.sha1_fingerprint}} |
{% endif %}
{% if cert.md5_fingerprint %}
| MD5 Fingerprint |
{{cert.md5_fingerprint}} |
{% endif %}
{% if cert.not_before %}
| Not valid before |
{{cert.not_before}} |
{% endif %}
{% if cert.not_after %}
| Not valid after |
{{cert.not_after}} |
{% endif %}
{% endfor %}