increase default example smime buffer size

pull/379/head
JacobBarthelmeh 2024-02-21 17:09:48 +07:00
parent 7b48a13f34
commit e310409d0e
1 changed files with 2 additions and 2 deletions

View File

@ -179,8 +179,8 @@ int main(int argc, char** argv)
byte cert[2048];
int certSz = 2048;
byte smime[3072];
int smimeSz = 3072;
byte smime[4096];
int smimeSz = 4096;
byte content[] = "Test content to sign";
int contentSz = sizeof(content);