mirror of https://github.com/wolfSSL/wolfssh.git
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 keyspull/563/head
commit
b5ea47dafa
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue