From ea3df239cfc6144502be997ed373b93f6a9aa5b2 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Fri, 3 Nov 2023 14:58:54 -0700 Subject: [PATCH] PR Review: Remove unused struct members from WS_KeySignature. --- src/internal.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/internal.c b/src/internal.c index eaa8a2bba..5dd0ee879 100644 --- a/src/internal.c +++ b/src/internal.c @@ -860,25 +860,11 @@ typedef struct WS_KeySignature { #ifndef WOLFSSH_NO_RSA struct { RsaKey key; - byte e[256]; - word32 eSz; - byte ePad; - byte n[256]; - word32 nSz; - byte nPad; } rsa; #endif #ifndef WOLFSSH_NO_ECDSA struct { ecc_key key; - word32 keyBlobSz; - const char *keyBlobName; - word32 keyBlobNameSz; - byte q[256]; - word32 qSz; - byte qPad; - const char *primeName; - word32 primeNameSz; } ecc; #endif } ks;