Add Parse TLS record operation

This commit is contained in:
c65722 2019-07-20 07:58:33 -07:00
parent 3822c6c520
commit 1fcc365d9e
No known key found for this signature in database
GPG key ID: C528B087F9A1801B
5 changed files with 2934 additions and 0 deletions

View file

@ -26,6 +26,9 @@ export function objToTable(obj, nested=false) {
</tr>`;
for (const key in obj) {
if (typeof obj[key] === "function")
continue;
html += `<tr><td style='word-wrap: break-word'>${key}</td>`;
if (typeof obj[key] === "object")
html += `<td style='padding: 0'>${objToTable(obj[key], true)}</td>`;