Merge pull request #547 from falemagn/pull-reqs/7e4bad0_Increase_buffer_size_to_accomodate_for_big_RSA_keys

Increase buffer size to accomodate for big RSA keys
pull/563/head
JacobBarthelmeh 2023-08-03 10:41:02 -06:00 committed by GitHub
commit b5ea47dafa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8341,10 +8341,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;