Skip to content

Commit e310409

Browse files
increase default example smime buffer size
1 parent 7b48a13 commit e310409

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkcs7/smime.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ int main(int argc, char** argv)
179179
byte cert[2048];
180180
int certSz = 2048;
181181

182-
byte smime[3072];
183-
int smimeSz = 3072;
182+
byte smime[4096];
183+
int smimeSz = 4096;
184184

185185
byte content[] = "Test content to sign";
186186
int contentSz = sizeof(content);

0 commit comments

Comments
 (0)