summaryrefslogtreecommitdiffstats
path: root/ipaserver/plugins/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/plugins/service.py')
-rw-r--r--ipaserver/plugins/service.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/ipaserver/plugins/service.py b/ipaserver/plugins/service.py
index 3349889e0..03271d685 100644
--- a/ipaserver/plugins/service.py
+++ b/ipaserver/plugins/service.py
@@ -276,6 +276,8 @@ def set_certificate_attrs(entry_attrs):
entry_attrs['valid_not_after'] = x509.format_datetime(cert.not_valid_after)
entry_attrs['sha1_fingerprint'] = x509.to_hex_with_colons(
cert.fingerprint(hashes.SHA1()))
+ entry_attrs['sha256_fingerprint'] = x509.to_hex_with_colons(
+ cert.fingerprint(hashes.SHA256()))
def check_required_principal(ldap, principal):
"""
@@ -506,6 +508,10 @@ class service(LDAPObject):
label=_('Fingerprint (SHA1)'),
flags={'virtual_attribute', 'no_create', 'no_update', 'no_search'},
),
+ Str('sha256_fingerprint',
+ label=_('Fingerprint (SHA256)'),
+ flags={'virtual_attribute', 'no_create', 'no_update', 'no_search'},
+ ),
Str('revocation_reason?',
label=_('Revocation reason'),
flags={'virtual_attribute', 'no_create', 'no_update', 'no_search'},