Skip to content

Commit 75e3f35

Browse files
authored
Merge pull request #1863 from JSCU-CNI/x509_fingerprints
Add fingerprints to the 'Parse X.509 certificate' operation
2 parents 9a8804a + b6f0f9b commit 75e3f35

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/core/operations/ParseX509Certificate.mjs

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
import r from "jsrsasign";
88
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";
1011
import { formatByteStr, formatDnObj } from "../lib/PublicKey.mjs";
1112
import Operation from "../Operation.mjs";
1213
import Utils from "../Utils.mjs";
@@ -81,7 +82,8 @@ class ParseX509Certificate extends Operation {
8182
}
8283
if (undefinedInputFormat) throw "Undefined input format";
8384

84-
const sn = cert.getSerialNumberHex(),
85+
const hex = Utils.strToArrayBuffer(Utils.byteArrayToChars(fromHex(cert.hex))),
86+
sn = cert.getSerialNumberHex(),
8587
issuer = cert.getIssuer(),
8688
subject = cert.getSubject(),
8789
pk = cert.getPublicKey(),
@@ -191,6 +193,10 @@ Issuer
191193
${issuerStr}
192194
Subject
193195
${subjectStr}
196+
Fingerprints
197+
MD5: ${runHash("md5", hex)}
198+
SHA1: ${runHash("sha1", hex)}
199+
SHA256: ${runHash("sha256", hex)}
194200
Public Key
195201
${pkStr.slice(0, -1)}
196202
Certificate Signature

0 commit comments

Comments
 (0)