Skip to content

Commit

Permalink
Bump buffer sizes, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Nov 11, 2015
1 parent 0efc694 commit 06fb0e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/minisign.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static unsigned char *
message_load_hashed(size_t *message_len, const char *message_file)
{
crypto_generichash_state hs;
unsigned char buf[4096U];
unsigned char buf[65536U];
unsigned char *message;
FILE *fp;
size_t n;
Expand Down Expand Up @@ -125,7 +125,7 @@ message_load(size_t *message_len, const char *message_file, int hashed)
static int
output_file(const char *message_file)
{
unsigned char buf[4096U];
unsigned char buf[65536U];
FILE *fp;
size_t n;

Expand Down

0 comments on commit 06fb0e4

Please sign in to comment.