1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
/*
* Copyright 2012 gitblit.com.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gitblit.authority;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.GridLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.security.cert.CertificateEncodingException;
import java.security.cert.X509Certificate;
import java.text.DateFormat;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
import com.gitblit.client.HeaderPanel;
import com.gitblit.client.Translation;
import com.gitblit.utils.StringUtils;
public class X509CertificateViewer extends JDialog {
private static final long serialVersionUID = 1L;
public X509CertificateViewer(Frame owner, X509Certificate cert) {
super(owner);
setTitle(Translation.get("gb.viewCertificate"));
JPanel content = new JPanel(new BorderLayout(Utils.MARGIN, Utils.MARGIN)) {
private static final long serialVersionUID = 1L;
@Override
public Insets getInsets() {
return Utils.INSETS;
}
};
DateFormat df = DateFormat.getDateTimeInstance();
int l1 = 15;
int l2 = 25;
int l3 = 45;
JPanel panel = new JPanel(new GridLayout(0, 1, 0, 2*Utils.MARGIN));
panel.add(newField(Translation.get("gb.version"), "" + cert.getVersion(), 3));
panel.add(newField(Translation.get("gb.subject"), cert.getSubjectDN().getName(), l3));
panel.add(newField(Translation.get("gb.issuer"), cert.getIssuerDN().getName(), l3));
panel.add(newField(Translation.get("gb.serialNumber"), "0x" + cert.getSerialNumber().toString(16), l2));
panel.add(newField(Translation.get("gb.serialNumber"), cert.getSerialNumber().toString(), l2));
panel.add(newField(Translation.get("gb.validFrom"), df.format(cert.getNotBefore()), l2));
panel.add(newField(Translation.get("gb.validUntil"), df.format(cert.getNotAfter()), l2));
panel.add(newField(Translation.get("gb.publicKey"), cert.getPublicKey().getAlgorithm(), l1));
panel.add(newField(Translation.get("gb.signatureAlgorithm"), cert.getSigAlgName(), l1));
try {
panel.add(newField(Translation.get("gb.sha1FingerPrint"), fingerprint(StringUtils.getSHA1(cert.getEncoded())), l3));
} catch (CertificateEncodingException e1) {
}
try {
panel.add(newField(Translation.get("gb.md5FingerPrint"), fingerprint(StringUtils.getMD5(cert.getEncoded())), l3));
} catch (CertificateEncodingException e1) {
}
content.add(panel, BorderLayout.CENTER);
JButton ok = new JButton(Translation.get("gb.ok"));
ok.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
setVisible(false);
}
});
JPanel controls = new JPanel();
controls.add(ok);
content.add(controls, BorderLayout.SOUTH);
getContentPane().add(new HeaderPanel(Translation.get("gb.certificate"), "rosette_16x16.png"), BorderLayout.NORTH);
getContentPane().add(content, BorderLayout.CENTER);
pack();
setLocationRelativeTo(owner);
}
private JPanel newField(String label, String value, int cols) {
JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT, 2*Utils.MARGIN, 0));
JLabel lbl = new JLabel(label);
lbl.setHorizontalAlignment(SwingConstants.RIGHT);
lbl.setPreferredSize(new Dimension(125, 20));
panel.add(lbl);
JTextField tf = new JTextField(value, cols);
tf.setCaretPosition(0);
tf.setEditable(false);
panel.add(tf);
return panel;
}
private String fingerprint(String value) {
value = value.toUpperCase();
StringBuilder sb = new StringBuilder();
for (int i = 0; i < value.length(); i += 2) {
sb.append(value.charAt(i));
sb.append(value.charAt(i + 1));
sb.append(':');
}
sb.setLength(sb.length() - 1);
return sb.toString();
}
}
|