Text frames for Certificates, Keys, and Contexts.
sys
key_fields
key_fields = set([
'algorithm',
'key-id', # Hash of key if necessary.
])
certificate_fields
certificate_fields = set([
# Security Context data regarding its validity.
'validation',
'type', # Usually X.509
'interval', # validity; not-before, not-after
'serial', # Unique identifier.
'signature-type',
'signature-algorithm',
'issuer-organization',
'issuer-name', # domain
'subject-organization',
'subject-name', # domain
'extension-names',
'revocations', # CRL
'key-usage',
'key-algorithm',
])
mkcertview
mkcertview(record)
Create record-frame for a certificate.
pframe
pframe(data)