Increase buffer size to accomodate for big RSA keys

pull/547/head
Fabio Alemagna 2023-04-14 19:06:18 +02:00 committed by Fabio
parent 87caf4ad04
commit 977618ed15
1 changed files with 2 additions and 2 deletions

View File

@ -8338,10 +8338,10 @@ struct wolfSSH_sigKeyBlockFull {
#ifndef WOLFSSH_NO_RSA
struct {
RsaKey key;
byte e[257];
byte e[1025];
word32 eSz;
byte ePad;
byte n[257];
byte n[1025];
word32 nSz;
byte nPad;
} rsa;