new #define FILE_READ_BUFSIZE
This commit is contained in:
parent
ff5b02d371
commit
06b1582de6
@ -550,7 +550,10 @@
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef LTC_NO_FILE
|
||||||
|
/* buffer size for reading from a file via fread(..) */
|
||||||
|
#define FILE_READ_BUFSIZE 8192
|
||||||
|
#endif
|
||||||
|
|
||||||
/* $Source$ */
|
/* $Source$ */
|
||||||
/* $Revision$ */
|
/* $Revision$ */
|
||||||
|
@ -42,7 +42,7 @@ int poly1305_file(const char *fname, const unsigned char *key, unsigned long key
|
|||||||
LTC_ARGCHK(maclen != NULL);
|
LTC_ARGCHK(maclen != NULL);
|
||||||
|
|
||||||
if ((in = fopen(fname, "rb")) == NULL) { return CRYPT_FILE_NOTFOUND; }
|
if ((in = fopen(fname, "rb")) == NULL) { return CRYPT_FILE_NOTFOUND; }
|
||||||
if ((buf = XMALLOC(8196)) == NULL) { return CRYPT_MEM; }
|
if ((buf = XMALLOC(FILE_READ_BUFSIZE)) == NULL) { return CRYPT_MEM; }
|
||||||
if ((err = poly1305_init(&st, key, keylen)) != CRYPT_OK) { goto LBL_ERR; }
|
if ((err = poly1305_init(&st, key, keylen)) != CRYPT_OK) { goto LBL_ERR; }
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user