|
6 | 6 |
|
7 | 7 | import r from "jsrsasign";
|
8 | 8 | import { fromBase64 } from "../lib/Base64.mjs";
|
9 |
| -import { toHex } from "../lib/Hex.mjs"; |
| 9 | +import { runHash } from "../lib/Hash.mjs"; |
| 10 | +import { fromHex, toHex } from "../lib/Hex.mjs"; |
10 | 11 | import { formatByteStr, formatDnObj } from "../lib/PublicKey.mjs";
|
11 | 12 | import Operation from "../Operation.mjs";
|
12 | 13 | import Utils from "../Utils.mjs";
|
@@ -81,7 +82,8 @@ class ParseX509Certificate extends Operation {
|
81 | 82 | }
|
82 | 83 | if (undefinedInputFormat) throw "Undefined input format";
|
83 | 84 |
|
84 |
| - const sn = cert.getSerialNumberHex(), |
| 85 | + const hex = Utils.strToArrayBuffer(Utils.byteArrayToChars(fromHex(cert.hex))), |
| 86 | + sn = cert.getSerialNumberHex(), |
85 | 87 | issuer = cert.getIssuer(),
|
86 | 88 | subject = cert.getSubject(),
|
87 | 89 | pk = cert.getPublicKey(),
|
@@ -191,6 +193,10 @@ Issuer
|
191 | 193 | ${issuerStr}
|
192 | 194 | Subject
|
193 | 195 | ${subjectStr}
|
| 196 | +Fingerprints |
| 197 | + MD5: ${runHash("md5", hex)} |
| 198 | + SHA1: ${runHash("sha1", hex)} |
| 199 | + SHA256: ${runHash("sha256", hex)} |
194 | 200 | Public Key
|
195 | 201 | ${pkStr.slice(0, -1)}
|
196 | 202 | Certificate Signature
|
|
0 commit comments