# BRCM_VERSION=3
[bcm963xx.git] / userapps / opensource / sshd / libtomcrypt / notes / tech0003.txt
1 Tech Note 0003
2 Minimizing Memory Usage
3 Tom St Denis
4
5 Introduction
6 ------------
7
8 For the most part the library can get by with around 20KB of stack and about 32KB of heap even if you use the
9 public key functions.  If all you plan on using are the hashes and ciphers than only about 1KB of stack is required
10 and no heap.
11
12 To save space all of the symmetric key scheduled keys are stored in a union called "symmetric_key".  This means the 
13 size of a symmetric_key is the size of the largest scheduled key.  By removing the ciphers you don't use from
14 the build you can minimize the size of this structure.  For instance, by removing both Twofish and Blowfish the
15 size reduces to 528 bytes from the 4,256 bytes it would have been (on a 32-bit platform).  Or if you remove
16 Blowfish and use Twofish with TWOFISH_SMALL defined its still 528 bytes.  Even at its largest the structure is only 
17 4KB which is normally not a problem for any platform.  
18
19
20 Cipher Name | Size of scheduled key (bytes) |
21 ------------+-------------------------------|
22 Blowfish    | 4,168                         |
23 RC5         | 204                           |
24 RC6         | 176                           |
25 SAFER+      | 532                           |
26 Serpent     | 528                           |
27 Rijndael    | 516                           |
28 XTEA        | 256                           |
29 Twofish     | 4,256                         |
30 Twofish [*] | 193                           |
31 SAFER [#]   | 217                           |
32 RC2         | 256                           |
33 DES         | 256                           |
34 3DES        | 768                           |
35 CAST5       | 132                           |
36 Noekeon     | 32                            |
37 ------------+-------------------------------/
38 Memory used per cipher on a 32-bit platform.
39
40 [*] For Twofish with TWOFISH_SMALL defined
41 [#] For all 64-bit SAFER ciphers.
42
43 Noekeon is a fairly fast cipher and uses very little memory.  Ideally in low-ram platforms all other ciphers should be
44 left undefined and Noekeon should remain.  While Noekeon is generally considered a secure block cipher (it is insecure
45 as a hash) CAST5 is perhaps a "runner-up" choice.  CAST5 has been around longer (it is also known as CAST-128) and is 
46 fairly fast as well.