summaryrefslogtreecommitdiffstats
path: root/install/ui/entitle.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/entitle.js')
-rw-r--r--install/ui/entitle.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/install/ui/entitle.js b/install/ui/entitle.js
index eaa960693..a44318d04 100644
--- a/install/ui/entitle.js
+++ b/install/ui/entitle.js
@@ -514,8 +514,7 @@ IPA.entitle.certificate_column = function(spec) {
click: function() {
var dialog = IPA.cert.download_dialog({
title: IPA.messages.objects.entitle.download_certificate,
- certificate: certificate,
- add_pem_delimiters: false
+ certificate: certificate
});
dialog.open();
return false;
@@ -723,6 +722,12 @@ IPA.entitle.download_widget = function(spec) {
return;
}
+ /*
+ * WARNING - despite using cert.download_dialog() and passing
+ * a certificate, it's NOT a certificate, it's a binary
+ * PKCS12 file that's been base64 encoded!
+ * Hence the reason add_pem_delimiters is false.
+ */
var dialog = IPA.cert.download_dialog({
title: IPA.messages.objects.entitle.download_certificate,
certificate: userpkcs12[0].__base64__,