diff options
author | Matt Johnston <matt@ucc.asn.au> | 2017-06-24 22:51:45 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2017-06-24 22:51:45 +0800 |
commit | 6ac5ea2a9f8bad30909e30ed196879ddbd118310 (patch) | |
tree | 4c43cdca57c6b70f2c509e6b15e269b13afa5ffc /libtomcrypt/notes | |
parent | 17a9b8802f0306010f5d1f071dce2b3ca80ae415 (diff) | |
parent | 364fb6019c1931de3d181f21ea491ec112161577 (diff) |
merge from main (libtommath/libtomcrypt/curve25510-donna updates)
--HG--
branch : fuzz
Diffstat (limited to 'libtomcrypt/notes')
-rw-r--r-- | libtomcrypt/notes/etc/saferp_optimizer.c | 8 | ||||
-rw-r--r-- | libtomcrypt/notes/etc/whirlgen.c | 6 | ||||
-rw-r--r-- | libtomcrypt/notes/etc/whirltest.c | 6 | ||||
-rw-r--r-- | libtomcrypt/notes/tech0005.txt | 2 |
4 files changed, 11 insertions, 11 deletions
diff --git a/libtomcrypt/notes/etc/saferp_optimizer.c b/libtomcrypt/notes/etc/saferp_optimizer.c index 32de878..b2ae718 100644 --- a/libtomcrypt/notes/etc/saferp_optimizer.c +++ b/libtomcrypt/notes/etc/saferp_optimizer.c @@ -1,4 +1,4 @@ -/* emits an optimized version of SAFER+ ... only does encrypt so far... */ +/* emits an optimized version of LTC_SAFER+ ... only does encrypt so far... */ #include <stdio.h> #include <string.h> @@ -172,6 +172,6 @@ printf(" }\n}\n\n"); } -/* $Source: /cvs/libtom/libtomcrypt/notes/etc/saferp_optimizer.c,v $ */ -/* $Revision: 1.2 $ */ -/* $Date: 2005/05/05 14:35:58 $ */ +/* $Source$ */ +/* $Revision$ */ +/* $Date$ */ diff --git a/libtomcrypt/notes/etc/whirlgen.c b/libtomcrypt/notes/etc/whirlgen.c index c06687e..f64650b 100644 --- a/libtomcrypt/notes/etc/whirlgen.c +++ b/libtomcrypt/notes/etc/whirlgen.c @@ -90,6 +90,6 @@ int main(void) -/* $Source: /cvs/libtom/libtomcrypt/notes/etc/whirlgen.c,v $ */ -/* $Revision: 1.2 $ */ -/* $Date: 2005/05/05 14:35:58 $ */ +/* $Source$ */ +/* $Revision$ */ +/* $Date$ */ diff --git a/libtomcrypt/notes/etc/whirltest.c b/libtomcrypt/notes/etc/whirltest.c index 226e012..cf2e87c 100644 --- a/libtomcrypt/notes/etc/whirltest.c +++ b/libtomcrypt/notes/etc/whirltest.c @@ -14,6 +14,6 @@ int main(void) } -/* $Source: /cvs/libtom/libtomcrypt/notes/etc/whirltest.c,v $ */ -/* $Revision: 1.2 $ */ -/* $Date: 2005/05/05 14:35:58 $ */ +/* $Source$ */ +/* $Revision$ */ +/* $Date$ */ diff --git a/libtomcrypt/notes/tech0005.txt b/libtomcrypt/notes/tech0005.txt index ef10a43..c250220 100644 --- a/libtomcrypt/notes/tech0005.txt +++ b/libtomcrypt/notes/tech0005.txt @@ -12,7 +12,7 @@ You can disable whole classes of algorithms on the command line with the LTC_NO_ The following build with GCC 3.4.4 on an AMD64 box gets you AES, CTR mode, SHA-256, HMAC, Yarrow, full RSA PKCS #1, PKCS #5 and ASN.1 DER in roughly 40KB of code (49KB on the ARMv4) (both excluding the math library). -CFLAGS="-DLTC_NO_CIPHERS -DLTC_NO_HASHES -DLTC_NO_PRNGS -DLTC_NO_MACS -DLTC_NO_MODES -DLTC_NO_PK -DRIJNDAEL -DLTC_CTR_MODE -DSHA256 \ +CFLAGS="-DLTC_NO_CIPHERS -DLTC_NO_HASHES -DLTC_NO_PRNGS -DLTC_NO_MACS -DLTC_NO_MODES -DLTC_NO_PK -DLTC_RIJNDAEL -DLTC_CTR_MODE -DSHA256 \ -DLTC_HMAC -DYARROW -DMRSA -DMPI -DTFM_DESC -DARGTYPE=3 -Os -DLTC_SMALL_CODE -fomit-frame-pointer" make IGNORE_SPEED=1 Obviously this won't get you performance but if you need to pack a crypto lib in a device with limited means it's more than enough... |