diff options
| author | Stanislav Laznicka <slaznick@redhat.com> | 2017-01-06 09:08:52 +0100 |
|---|---|---|
| committer | Martin Basti <mbasti@redhat.com> | 2017-02-23 18:59:01 +0100 |
| commit | e2d1b21c5049f68d0336dcaf3f8657b214a34e2b (patch) | |
| tree | 848e15f28c283cb4f8ea60c2a1b21cc536e9e98f /install/ui/src | |
| parent | dcb618152572ca013a447336e13d24399b5f7960 (diff) | |
| download | freeipa-e2d1b21c5049f68d0336dcaf3f8657b214a34e2b.tar.gz freeipa-e2d1b21c5049f68d0336dcaf3f8657b214a34e2b.tar.xz freeipa-e2d1b21c5049f68d0336dcaf3f8657b214a34e2b.zip | |
Remove md5_fingerprints from IPA
MD5 is a grandpa and FIPS does not like it at all.
https://fedorahosted.org/freeipa/ticket/5695
Reviewed-By: Martin Basti <mbasti@redhat.com>
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
Reviewed-By: Tomas Krizek <tkrizek@redhat.com>
Diffstat (limited to 'install/ui/src')
| -rwxr-xr-x | install/ui/src/freeipa/certificate.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/install/ui/src/freeipa/certificate.js b/install/ui/src/freeipa/certificate.js index 4666b1ae5..b86c6cfa1 100755 --- a/install/ui/src/freeipa/certificate.js +++ b/install/ui/src/freeipa/certificate.js @@ -361,7 +361,6 @@ IPA.cert.view_dialog = function(spec) { that.issuer = IPA.cert.parse_dn(spec.certificate.issuer); that.issued_on = spec.certificate.valid_not_before || ''; that.expires_on = spec.certificate.valid_not_after || ''; - that.md5_fingerprint = spec.certificate.md5_fingerprint || ''; that.sha1_fingerprint = spec.certificate.sha1_fingerprint || ''; that.sha256_fingerprint = spec.certificate.sha256_fingerprint || ''; @@ -427,8 +426,6 @@ IPA.cert.view_dialog = function(spec) { table_layout = that.create_layout().appendTo(that.container); - new_row('@i18n:objects.cert.md5_fingerprint', that.md5_fingerprint) - .appendTo(table_layout); new_row('@i18n:objects.cert.sha1_fingerprint', that.sha1_fingerprint) .appendTo(table_layout); new_row('@i18n:objects.cert.sha256_fingerprint', that.sha256_fingerprint) @@ -570,7 +567,6 @@ IPA.cert.loader = function(spec) { var certificate = { issuer: result.issuer, certificate: result.certificate, - md5_fingerprint: result.md5_fingerprint, revocation_reason: result.revocation_reason, serial_number: result.serial_number, serial_number_hex: result.serial_number_hex, @@ -1579,9 +1575,6 @@ exp.create_cert_metadata = function() { add_param('valid_not_after', text.get('@i18n:objects.cert.expires_on'), text.get('@i18n:objects.cert.expires_on')); - add_param('md5_fingerprint', - text.get('@i18n:objects.cert.md5_fingerprint'), - text.get('@i18n:objects.cert.md5_fingerprint')); add_param('sha1_fingerprint', text.get('@i18n:objects.cert.sha1_fingerprint'), text.get('@i18n:objects.cert.sha1_fingerprint')); @@ -1762,7 +1755,6 @@ return { 'valid_not_before', 'valid_not_after', 'sha1_fingerprint', - 'md5_fingerprint', { $type: 'revocation_reason', name: 'revocation_reason' |
