From 473fbe80e92f7e31e1dbe6e7e2a6c8ce7295f466 Mon Sep 17 00:00:00 2001 From: Jonas Lochmann Date: Mon, 8 Apr 2024 02:00:00 +0200 Subject: [PATCH] remove raw cert from mail headers --- src/api/integrity.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/api/integrity.ts b/src/api/integrity.ts index 4e1975a..3f3686b 100644 --- a/src/api/integrity.ts +++ b/src/api/integrity.ts @@ -4,7 +4,6 @@ import { fromBER, Sequence, Integer, OctetString, Set } from 'asn1js' import { Certificate } from 'pkijs' export interface CertInfo { - raw: string applicationCerts: Array } @@ -95,7 +94,6 @@ export function analyze(req: Request): CertInfo | null { } return { - raw: nativeCert.raw.toString('base64'), applicationCerts } } catch (ex) {