diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-08-20 09:54:41 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-08-20 09:54:41 +0200 |
commit | 88d38939bcf937e62b32f39d006d4e86ca89083c (patch) | |
tree | e662eb0892457730e4d0abf461f82d9c8d47419a /libtomcrypt/headers/tomcrypt_cfg.h | |
parent | 5507ea6f51bd227ce4af661d550ad4d4de80674b (diff) | |
download | cryptodev-linux-88d38939bcf937e62b32f39d006d4e86ca89083c.tar.gz cryptodev-linux-88d38939bcf937e62b32f39d006d4e86ca89083c.tar.xz cryptodev-linux-88d38939bcf937e62b32f39d006d4e86ca89083c.zip |
Increased RSA size to 8192. Return error on wrong arguments.
Diffstat (limited to 'libtomcrypt/headers/tomcrypt_cfg.h')
-rw-r--r-- | libtomcrypt/headers/tomcrypt_cfg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtomcrypt/headers/tomcrypt_cfg.h b/libtomcrypt/headers/tomcrypt_cfg.h index b750c8b..8ad90bc 100644 --- a/libtomcrypt/headers/tomcrypt_cfg.h +++ b/libtomcrypt/headers/tomcrypt_cfg.h @@ -42,9 +42,9 @@ LTC_EXPORT int LTC_CALL XSTRCMP(const char *s1, const char *s2); #endif -/* type of argument checking, 0=default, 1=fatal and 2=error+continue, 3=nothing */ +/* type of argument checking, 0=default, 1=fatal and 2=error+continue, 3=nothing, 4=return error */ #ifndef ARGTYPE - #define ARGTYPE 0 + #define ARGTYPE 4 #endif /* Controls endianess and size of registers. Leave uncommented to get platform neutral [slower] code |