2003-03-02 19:59:24 -05:00
\documentclass { book}
\usepackage { makeidx}
\usepackage { amssymb}
\def \union { \cup }
\def \intersect { \cap }
\def \getsrandom { \stackrel { \rm R} { \gets } }
\def \cross { \times }
\def \cat { \hspace { 0.5em} \| \hspace { 0.5em} }
\def \catn { $ \| $ }
\def \divides { \hspace { 0.3em} | \hspace { 0.3em} }
\def \nequiv { \not \equiv }
\def \approx { \raisebox { 0.2ex} { \mbox { \small $ \sim $ } } }
\def \lcm { { \rm lcm} }
\def \gcd { { \rm gcd} }
\def \log { { \rm log} }
\def \ord { { \rm ord} }
\def \abs { { \mathit abs} }
\def \rep { { \mathit rep} }
\def \mod { { \mathit \ mod\ } }
\renewcommand { \pmod } [1]{ \ ({ \rm mod\ } { #1} )}
\newcommand { \floor } [1]{ \left \lfloor { #1} \right \rfloor }
\newcommand { \ceil } [1]{ \left \lceil { #1} \right \rceil }
\def \Or { { \rm \ or\ } }
\def \And { { \rm \ and\ } }
\def \iff { \hspace { 1em} \Longleftrightarrow \hspace { 1em} }
\def \implies { \Rightarrow }
\def \undefined { { \rm ``undefined"} }
\def \Proof { \vspace { 1ex} \noindent { \bf Proof:} \hspace { 1em} }
\let \oldphi \phi
\def \phi { \varphi }
\def \Pr { { \rm Pr} }
\newcommand { \str } [1]{ { \mathbf { #1} } }
\def \F { { \mathbb F} }
\def \N { { \mathbb N} }
\def \Z { { \mathbb Z} }
\def \R { { \mathbb R} }
\def \C { { \mathbb C} }
\def \Q { { \mathbb Q} }
\newcommand { \url } [1]{ \mbox { $ < $ { #1} $ > $ } }
\newcommand { \emailaddr } [1]{ \mbox { $ < $ { #1} $ > $ } }
\def \twiddle { \raisebox { 0.3ex} { \mbox { \tiny $ \sim $ } } }
\def \gap { \vspace { 0.5ex} }
\makeindex
\begin { document}
2003-03-02 20:01:40 -05:00
\title { A Tiny Crypto Library, \\ LibTomCrypt \\ Version 0.78}
2003-03-02 19:59:24 -05:00
\author { Tom St Denis \\
Algonquin College \\
\\
tomstdenis@yahoo.com \\
http://libtomcrypt.iahu.ca \\ \\
Phone: 1-613-836-3160\\
111 Banning Rd \\
Kanata, Ontario \\
K2L 1C3 \\
Canada
}
\maketitle
\newpage
\tableofcontents
\chapter { Introduction}
\section { What is the Libtomcrypt?}
Libtomcrypt is a portable ANSI C cryptographic library that supports symmetric ciphers, one-way hashes,
pseudo-random number generators, public key cryptography (via RSA,DH or ECC/DH) and a plethora of support
routines. It is designed to compile out of the box with the GNU C Compiler (GCC) version 2.95.3 (and higher)
and with MSVC version 6 in win32.
The library is designed so new ciphers/hashes/PRNGs can be added at runtime and the existing API (and helper API functions) will
be able to use the new designs automatically. There exist self-check functions for each cipher and hash to ensure that
they compile and execute to the published design specifications. The library also performs extensive parameter error checking
and will give verbose error messages.
Essentially the library saves the time of having to implement the ciphers, hashes, prngs yourself. Typically implementing
useful cryptography is an error prone business which means anything that can save considerable time and effort is a good
thing.
\subsection { What the library IS for?}
The library typically serves as a basis for other protocols and message formats. For example, it should be possible to
take the RSA routines out of this library, apply the appropriate message padding and get PKCS compliant RSA routines.
Similarly SSL protocols could be formed on top of the low-level symmetric cipher functions. The goal of this package is
to provide these low level core functions in a robust and easy to use fashion.
The library also serves well as a toolkit for applications where they don't need to be OpenPGP, PKCS, etc. compliant.
Included are fully operational public key routines for encryption, decryption, signature generation and verification.
These routines are fully portable but are not conformant to any known set of standards. They are all based on established
number theory and cryptography.
\subsection { What the library IS NOT for?}
The library is not designed to be in anyway an implementation of the SSL, PKCS or OpenPGP standards. The library is not
designed to be compliant with any known form of API or programming hierarchy. It is not a port of any other
library and it is not platform specific (like the MS CSP). So if you're looking to drop in some buzzword
compliant crypto this library is not for you. The library has been written from scratch to provide basic
functions as well as non-standard higher level functions.
This is not to say that the library is a ``homebrew'' project. All of the symmetric ciphers and one-way hash functions
conform to published test vectors. The public key functions are derived from publicly available material and the majority
of the code has been reviewed by a growing community of developers.
\subsubsection { Why not?}
You may be asking why I didn't choose to go all out and support standards like P1363, PKCS and the whole lot. The reason
is quite simple too much money gets in the way. I just recently tried to access the P1363 draft documents and was denied (it
requires a password). If people are supposed to support these standards they had better make them more accessible.
\section { Why did I write it?}
You may be wondering, ``Tom, why did you write a crypto library. I already have one.''. Well the reason falls into
two categories:
\begin { enumerate}
\item I am too lazy to figure out someone else's API. I'd rather invent my own simpler API and use that.
\item It was (still is) good coding practice.
\end { enumerate}
The idea is that I am not striving to replace OpenSSL or Crypto++ or Cryptlib or etc. I'm trying to write my
{ \bf own} crypto library and hopefully along the way others will appreciate the work.
With this library all core functions (ciphers, hashes, prngs) have the { \bf exact} same prototype definition. They all load
and store data in a format independent of the platform. This means if you encrypt with Blowfish on a PPC it should decrypt
on an x86 with zero problems. The consistent API also means that if you learn how to use blowfish with my library you
know how to use Safer+ or RC6 or Serpent or ... as well. With all of the core functions there are central descriptor tables
that can be used to make a program automatically pick between ciphers, hashes and PRNGs at runtime. That means your
application can support all ciphers/hashes/prngs without changing the source code.
\section { License}
All of the source code except for the following files have been written by the author or donated to the project
under the TDCAL license:
\begin { enumerate}
\item aes.c
\item mpi.c
\item rc2.c
\item serpent.c
\item safer.c
\end { enumerate}
``aes.c'' and ``serpent.c'' were written by Brian Gladman (gladman@seven77.demon.co.uk). They are copyrighted works
but were both granted unrestricted usage in any project (commercial or otherwise). ``mpi.c'' was written by Michael
Fromberger (sting@linguist.dartmouth.edu). Similarly it is copyrighted work but is free for all purposes.
``rc2.c'' is based on publicly available code that is not attributed to a person from the given source. ``safer.c''
was written by Richard De Moliner (demoliner@isi.ee.ethz.ch) and is public domain.
The rest of the code was written either by Tom St Denis or contributed to the project under the ``Tom Doesn't Care
About Licenses'' (TDCAL) license. Essentially this license grants the user unlimited distribution and usage (including
commercial usage). I assume no risk from usage of the code nor do I guarantee it works as desired or stated.
\section { Patent Disclosure}
The author (Tom St Denis) is not a patent lawyer so this section is not to be treated as legal advice. To the best
of the authors knowledge the only patent related issues within the library are the RC5 and RC6 symmetric block ciphers.
They can be removed from a build by simply commenting out the two appropriate lines in the makefile script. The rest
of the ciphers and hashes are patent free or under patents that have since expired.
The RC2 and RC4 symmetric ciphers are not under patents but are under trademark regulations. This means you can use
the ciphers you just can't advertise that you are doing so.
\section { Building the library}
To build the library on a GCC equipped platform simply type ``make'' at your command prompt. It will build the library
file ``libtomcrypt.a''.
To install the library copy all of the ``.h'' files into your ``\# include'' path and the single libtomcrypt.a file into
your library path.
With MSVC you can build the library with ``make -f makefile.vc''. You must use GNU make to build it even with MSVC
due to the limitations of the MS MAKE.
\section { Building against the library}
To build an application against the library you obviously must first compile the library. However, an important
step is that the build options you use to build the library must be present when you build your application. For
instance if ``RC5'' is defined in the makefile when you built the library then you must ensure ``RC5'' is defined when
you build your application.
The simplest way to work with this library is to take the makefile provided and simply add on your project to it as a
target (dependent on the library). That way you can be assured that the library and your application are in sync with
the build options you provide.
\section { Thanks}
I would like to give thanks to the following people (in no particular order) for helping me develop this project:
\begin { enumerate}
\item Richard van de Laarschot
\item Richard Heathfield
\item Ajay K. Agrawal
\item Brian Gladman
\item Svante Seleborg
\item Clay Culver
\item Jason Klapste
\item Dobes Vandermeer
\item Daniel Richards
\item Wayne Scott
\item Andrew Tyler
\item Sky Schulz
\end { enumerate}
\chapter { The Application Programming Interface (API)}
\section { Introduction}
\index { CRYPT\_ ERROR} \index { CRYPT\_ OK}
In general the API is very simple to memorize and use. Most of the functions return either { \bf void} or { \bf int} . Functions
that return { \bf int} will return { \bf CRYPT\_ OK} if the function was successful or one of the many error codes
if it failed. Certain functions that return int will return $ - 1 $ to indicate an error. These functions will be explicitly
commented upon. When a function does return a CRYPT error code it can be translated into a string with
\begin { verbatim}
const char *error_ to_ string(int errno);
\end { verbatim}
An example of handling an error is:
\begin { verbatim}
void somefunc(void)
{
int errno;
/* call a cryptographic function */
if ((errno = some_ crypto_ function(...)) != CRYPT_ OK) {
printf("A crypto error occured, %s\n", error_to_string(errno));
/* perform error handling */
}
/* continue on if no error occured */
}
\end { verbatim}
There is no initialization routine for the library and for the most part the code is thread safe. The only thread
related issue is if you use the same symmetric cipher, hash or public key state data in multiple threads. Normally
that is not an issue.
To include the prototypes for ``LibTomCrypt.a'' into your own program simply include ``mycrypt.h'' like so:
\begin { verbatim}
#include <mycrypt.h>
int main(void) {
return 0;
}
\end { verbatim}
The header file ``mycrypt.h'' also includes ``stdio.h'', ``string.h'', ``stdlib.h'', ``time.h'', ``ctype.h'' and ``mpi.h''
(the bignum library routines).
\section { Macros}
There are a few helper macros to make the coding process a bit easier. The first set are related to loading and storing
32/64-bit words in little/big endian format. The macros are:
\index { STORE32L} \index { STORE64L} \index { LOAD32L} \index { LOAD64L}
\index { STORE32H} \index { STORE64H} \index { LOAD32H} \index { LOAD64H} \index { BSWAP}
\begin { small}
\begin { center}
\begin { tabular} { |c|c|c|}
\hline STORE32L(x, y) & { \bf unsigned long} x, { \bf unsigned char} *y & $ x \to y [ 0 \ldots 3 ] $ \\
\hline STORE64L(x, y) & { \bf unsigned long long} x, { \bf unsigned char} *y & $ x \to y [ 0 \ldots 7 ] $ \\
\hline LOAD32L(x, y) & { \bf unsigned long} x, { \bf unsigned char} *y & $ y [ 0 \ldots 3 ] \to x $ \\
\hline LOAD64L(x, y) & { \bf unsigned long long} x, { \bf unsigned char} *y & $ y [ 0 \ldots 7 ] \to x $ \\
\hline STORE32H(x, y) & { \bf unsigned long} x, { \bf unsigned char} *y & $ x \to y [ 3 \ldots 0 ] $ \\
\hline STORE64H(x, y) & { \bf unsigned long long} x, { \bf unsigned char} *y & $ x \to y [ 7 \ldots 0 ] $ \\
\hline LOAD32H(x, y) & { \bf unsigned long} x, { \bf unsigned char} *y & $ y [ 3 \ldots 0 ] \to x $ \\
\hline LOAD64H(x, y) & { \bf unsigned long long} x, { \bf unsigned char} *y & $ y [ 7 \ldots 0 ] \to x $ \\
\hline BSWAP(x) & { \bf unsigned long} x & Swaps the byte order of x. \\
\hline
\end { tabular}
\end { center}
\end { small}
There are 32-bit cyclic rotations as well:
\index { ROL} \index { ROR}
\begin { center}
\begin { tabular} { |c|c|c|}
\hline ROL(x, y) & { \bf unsigned long} x, { \bf unsigned long} y & $ x << y $ \\
\hline ROR(x, y) & { \bf unsigned long} x, { \bf unsigned long} y & $ x >> y $ \\
\hline
\end { tabular}
\end { center}
\section { Functions with Variable Length Output}
Certain functions such as (for example) ``rsa\_ export()'' give an output that is variable length. To prevent buffer overflows you
must pass it the length of the buffer\footnote { Extensive error checking is not in place but it will be in future releases so it is a good idea to follow through with these guidelines.} where
the output will be stored. For example:
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void) {
rsa_ key key;
unsigned char buffer[1024];
unsigned long x;
int errno;
/* ... Make up the RSA key somehow */
/* lets export the key, set x to the size of the output buffer */
x = sizeof(buffer);
if ((errno = rsa_ export(buffer, & x, PK_ PUBLIC, & key)) != CRYPT_ OK) {
printf("Export error: %s\n", error_to_string(errno));
return -1;
}
/* if rsa_ export() was successful then x will have the size of the output */
printf("RSA exported key takes %d bytes\n", x);
/* ... do something with the buffer */
return 0;
}
\end { verbatim}
\end { small}
In the above example if the size of the RSA public key was more than 1024 bytes this function would not store anything in
either ``buffer'' or ``x'' and simply return an error code. If the function suceeds it stores the length of the output
back into ``x'' so that the calling application will know how many bytes used.
\section { Functions that need a PRNG}
Certain functions such as ``rsa\_ make\_ key()'' require a PRNG. These functions do not setup the PRNG themselves so it is
the responsibility of the calling function to initialize the PRNG before calling them.
\section { Functions that use Arrays of Octets}
Most functions require inputs that are arrays of the data type ``unsigned char''. Whether it is a symmetric key, IV
for a chaining mode or public key packet it is assumed that regardless of the actual size of ``unsigned char'' only the
lower eight bits contain data. For example, if you want to pass a 256 bit key to a symmetric ciphers setup routine
you must pass it in (a pointer to) an array of 32 ``unsigned char'' variables. Certain routines
(such as SAFER+) take special care to work properly on platforms where an ``unsigned char'' is not eight bits.
For the purposes of this library the term ``byte'' will refer to an octet or eight bit word. Typically an array of
type ``byte'' will be synonymous with an array of type ``unsigned char''.
\chapter { Symmetric Block Ciphers}
\section { Core Functions}
Libtomcrypt provides several block ciphers all in a plain vanilla ECB block mode. Its important to first note that you
should never use the ECB modes directly to encrypt data. Instead you should use the ECB functions to make a chaining mode
or use one of the provided chaining modes. All of the ciphers are written as ECB interfaces since it allows the rest of
the API to grow in a modular fashion.
All ciphers store their scheduled keys in a single data type called ``symmetric\_ key''. This allows all ciphers to
have the same prototype and store their keys as naturally as possible. All ciphers provide five visible functions which
are (given that XXX is the name of the cipher):
\index { Cipher Setup}
\begin { verbatim}
int XXX_ setup(const unsigned char *key, int keylen, int rounds,
symmetric_ key *skey);
\end { verbatim}
The XXX\_ setup() routine will setup the cipher to be used with a given number of rounds and a given key length (in bytes).
The number of rounds can be set to zero to use the default, which is generally a good idea.
If the function returns successfully the variable ``skey'' will have a scheduled key stored in it. Its important to note
that you should only used this scheduled key with the intended cipher. For example, if you call
``blowfish\_ setup()'' do not pass the scheduled key onto ``rc5\_ ecb\_ encrypt()''. All setup functions do not allocate
memory off the heap so when you are done with a key you can simply discard it (e.g. they can be on the stack).
To encrypt or decrypt a block in ECB mode there are these two functions:
\index { Cipher Encrypt} \index { Cipher Decrypt}
\begin { verbatim}
void XXX_ ecb_ encrypt(const unsigned char *pt, unsigned char *ct,
symmetric_ key *skey);
void XXX_ ecb_ decrypt(const unsigned char *ct, unsigned char *pt,
symmetric_ key *skey);
\end { verbatim}
These two functions will encrypt or decrypt (respectively) a single block of text\footnote { The size of which depends on
which cipher you are using.} and store the result where you want it. It is possible that the input and output buffer are
the same buffer. For the encrypt function ``pt''\footnote { pt stands for plaintext.} is the input and ``ct'' is the output.
For the decryption function its the opposite. To test a particular cipher against test vectors\footnote { As published in their design papers.} call: \index { Cipher Testing}
\begin { verbatim}
int XXX_ test(void);
\end { verbatim}
This function will return { \bf CRYPT\_ OK} if the cipher matches the test vectors from the design publication it is
based upon. Finally for each cipher there is a function which will help find a desired key size:
\begin { verbatim}
int XXX_ keysize(int *keysize);
\end { verbatim}
Essentially it will round the input keysize in ``keysize'' down to the next appropriate key size. This function
return { \bf CRYPT\_ OK} if the key size specified is acceptable. For example:
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
int keysize, errno;
/* now given a 20 byte key what keysize does Twofish want to use? */
keysize = 20;
if ((errno = twofish_ keysize(& keysize)) != CRYPT_ OK) {
printf("Error getting key size: %s\n", error_to_string(errno));
return -1;
}
printf("Twofish suggested a key size of %d\n", keysize);
return 0;
}
\end { verbatim}
\end { small}
This should indicate a keysize of sixteen bytes is suggested. An example snippet that encodes a block with
Blowfish in ECB mode is below.
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
unsigned char pt[8], ct[8], key[8];
symmetric_ key skey;
int errno;
/* ... key is loaded appropriately in ``key'' ... */
/* ... load a block of plaintext in ``pt'' ... */
/* schedule the key */
if ((errno = blowfish_ setup(key, 8, 0, & skey)) != CRYPT_ OK) {
printf("Setup error: %s\n", error_to_string(errno));
return -1;
}
/* encrypt the block */
blowfish_ ecb_ encrypt(pt, ct, & skey);
/* decrypt the block */
blowfish_ ecb_ decrypt(ct, pt, & skey);
return 0;
}
\end { verbatim}
\end { small}
\section { Key Sizes and Number of Rounds}
\index { Symmetric Keys}
As a general rule of thumb do not use symmetric keys under 80 bits if you can. Only a few of the ciphers support smaller
keys (mainly for test vectors anyways). Ideally your application should be making at least 256 bit keys. This is not
because you're supposed to be paranoid. Its because if your PRNG has a bias of any sort the more bits the better. For
example, if you have $ \mbox { Pr } \left [ X = 1 \right ] = { 1 \over 2 } \pm \gamma $ where $ \vert \gamma \vert > 0 $ then the
total amount of entropy in N bits is $ N \cdot - log _ 2 \left ( { 1 \over 2 } + \vert \gamma \vert \right ) $ . So if $ \gamma $
were $ 0 . 25 $ (a severe bias) a 256-bit string would have about 106 bits of entropy whereas a 128-bit string would have
only 53 bits of entropy.
The number of rounds of most ciphers is not an option you can change. Only RC5 allows you to change the number of
rounds. By passing zero as the number of rounds all ciphers will use their default number of rounds. Generally the
ciphers are configured such that the default number of rounds provide adequate security for the given block size.
\section { The Cipher Descriptors}
\index { Cipher Descriptor}
To facilitate automatic routines an array of cipher descriptors is provided in the array ``cipher\_ descriptor''. An element
of this array has the following format:
\begin { verbatim}
struct _ cipher_ descriptor {
char *name;
unsigned long min_ key_ length, max_ key_ length,
block_ length, default_ rounds;
int (*setup) (const unsigned char *key, int keylength,
int num_ rounds, symmetric_ key *skey);
void (*ecb_ encrypt)(const unsigned char *pt, unsigned char *ct,
symmetric_ key *key);
void (*ecb_ decrypt)(const unsigned char *ct, unsigned char *pt,
symmetric_ key *key);
int (*test) (void);
int (*keysize) (int *desired_ keysize);
} ;
\end { verbatim}
Where ``name'' is the lower case ASCII version of the name. The fields ``min\_ key\_ length'', ``max\_ key\_ length'' and
``block\_ length'' are all the number of bytes not bits. As a good rule of thumb it is assumed that the cipher supports
the min and max key lengths but not always everything in between. The ``default\_ rounds'' field is the default number
of rounds that will be used.
The remaining fields are all pointers to the core functions for each cipher. The end of the cipher\_ descriptor array is
marked when ``name'' equals { \bf NULL} .
As of this release the current cipher\_ descriptors elements are
\begin { small}
\begin { center}
\begin { tabular} { |c|c|c|c|c|c|}
\hline Name & Descriptor Name & Block Size (bytes) & Key Range (bytes) & Rounds \\
\hline Blowfish & blowfish\_ desc & 8 & 8 ... 56 & 16 \\
\hline X-Tea & xtea\_ desc & 8 & 16 & 32 \\
\hline RC2 & rc2\_ desc & 8 & 8 .. 128 & 16 \\
\hline RC5-32/12/b & rc5\_ desc & 8 & 8 ... 128 & 12 ... 24 \\
\hline RC6-32/20/b & rc6\_ desc & 16 & 8 ... 128 & 20 \\
\hline SAFER+ & saferp\_ desc & 16 & 16, 24, 32 & 8, 12, 16 \\
\hline Safer K64 & safer\_ k64\_ desc & 8 & 8 & 6 .. 13 \\
\hline Safer SK64 & safer\_ sk64\_ desc & 8 & 8 & 6 .. 13 \\
\hline Safer K128 & safer\_ k128\_ desc & 8 & 16 & 6 .. 13 \\
\hline Safer SK128 & safer\_ sk128\_ desc & 8 & 16 & 6 .. 13 \\
\hline Serpent & serpent\_ desc & 16 & 16 .. 32 & 32 \\
2003-03-02 20:01:40 -05:00
\hline AES & aes\_ desc & 16 & 16, 24, 32 & 10, 12, 14 \\
2003-03-02 19:59:24 -05:00
\hline Twofish & twofish\_ desc & 16 & 16, 24, 32 & 16 \\
\hline DES & des\_ desc & 8 & 7 & 16 \\
\hline 3DES (EDE mode) & des3\_ desc & 8 & 21 & 16 \\
\hline CAST5 (CAST-128) & cast5\_ desc & 8 & 5 .. 16 & 12, 16 \\
2003-03-02 20:01:40 -05:00
\hline Noekeon & noekeon\_ desc & 16 & 16 & 16 \\
2003-03-02 19:59:24 -05:00
\hline
\end { tabular}
\end { center}
\end { small}
\subsection { Notes}
For the 64-bit SAFER famliy of ciphers (e.g K64, SK64, K128, SK128) the ecb\_ encrypt() and ecb\_ decrypt()
functions are the same. So if you want to use those functions directly just call safer\_ ecb\_ encrypt()
or safer\_ ecb\_ decrypt() respectively.
Note that for ``DES'' and ``3DES'' they use 8 and 24 byte keys but only 7 and 21 [respectively] bytes of the keys are in
fact used for the purposes of encryption. My suggestion is just to use random 8/24 byte keys instead of trying to make a 8/24
byte string from the real 7/21 byte key.
Note that ``Twofish'' has additional configuration options that take place at build time. These options are found in
the file ``mycrypt\_ cfg.h''. The first option is ``TWOFISH\_ SMALL'' which when defined will force the Twofish code
to not pre-compute the Twofish ``$ g ( X ) $ '' function as a set of four $ 8 \times 32 $ s-boxes. This means that a scheduled
key will require less ram but the resulting cipher will be slower. The second option is ``TWOFISH\_ TABLES'' which when
defined will force the Twofish code to use pre-computed tables for the two s-boxes $ q _ 0 , q _ 1 $ as well as the multiplication
by the polynomials 5B and EF used in the MDS multiplication. As a result the code is faster and slightly larger. The
speed increase is useful when ``TWOFISH\_ SMALL'' is defined since the s-boxes and MDS multiply form the heart of the
Twofish round function.
\begin { small}
\begin { center}
\begin { tabular} { |l|l|l|}
\hline TWOFISH\_ SMALL & TWOFISH\_ TABLES & Speed and Memory (per key) \\
\hline undefined & undefined & Very fast, 4.2KB of ram. \\
\hline undefined & defined & As above, faster keysetup, larger code (1KB more). \\
\hline defined & undefined & Very slow, 0.2KB of ram. \\
\hline defined & defined & Somewhat faster, 0.2KB of ram, larger code. \\
\hline
\end { tabular}
\end { center}
\end { small}
To work with the cipher\_ descriptor array there is a function:
\begin { verbatim}
int find_ cipher(char *name)
\end { verbatim}
Which will search for a given name in the array. It returns negative one if the cipher is not found, otherwise it returns
the location in the array where the cipher was found. For example, to indirectly setup Blowfish you can also use:
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
unsigned char key[8];
symmetric_ key skey;
int errno;
/* you must register a cipher before you use it */
if (register_ cipher(& blowfish_ desc)) == -1) {
printf("Unable to register Blowfish cipher.");
return -1;
}
/* generic call to function (assuming the key in key[] was already setup) */
if ((errno = cipher_ descriptor[find_ cipher("blowfish")].setup(key, 8, 0, & skey)) != CRYPT_ OK) {
printf("Error setting up Blowfish: %s\n", error_to_string(errno));
return -1;
}
/* ... use cipher ... */
}
\end { verbatim}
\end { small}
A good safety would be to check the return value of ``find\_ cipher()'' before accessing the desired function. In order
to use a cipher with the descriptor table you must register it first using:
\begin { verbatim}
int register_ cipher(const struct _ cipher_ descriptor *cipher);
\end { verbatim}
Which accepts a pointer to a descriptor and returns the index into the global descriptor table. If an error occurs such
as there is no more room (it can have 32 ciphers at most) it will return { \bf { -1} } . If you try to add the same cipher more
than once it will just return the index of the first copy. To remove a cipher call:
\begin { verbatim}
int unregister_ cipher(const struct _ cipher_ descriptor *cipher);
\end { verbatim}
Which returns { \bf CRYPT\_ OK} if it removes it otherwise it returns { \bf CRYPT\_ ERROR} . Consider:
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
int errno;
/* register the cipher */
if (register_ cipher(& rijndael_ desc) == -1) {
printf("Error registering Rijndael\n ");
return -1;
}
/* use Rijndael */
/* remove it */
if ((errno = unregister_ cipher(& rijndael_ desc)) != CRYPT_ OK) {
printf("Error removing Rijndael: %s\n", error_to_string(errno));
return -1;
}
return 0;
}
\end { verbatim}
\end { small}
This snippet is a small program that registers only Rijndael only. Note you must register ciphers before
using the PK code since all of the PK code (RSA, DH and ECC) rely heavily on the descriptor tables.
\section { Symmetric Modes of Operations}
\subsection { Background}
A typical symmetric block cipher can be used in chaining modes to effectively encrypt messages larger than the block
size of the cipher. Given a key $ k $ , a plaintext $ P $ and a cipher $ E $ we shall denote the encryption of the block
$ P $ under the key $ k $ as $ E _ k ( P ) $ . In some modes there exists an initial vector denoted as $ C _ { - 1 } $ .
\subsubsection { ECB Mode}
ECB or Electronic Codebook Mode is the simplest method to use. It is given as:
\begin { equation}
C_ i = E_ k(P_ i)
\end { equation}
This mode is very weak since it allows people to swap blocks and perform replay attacks if the same key is used more
than once.
\subsubsection { CBC Mode}
CBC or Cipher Block Chaining mode is a simple mode designed to prevent trivial forms of replay and swap attacks on ciphers.
It is given as:
\begin { equation}
C_ i = E_ k(P_ i \oplus C_ { i - 1} )
\end { equation}
It is important that the initial vector be unique and preferably random for each message encrypted under the same key.
\subsubsection { CTR Mode}
CTR or Counter Mode is a mode which only uses the encryption function of the cipher. Given a initial vector which is
treated as a large binary counter the CTR mode is given as:
\begin { eqnarray}
C_ { -1} = C_ { -1} + 1\mbox { } (\mbox { mod } 2^ W) \nonumber \\
C_ i = P_ i \oplus E_ k(C_ { -1} )
\end { eqnarray}
Where $ W $ is the size of a block in bits (e.g. 64 for Blowfish). As long as the initial vector is random for each message
encrypted under the same key replay and swap attacks are infeasible. CTR mode may look simple but it is as secure
as the block cipher is under a chosen plaintext attack (provided the initial vector is unique).
\subsubsection { CFB Mode}
CFB or Ciphertext Feedback Mode is a mode akin to CBC. It is given as:
\begin { eqnarray}
C_ i = P_ i \oplus C_ { -1} \nonumber \\
C_ { -1} = E_ k(C_ i)
\end { eqnarray}
Note that in this library the output feedback width is equal to the size of the block cipher. That is this mode is used
to encrypt whole blocks at a time. However, the library will buffer data allowing the user to encrypt or decrypt partial
blocks without a delay. When this mode is first setup it will initially encrypt the initial vector as required.
\subsubsection { OFB Mode}
OFB or Output Feedback Mode is a mode akin to CBC as well. It is given as:
\begin { eqnarray}
C_ { -1} = E_ k(C_ { -1} ) \nonumber \\
C_ i = P_ i \oplus C_ { -1}
\end { eqnarray}
Like the CFB mode the output width in CFB mode is the same as the width of the block cipher. OFB mode will also
buffer the output which will allow you to encrypt or decrypt partial blocks without delay.
\subsection { Choice of Mode}
My personal preference is for the CTR mode since it has several key benefits:
\begin { enumerate}
\item No short cycles which is possible in the OFB and CFB modes.
\item Provably as secure as the block cipher being used under a chosen plaintext attack.
\item Technically does not require the decryption routine of the cipher.
\item Allows random access to the plaintext.
\item Allows the encryption of block sizes that are not equal to the size of the block cipher.
\end { enumerate}
The CTR, CFB and OFB routines provided allow you to encrypt block sizes that differ from the ciphers block size. They
accomplish this by buffering the data required to complete a block. This allows you to encrypt or decrypt any size
block of memory with either of the three modes.
The ECB and CBC modes process blocks of the same size as the cipher at a time. Therefore they are less flexible than the
other modes.
\subsection { Implementation}
\index { CBC Mode} \index { CTR Mode}
\index { OFB Mode} \index { CFB Mode}
The library provides simple support routines for handling CBC, CTR, CFB, OFB and ECB encoded messages. Assuming the mode
you want is XXX there is a structure called ``symmetric\_ XXX'' that will contain the information required to
use that mode. They have identical setup routines (except ECB mode for obvious reasons):
\begin { verbatim}
int XXX_ start(int cipher, const unsigned char *IV,
const unsigned char *key, int keylen,
int num_ rounds, symmetric_ XXX *XXX);
int ecb_ start(int cipher, const unsigned char *key, int keylen,
int num_ rounds, symmetric_ ECB *ecb);
\end { verbatim}
In each case ``cipher'' is the index into the cipher\_ descriptor array of the cipher you want to use. The ``IV'' value is
the initialization vector to be used with the cipher. You must fill the IV yourself and it is assumed they are the same
length as the block size\footnote { In otherwords the size of a block of plaintext for the cipher, e.g. 8 for DES, 16 for AES, etc.}
of the cipher you choose. It is important that the IV be random for each unique message you want to encrypt. The
parameters ``key'', ``keylen'' and ``num\_ rounds'' are the same as in the XXX\_ setup() function call. The final parameter
is a pointer to the structure you want to hold the information for the mode of operation.
Both routines return { \bf CRYPT\_ OK} if the cipher initialized correctly, otherwise they return an error code. To
actually encrypt or decrypt the following routines are provided:
\begin { verbatim}
int XXX_ encrypt(const unsigned char *pt, unsigned char *ct,
symmetric_ XXX *XXX);
int XXX_ decrypt(const unsigned char *ct, unsigned char *pt,
symmetric_ XXX *XXX);
int YYY_ encrypt(const unsigned char *pt, unsigned char *ct,
unsigned long len, symmetric_ YYY *YYY);
int YYY_ decrypt(const unsigned char *ct, unsigned char *pt,
unsigned long len, symmetric_ YYY *YYY);
\end { verbatim}
Where ``XXX'' is one of (ecb, cbc) and ``YYY'' is one of (ctr, ofb, cfb). In the CTR, OFB and CFB cases ``len'' is the
size of the buffer (as number of chars) to encrypt or decrypt. The CTR, OFB and CFB modes are order sensitive but not
chunk sensitive. That is you can encrypt ``ABCDEF'' in three calls like ``AB'', ``CD'', ``EF'' or two like ``ABCDE'' and ``F''
and end up with the same ciphertext. However, encrypting ``ABC'' and ``DABC'' will result in different ciphertexts. All
2003-03-02 20:01:40 -05:00
five of the modes will return { \bf CRYPT\_ OK} on success from the encrypt or decrypt functions.
2003-03-02 19:59:24 -05:00
To decrypt in either mode you simply perform the setup like before (recall you have to fetch the IV value you used)
and use the decrypt routine on all of the blocks. When you are done working with either mode you should wipe the
memory (using ``zeromem()'') to help prevent the key from leaking. For example:
\newpage
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
unsigned char key[16], IV[16], buffer[512];
symmetric_ CTR ctr;
int x, errno;
/* register twofish first */
if (register_ cipher(& twofish_ desc) == -1) {
printf("Error registering cipher.\n ");
return -1;
}
/* somehow fill out key and IV */
/* start up CTR mode */
if ((errno = ctr_ start(find_ cipher("twofish"), IV, key, 16, 0, & ctr)) != CRYPT_ OK) {
printf("ctr_ start error: %s\n", error_to_string(errno));
return -1;
}
/* somehow fill buffer than encrypt it */
if ((errno = ctr_ encrypt(buffer, buffer, sizeof(buffer), & ctr)) != CRYPT_ OK) {
printf("ctr_ encrypt error: %s\n", error_to_string(errno));
return -1;
}
/* make use of ciphertext... */
/* clear up and return */
zeromem(key, sizeof(key));
zeromem(& ctr, sizeof(ctr));
return 0;
}
\end { verbatim}
\end { small}
\chapter { One-Way Cryptographic Hash Functions}
\section { Core Functions}
Like the ciphers there are hash core functions and a universal data type to hold the hash state called ``hash\_ state''.
To initialize hash XXX (where XXX is the name) call:
\index { Hash Functions}
\begin { verbatim}
void XXX_ init(hash_ state *md);
\end { verbatim}
This simply sets up the hash to the default state governed by the specifications of the hash. To add data to the
message being hashed call:
\begin { verbatim}
void XXX_ process(hash_ state *md, const unsigned char *in, unsigned long len);
\end { verbatim}
Essentially all hash messages are virtually infinitely\footnote { Most hashes are limited to $ 2 ^ { 64 } $ bits or 2,305,843,009,213,693,952 bytes.} long message which
are buffered. The data can be passed in any sized chunks as long as the order of the bytes are the same the message digest
(hash output) will be the same. For example, this means that:
\begin { verbatim}
md5_ process(& md, "hello ", 6);
md5_ process(& md, "world", 5);
\end { verbatim}
Will produce the same message digest as the single call:
\index { Message Digest}
\begin { verbatim}
md5_ process(& md, "hello world", 11);
\end { verbatim}
To finally get the message digest (the hash) call:
\begin { verbatim}
void XXX_ done(hash_ state *md,
unsigned char *out);
\end { verbatim}
This function will finish up the hash and store the result in the ``out'' array. You must ensure that ``out'' is long
enough for the hash in question. Often hashes are used to get keys for symmetric ciphers so the ``XXX\_ done()'' functions
will wipe the ``md'' variable before returning automatically.
To test a hash function call:
\begin { verbatim}
int XXX_ test(void);
\end { verbatim}
This will return { \bf CRYPTO\_ OK} if the hash matches the test vectors, otherwise it returns an error code. An
example snippet that hashes a message with md5 is given below.
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
hash_ state md;
unsigned char *in = "hello world", out[16];
/* setup the hash */
md5_ init(& md);
/* add the message */
md5_ process(& md, in, strlen(in));
/* get the hash */
md5_ done(& md, out);
return 0;
}
\end { verbatim}
\end { small}
\section { Hash Descriptors}
\index { Hash Descriptors}
Like the set of ciphers the set of hashes have descriptors too. They are stored in an array called ``hash\_ descriptor'' and
are defined by:
\begin { verbatim}
struct _ hash_ descriptor {
char *name;
unsigned long hashsize; /* digest output size in bytes */
unsigned long blocksize; /* the block size the hash uses */
void (*init) (hash_ state *);
void (*process)(hash_ state *, const unsigned char *, unsigned long);
void (*done) (hash_ state *, unsigned char *);
int (*test) (void);
} ;
\end { verbatim}
Similarly ``name'' is the name of the hash function in ASCII (all lowercase). ``hashsize'' is the size of the digest output
in bytes. The remaining fields are pointers to the functions that do the respective tasks. There is a function to
search the array as well called ``int find\_ hash(char *name)''. It returns -1 if the hash is not found, otherwise the
position in the descriptor table of the hash.
You can use the table to indirectly call a hash function that is chosen at runtime. For example:
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
unsigned char buffer[100], hash[MAXBLOCKSIZE];
int idx, x;
hash_ state md;
/* register hashes .... */
if (register_ hash(& md5_ desc) == -1) {
printf("Error registering MD5.\n ");
return -1;
}
/* register other hashes ... */
/* prompt for name and strip newline */
printf("Enter hash name: \n ");
fgets(buffer, sizeof(buffer), stdin);
buffer[strlen(buffer) - 1] = 0;
/* get hash index */
idx = find_ hash(buffer);
if (idx == -1) {
printf("Invalid hash name!\n ");
return -1;
}
/* hash input until blank line */
hash_ descriptor[idx].init(& md);
while (fgets(buffer, sizeof(buffer), stdin) != NULL)
hash_ descriptor[idx].process(& md, buffer, strlen(buffer));
hash_ descriptor[idx].done(& md, hash);
/* dump to screen */
for (x = 0; x < hash_ descriptor[idx].hashsize; x++)
printf("%02x ", hash[x]);
printf("\n ");
return 0;
}
\end { verbatim}
\end { small}
Note the usage of ``MAXBLOCKSIZE''. In Libtomcrypt no symmetric block, key or hash digest is larger than MAXBLOCKSIZE in
length. This provides a simple size you can set your automatic arrays to that will not get overrun.
There are three helper functions as well:
\index { hash\_ memory()} \index { hash\_ file()}
\begin { verbatim}
int hash_ memory(int hash, const unsigned char *data,
unsigned long len, unsigned char *dst,
unsigned long *outlen);
int hash_ file(int hash, const char *fname,
unsigned char *dst,
unsigned long *outlen);
int hash_ filehandle(int hash, FILE *in,
unsigned char *dst, unsigned long *outlen);
\end { verbatim}
Both functions return { \bf CRYPT\_ OK} on success, otherwise they return an error code. The ``hash'' parameter is
the location in the descriptor table of the hash. The ``*outlen'' variable is used to keep track of the output size. You
must set it to the size of your output buffer before calling the functions. When they complete succesfully they store
the length of the message digest back in it. The functions are otherwise straightforward. The ``hash\_ filehandle'' function
assumes that ``in'' is an file handle opened in binary mode. It will not reset the file position after hashing the content.
To perform the above hash with md5 the following code could be used:
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
int idx, errno;
unsigned long len;
unsigned char out[MAXBLOCKSIZE];
/* register the hash */
if (register_ hash(& md5_ desc) == -1) {
printf("Error registering MD5.\n ");
return -1;
}
/* get the index of the hash */
idx = find_ hash("md5");
/* call the hash */
len = sizeof(out);
if ((errno = hash_ memory(idx, "hello world", 11, out, & len)) != CRYPT_ OK) {
printf("Error hashing data: %s\n", error_to_string(errno));
return -1;
}
return 0;
}
\end { verbatim}
\end { small}
The following hashes are provided as of this release:
\begin { center}
\begin { tabular} { |c|c|c|}
\hline Name & Descriptor Name & Size of Message Digest (bytes) \\
\hline SHA-512 & sha512\_ desc & 64 \\
\hline SHA-384 & sha384\_ desc & 48 \\
\hline SHA-256 & sha256\_ desc & 32 \\
\hline TIGER-192 & tiger\_ desc & 24 \\
\hline SHA-1 & sha1\_ desc & 20 \\
\hline MD5 & md5\_ desc & 16 \\
\hline MD4 & md4\_ desc & 16 \\
\hline MD2 & md2\_ desc & 16 \\
\hline
\end { tabular}
\end { center}
Similar to the cipher descriptor table you must register your hash algorithms before you can use them. These functions
work exactly like those of the cipher registration code. The functions are:
\begin { verbatim}
int register_ hash(const struct _ hash_ descriptor *hash);
int unregister_ hash(const struct _ hash_ descriptor *hash);
\end { verbatim}
\subsection { Notice}
It is highly recommended that you not use the MD4 or MD5 hashes for the purposes of digital signatures or authentication codes.
These hashes are provided for completeness and they still can be used for the purposes of password hashing or one-way accumulators
(e.g. Yarrow).
The other hashes such as the SHA-1, SHA-2 (that includes SHA-512, SHA-384 and SHA-256) and TIGER-192 are still considered secure
for all purposes you would normally use a hash for.
\section { Hash based Message Authenication Codes}
Thanks to Dobes Vandermeer the library now includes support for hash based message authenication codes or HMAC for short. An HMAC
of a message is a keyed authenication code that only the owner of a private symmetric key will be able to verify. The purpose is
to allow an owner of a private symmetric key to produce an HMAC on a message then later verify if it is correct. Any impostor or
eavesdropper will not be able to verify the authenticity of a message.
The HMAC support works much like the normal hash functions except that the initialization routine requires you to pass a key
and its length. The key is much like a key you would pass to a cipher. That is, it is simply an array of octets stored in
chars. The initialization routine is:
\begin { verbatim}
int hmac_ init(hmac_ state *hmac, int hash,
const unsigned char *key, unsigned long keylen);
\end { verbatim}
The ``hmac'' parameter is the state for the HMAC code. ``hash'' is the index into the descriptor table of the hash you want
to use to authenticate the message. ``key'' is the pointer to the array of chars that make up the key. ``keylen'' is the
length (in octets) of the key you want to use to authenticate the message. To send octets of a message through the HMAC system you must use the following function:
\begin { verbatim}
int hmac_ process(hmac_ state *hmac, const unsigned char *buf,
unsigned long len);
\end { verbatim}
``hmac'' is the HMAC state you are working with. ``buf'' is the array of octets to send into the HMAC process. ``len'' is the
number of octets to process. Like the hash process routines you can send the data in arbitrarly sized chunks. When you
are finished with the HMAC process you must call the following function to get the HMAC code:
\begin { verbatim}
int hmac_ done(hmac_ state *hmac, unsigned char *hash);
\end { verbatim}
``hmac'' is the HMAC state you are working with. ``hash'' is the array of octets where the HMAC code should be stored. You
must ensure that your destination array is the right size (or just make it of size MAXBLOCKSIZE to be sure). There are
two utility functions provided to make using HMACs easier todo.
\begin { verbatim}
int hmac_ memory(int hash, const unsigned char *key, unsigned long keylen,
const unsigned char *data, unsigned long len,
unsigned char *dst);
\end { verbatim}
This will produce an HMAC code for the array of octets in ``data'' of length ``len''. The index into the hash descriptor table must be provided in ``hash''
It uses the key from ``key'' with a key length of ``keylen''. The result is stored in the array of octets``dst''.
Similarly for files there is the following function:
\begin { verbatim}
int hmac_ file(int hash, const char *fname, const unsigned char *key,
unsigned long keylen, unsigned char *dst);
\end { verbatim}
``hash'' is the index into the hash descriptor table of the hash you want to use. ``fname'' is the filename to process. ``key''
is the array of octets to use as the key. ``keylen'' is the length of the key. ``dst'' is the array of octets where the result
should be stored.
To test if the HMAC code is working there is the following function:
\begin { verbatim}
int hmac_ test(void);
\end { verbatim}
Which returns { \bf CRYPT\_ OK} if the code passes otherwise it returns an error code. Some example code for using the
HMAC system is given below.
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
int idx, errno;
hmac_ state hmac;
unsigned char key[16], dst[MAXBLOCKSIZE];
/* register SHA-1 */
if (register_ hash(& sha1_ desc) == -1) {
printf("Error registering SHA1\n ");
return -1;
}
/* get index of SHA1 in hash descriptor table */
idx = find_ hash("sha1");
/* we would make up our symmetric key in "key[]" here */
/* start the HMAC */
if ((errno = hmac_ init(& hmac, idx, key, 16)) != CRYPT_ OK) {
printf("Error setting up hmac: %s\n", error_to_string(errno));
return -1;
}
/* process a few octets */
if((errno = hmac_ process(& hmac, "hello", 5) != CRYPT_ OK) {
printf("Error processing hmac: %s\n", error_to_string(errno));
return -1;
}
/* get result (presumably to use it somehow...) */
if ((errno = hmac_ done(& hmac, dst)) != CRYPT_ OK) {
printf("Error finishing hmac: %s\n", error_to_string(errno));
return -1;
}
/* return */
return 0;
}
\end { verbatim}
\end { small}
\chapter { Pseudo-Random Number Generators}
\section { Core Functions}
The library provides an array of core functions for Pseudo-Random Number Generators (PRNGs) as well. A cryptographic PRNG is
used to expand a shorter bit string into a longer bit string. PRNGs are used wherever random data is required such as Public Key (PK)
key generation. There is a universal structure called ``prng\_ state''. To initialize a PRNG call:
\begin { verbatim}
int XXX_ start(prng_ state *prng);
\end { verbatim}
This will setup the PRNG for future use and not seed it. In order
for the PRNG to be cryptographically useful you must give it entropy. Ideally you'd have some OS level source to tap
like in UNIX (see section 5.3). To add entropy to the PRNG call:
\begin { verbatim}
int XXX_ add_ entropy(const unsigned char *in, unsigned long len,
prng_ state *prng);
\end { verbatim}
Which returns { \bf CRYPTO\_ OK} if the entropy was accepted. Once you think you have enough entropy you call another
function to put the entropy into action.
\begin { verbatim}
int XXX_ ready(prng_ state *prng);
\end { verbatim}
Which returns { \bf CRYPTO\_ OK} if it is ready. Finally to actually read bytes call:
\begin { verbatim}
unsigned long XXX_ read(unsigned char *out, unsigned long len,
prng_ state *prng);
\end { verbatim}
Which returns the number of bytes read from the PRNG.
\subsection { Remarks}
It is possible to be adding entropy and reading from a PRNG at the same time. For example, if you first seed the PRNG
and call ready() you can now read from it. You can also keep adding new entropy to it. The new entropy will not be used
in the PRNG until ready() is called again. This allows the PRNG to be used and re-seeded at the same time. No real error
checking is guaranteed to see if the entropy is sufficient or if the PRNG is even in a ready state before reading.
\subsection { Example}
Below is a simple snippet to read 10 bytes from yarrow. Its important to note that this snippet is { \bf NOT} secure since
the entropy added is not random.
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
prng_ state prng;
unsigned char buf[10];
int errno;
/* start it */
if ((errno = yarrow_ start(& prng)) != CRYPT_ OK) {
printf("Start error: %s\n", error_to_string(errno));
}
/* add entropy */
if ((errno = yarrow_ add_ entropy("hello world", 11, & prng)) != CRYPT_ OK) {
printf("Add_ entropy error: %s\n", error_to_string(errno));
}
/* ready and read */
if ((errno = yarrow_ ready(& prng)) != CRYPT_ OK) {
printf("Ready error: %s\n", error_to_string(errno));
}
printf("Read %lu bytes from yarrow\n", yarrow_read(buf, 10, &prng));
return 0;
}
\end { verbatim}
\section { PRNG Descriptors}
\index { PRNG Descriptor}
PRNGs have descriptors too (surprised?). Stored in the structure ``prng\_ descriptor''. The format of an element is:
\begin { verbatim}
struct _ prng_ descriptor {
char *name;
int (*start) (prng_ state *);
int (*add_ entropy)(const unsigned char *, unsigned long, prng_ state *);
int (*ready) (prng_ state *);
unsigned long (*read)(unsigned char *, unsigned long len, prng_ state *);
} ;
\end { verbatim}
There is a ``int find\_ prng(char *name)'' function as well. Returns -1 if the PRNG is not found, otherwise it returns
the position in the prng\_ descriptor array.
Just like the ciphers and hashes you must register your prng before you can use it. The two functions provided work
exactly as those for the cipher registry functions. They are:
\begin { verbatim}
int register_ prng(const struct _ prng_ descriptor *prng);
int unregister_ prng(const struct _ prng_ descriptor *prng);
\end { verbatim}
\subsubsection { PRNGs Provided}
Currently Yarrow (yarrow\_ desc), RC4 (rc4\_ desc) and the secure RNG (sprng\_ desc) are provided as PRNGs within the
library.
RC4 is provided with a PRNG interface because it is a stream cipher and not well suited for the symmetric block cipher
interface. You provide the key for RC4 via the rc4\_ add\_ entropy() function. By calling rc4\_ ready() the key will be used
to setup the RC4 state for encryption or decryption. The rc4\_ read() function has been modified from RC4 since it will
XOR the output of the RC4 keystream generator against the input buffer you provide. The following snippet will demonstrate
how to encrypt a buffer with RC4:
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
prng_ state prng;
unsigned char buf[32];
int errno;
if ((errno = rc4_ start(& prng)) != CRYPT_ OK) {
printf("RC4 init error: %s\n", error_to_string(errno));
exit(-1);
}
/* use ``key'' as the key */
if ((errno = rc4_ add_ entropy("key", 3, & prng)) != CRYPT_ OK) {
printf("RC4 add entropy error: %s\n", error_to_string(errno));
exit(-1);
}
/* setup RC4 for use */
if ((errno = rc4_ ready(& prng)) != CRYPT_ OK) {
printf("RC4 ready error: %s\n", error_to_string(errno));
exit(-1);
}
/* encrypt buffer */
strcpy(buf,"hello world");
if (rc4_ read(buf, 11, & prng) != 11) {
printf("RC4 read error\n ");
exit(-1);
}
return 0;
}
\end { verbatim}
\end { small}
To decrypt you have to do the exact same steps.
\section { The Secure RNG}
\index { Secure RNG}
An RNG is related to a PRNG except that it doesn't expand a smaller seed to get the data. They generate their random bits
by performing some computation on fresh input bits. Possibly the hardest thing to get correctly in a cryptosystem is the
PRNG. Computers are deterministic beasts that try hard not to stray from pre-determined paths. That makes gathering
entropy needed to seed the PRNG a hard task.
There is one small function that may help on certain platforms:
\index { rng\_ get\_ bytes()}
\begin { verbatim}
unsigned long rng_ get_ bytes(unsigned char *buf, unsigned long len,
void (*callback)(void));
\end { verbatim}
Which will try one of three methods of getting random data. The first is to open the popular ``/dev/random'' device which
on most *NIX platforms provides cryptographic random bits\footnote { This device is available in Windows through the Cygwin compiler suite. It emulates ``/dev/random'' via the Microsoft CSP.} .
The second method is to try the Microsoft Cryptographic Service Provider and read the RNG. The third method is an ANSI C
clock drift method that is also somewhat popular but gives bits of lower entropy. The ``callback'' parameter is a pointer to a function that returns void. Its used when the slower ANSI C RNG must be
used so the calling application can still work. This is useful since the ANSI C RNG has a throughput of three
bytes a second. The callback pointer may be set to { \bf NULL} to avoid using it if you don't want to. The function
returns the number of bytes actually read from any RNG source. There is a function to help setup a PRNG as well:
\index { rng\_ make\_ prng()}
\begin { verbatim}
int rng_ make_ prng(int bits, int wprng, prng_ state *prng,
void (*callback)(void));
\end { verbatim}
This will try to setup the prng with a state of at least ``bits'' of entropy. The ``callback'' parameter works much like
the callback in ``rng\_ get\_ bytes()''. It is highly recommended that you use this function to setup your PRNGs unless you have a
platform where the RNG doesn't work well. Example usage of this function is given below.
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
ecc_ key mykey;
prng_ state prng;
int errno;
/* register yarrow */
if (register_ prng(& yarrow_ desc) == -1) {
printf("Error registering Yarrow\n ");
return -1;
}
/* setup the PRNG */
if ((errno = rng_ make_ prng(128, find_ prng("yarrow"), & prng, NULL)) != CRYPT_ OK) {
printf("Error setting up PRNG, %s\n", error_to_string(errno));
return -1;
}
/* make a 192-bit ECC key */
if ((errno = ecc_ make_ key(& prng, find_ prng("yarrow"), 24, & mykey)) != CRYPT_ OK) {
printf("Error making key: %s\n", error_to_string(errno));
return -1;
}
return 0;
}
\end { verbatim}
\end { small}
\subsection { The Secure PRNG Interface}
It is possible to access the secure RNG through the PRNG interface and in turn use it within dependent functions such
as the PK API. This simplifies the cryptosystem on platforms where the secure RNG is fast. The secure PRNG never
requires to be started, that is you need not call the start, add\_ entropy or ready functions. For example, consider
the previous example using this PRNG.
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
ecc_ key mykey;
int errno;
/* register SPRNG */
if (register_ prng(& sprng_ desc) == -1) {
printf("Error registering SPRNG\n ");
return -1;
}
/* make a 192-bit ECC key */
if ((errno = ecc_ make_ key(NULL, find_ prng("sprng"), 24, & mykey)) != CRYPT_ OK) {
printf("Error making key: %s\n", error_to_string(errno));
return -1;
}
return 0;
}
\end { verbatim}
\end { small}
\chapter { RSA Routines}
\section { Background}
RSA is a public key algorithm that is based on the inability to find the ``e-th'' root modulo a composite of unknown
factorization. Normally the difficulty of breaking RSA is associated with the integer factoring problem but they are
not strictly equivalent.
The system begins with with two primes $ p $ and $ q $ and their product $ N = pq $ . The order or ``Euler totient'' of the
multiplicative sub-group formed modulo $ N $ is given as $ \phi ( N ) = ( p - 1 ) ( q - 1 ) $ which can be reduced to
$ \mbox { lcm } ( p - 1 , q - 1 ) $ . The public key consists of the composite $ N $ and some integer $ e $ such that
$ \mbox { gcd } ( e, \phi ( N ) ) = 1 $ . The private key consists of the composite $ N $ and the inverse of $ e $ modulo $ \phi ( N ) $
often simply denoted as $ de \equiv 1 \mbox { } ( \mbox { mod } \phi ( N ) ) $ .
A person who wants to encrypt with your public key simply forms an integer (the plaintext) $ M $ such that
$ 1 < M < N - 2 $ and computes the ciphertext $ C = M ^ e \mbox { } ( \mbox { mod } N ) $ . Since finding the inverse exponent $ d $
given only $ N $ and $ e $ appears to be intractable only the owner of the private key can decrypt the ciphertext and compute
$ C ^ d \equiv \left ( M ^ e \right ) ^ d \equiv M ^ 1 \equiv M \mbox { } ( \mbox { mod } N ) $ . Similarly the owner of the private key
can sign a message by ``decrypting'' it. Others can verify it by ``encrypting'' it.
Currently RSA is a difficult system to cryptanalyze provided that both primes are large and not close to each other.
Ideally $ e $ should be larger than $ 100 $ to prevent direct analysis. For example, if $ e $ is three and you do not pad
the plaintext to be encrypted than it is possible that $ M ^ 3 < N $ in which case finding the cube-root would be trivial.
The most often suggested value for $ e $ is $ 65537 $ since it is large enough to make such attacks impossible and also well
designed for fast exponentiation (requires 16 squarings and one multiplication).
It is important to pad the input to RSA since it has particular mathematical structure. For instance
$ M _ 1 ^ dM _ 2 ^ d = ( M _ 1 M _ 2 ) ^ d $ which can be used to forge a signature. Suppose $ M _ 3 = M _ 1 M _ 2 $ is a message you want
to have a forged signature for. Simply get the signatures for $ M _ 1 $ and $ M _ 2 $ on their own and multiply the result
together. Similar tricks can be used to deduce plaintexts from ciphertexts. It is important not only to sign
the hash of documents only but also to pad the inputs with data to remove such structure.
\section { Core Functions}
For RSA routines a single ``rsa\_ key'' structure is used. To make a new RSA key call:
\index { rsa\_ make\_ key()}
\begin { verbatim}
int rsa_ make_ key(prng_ state *prng,
int wprng, int size,
long e, rsa_ key *key);
\end { verbatim}
Where ``wprng'' is the index into the PRNG descriptor array. ``size'' is the size in bytes of the RSA modulus desired.
``e'' is the encryption exponent desired, typical values are 3, 17, 257 and 65537. I suggest you stick with 65537 since its big
enough to prevent trivial math attacks and not super slow. ``key'' is where the key is placed. All keys must be at
least 128 bytes and no more than 512 bytes in size (that is from 1024 to 4096 bits).
Note that the ``rsa\_ make\_ key()'' function allocates memory at runtime when you make the key. Make sure to call
``rsa\_ free()'' (see below) when you are finished with the key. If ``rsa\_ make\_ key()'' fails it will automatically
free the ram allocated itself.
There are three types of RSA keys. The types are { \bf PK\_ PRIVATE\_ OPTIMIZED} , { \bf PK\_ PRIVATE} and { \bf PK\_ PUBLIC} . The first
two are private keys where the ``optimized'' type uses the Chinese Remainder Theorem to speed up decryption/signatures. By
default all new keys are of the ``optimized'' type. The non-optimized private type is provided for backwards compatibility
as well as to save space since the optimized key requires about four times as much memory.
To do raw work with the RSA function call:
\index { rsa\_ exptmod()}
\begin { verbatim}
int rsa_ exptmod(const unsigned char *in, unsigned long inlen,
unsigned char *out, unsigned long *outlen,
int which, rsa_ key *key);
\end { verbatim}
2003-03-02 20:01:40 -05:00
This loads the bignum from ``in'' as a big endian word in the format PKCS specifies, raises it to either ``e'' or ``d'' and stores the result
2003-03-02 19:59:24 -05:00
in ``out'' and the size of the result in ``outlen''. ``which'' is set to { \bf PK\_ PUBLIC} to use ``e''
(i.e. for encryption/verifying) and set to { \bf PK\_ PRIVATE} to use ``d'' as the exponent (i.e. for decrypting/signing).
\section { Packet Routines}
2003-03-02 20:01:40 -05:00
To encrypt or decrypt a symmetric key using RSA the following functions are provided. The idea is that you make up
a random symmetric key and use that to encode your message. By RSA encrypting the symmetric key you can send it to a
recipient who can RSA decrypt it and symmetrically decrypt the message.
2003-03-02 19:59:24 -05:00
\begin { verbatim}
int rsa_ encrypt_ key(const unsigned char *inkey, unsigned long inlen,
unsigned char *outkey, unsigned long *outlen,
prng_ state *prng, int wprng, rsa_ key *key);
int rsa_ decrypt_ key(const unsigned char *in, unsigned char *outkey,
unsigned long *keylen, rsa_ key *key);
\end { verbatim}
The ``rsa\_ encrypt\_ key()'' function accepts a symmetric key (limited to 32 bytes) as input in ``inkey''. ``inlen''
is the size of the input key in bytes. The function will then ``rsa\_ pad()'' the key and encrypt it using the RSA
algorithm. It will store the result in ``outkey'' along with the length in ``outlen''. The ``rsa\_ decrypt\_ key()'' function
performs the opposite. The ``in'' variable is where the RSA packet goes and it will store the original symmetric key in
the ``outkey'' variable along with its length in ``keylen''.
2003-03-02 20:01:40 -05:00
Similarly to sign or verify a hash of a message the following two messages are provided. The idea is to hash your
message then use these functions to RSA sign the hash.
\begin { verbatim}
int rsa_ sign_ hash(const unsigned char *in, unsigned long inlen,
unsigned char *out, unsigned long *outlen,
rsa_ key *key);
int rsa_ verify_ hash(const unsigned char *sig, const unsigned char *hash,
int *stat, rsa_ key *key);
\end { verbatim}
For ``rsa\_ sign\_ hash'' the input is intended to be the hash of a message the user wants to sign. The output is the
RSA signed packet which ``rsa\_ verify\_ hash'' can verify. For the verification function ``sig'' is the RSA signature
and ``hash'' is the hash of the message. The integer ``stat'' is set to non-zero if the signature is valid or zero
otherwise.
2003-03-02 19:59:24 -05:00
To import/export RSA keys as a memory buffer (e.g. to store them to disk) call:
\begin { verbatim}
int rsa_ export(unsigned char *out, unsigned long *outlen,
int type, rsa_ key *key);
2003-03-02 20:01:40 -05:00
int rsa_ import(const unsigned char *in, unsigned long inlen, rsa_ key *key);
2003-03-02 19:59:24 -05:00
\end { verbatim}
The ``type'' parameter is { \bf PK\_ PUBLIC} , { \bf PK\_ PRIVATE} or { \bf PK\_ PRIVATE\_ OPTIMIZED} to export either a public or
private key. The latter type will export a key with the optimized parameters. To free the memory used by an RSA key call:
\index { rsa\_ free()}
\begin { verbatim}
void rsa_ free(rsa_ key *key);
\end { verbatim}
Note that if the key fails to ``rsa\_ import()'' you do not have to free the memory allocated for it.
\section { Remarks}
It is important that you match your RSA key size with the function you are performing. The internal padding for both
2003-03-02 20:01:00 -05:00
signatures and encryption triple the size of the plaintext. This means to encrypt or sign
a message of N bytes you must have a modulus of 1+3N bytes. Note that this doesn't affect the length of the plaintext
you pass into functions like rsa\_ encrypt(). This restriction applies only to data that is passed through the
internal RSA routines directly directly.
2003-03-02 19:59:24 -05:00
The following table gives the size requirements for various hashes.
\begin { center}
\begin { tabular} { |c|c|c|}
\hline Name & Size of Message Digest (bytes) & RSA Key Size (bits)\\
\hline SHA-512 & 64 & 1544\\
\hline SHA-384 & 48 & 1160 \\
\hline SHA-256 & 32 & 776\\
\hline TIGER-192 & 24 & 584\\
\hline SHA-1 & 20 & 488\\
\hline MD5 & 16 & 392\\
\hline MD4 & 16 & 392\\
\hline
\end { tabular}
\end { center}
The symmetric ciphers will use at a maximum a 256-bit key which means at the least a 776-bit RSA key is
2003-03-02 20:01:40 -05:00
required to use all of the symmetric ciphers with the RSA routines. If you want to use any of the large size
message digests (SHA-512 or SHA-384) you will have to use a larger key. Or to be simple just make 2048-bit or larger
keys. None of the hashes will have problems with such key sizes.
2003-03-02 19:59:24 -05:00
\chapter { Diffie-Hellman Key Exchange}
\section { Background}
Diffie-Hellman was the original public key system proposed. The system is based upon the group structure
of finite fields. For Diffie-Hellman a prime $ p $ is chosen and a ``base'' $ b $ such that $ b ^ x \mbox { } ( \mbox { mod } p ) $
generates a large sub-group of prime order (for unique values of $ x $ ).
A secret key is an exponent $ x $ and a public key is the value of $ y \equiv g ^ x \mbox { } ( \mbox { mod } p ) $ . The term
``discrete logarithm'' denotes the action of finding $ x $ given only $ y $ , $ g $ and $ p $ . The key exchange part of
Diffie-Hellman arises from the fact that two users A and B with keys $ ( A _ x, A _ y ) $ and $ ( B _ x, B _ y ) $ can exchange
a shared key $ K \equiv B _ y ^ { A _ x } \equiv A _ y ^ { B _ x } \equiv g ^ { A _ xB _ x } \mbox { } ( \mbox { mod } p ) $ .
From this public encryption and signatures can be developed. The trivial way to encrypt (for example) using a public key
$ y $ is to perform the key exchange offline. The sender invents a key $ k $ and its public copy
$ k' \equiv g ^ k \mbox { } ( \mbox { mod } p ) $ and uses $ K \equiv k' ^ { A _ x } \mbox { } ( \mbox { mod } p ) $ as a key to encrypt
the message with. Typically $ K $ would be sent to a one-way hash and the message digested used as a key in a
symmetric cipher.
It is important that the order of the sub-group that $ g $ generates not only be large but also prime. There are
discrete logarithm algorithms that take $ \sqrt r $ time given the order $ r $ . The discrete logarithm can be computed
modulo each prime factor of $ r $ and the results combined using the Chinese Remainder Theorem. In the cases where
$ r $ is ``B-Smooth'' (e.g. all small factors or powers of small prime factors) the solution is trivial to find.
To thwart such attacks the primes and bases in the library have been designed and fixed. Given a prime $ p $ the order of
the sub-group generated is a large prime namely $ { p - 1 } \over 2 $ . Such primes are known as ``strong primes'' and the
smaller prime (e.g. the order of the base) are known as Sophie-Germaine primes.
\section { Core Functions}
This library also provides core Diffie-Hellman functions so you can negotiate keys over insecure mediums. The routines
provided are relatively easy to use and only take two function calls to negotiate a shared key. There is a structure
called ``dh\_ key'' which stores the Diffie-Hellman key in a format these routines can use. The first routine is to
make a Diffie-Hellman private key pair:
\index { dh\_ make\_ key()}
\begin { verbatim}
int dh_ make_ key(prng_ state *prng, int wprng,
int keysize, dh_ key *key);
\end { verbatim}
2003-03-02 20:01:00 -05:00
The ``keysize'' is the size of the modulus you want in bytes. Currently support sizes are 96 to 512 bytes which correspond
to key sizes of 768 to 4096 bits. The smaller the key the faster it is to use however it will be less secure. When
2003-03-02 19:59:24 -05:00
specifying a size not explicitly supported by the library it will round { \em up} to the next key size. If the size is
2003-03-02 20:01:00 -05:00
above 512 it will return an error. So if you pass ``keysize == 32'' it will use a 768 bit key but if you pass
2003-03-02 19:59:24 -05:00
``keysize == 20000'' it will return an error. The primes and generators used are built-into the library and were designed
to meet very specific goals. The primes are strong primes which means that if $ p $ is the prime then
$ p - 1 $ is equal to $ 2 r $ where $ r $ is a large prime. The bases are chosen to generate a group of order $ r $ to prevent
leaking a bit of the key. This means the bases generate a very large prime order group which is good to make cryptanalysis
hard.
The next two routines are for exporting/importing Diffie-Hellman keys in a binary format. This is useful for transport
over communication mediums.
\index { dh\_ export()} \index { dh\_ import()}
\begin { verbatim}
int dh_ export(unsigned char *out, unsigned long *outlen,
int type, dh_ key *key);
2003-03-02 20:01:40 -05:00
int dh_ import(const unsigned char *in, unsigned long inlen, dh_ key *key);
2003-03-02 19:59:24 -05:00
\end { verbatim}
These two functions work just like the ``rsa\_ export()'' and ``rsa\_ import()'' functions except these work with
Diffie-Hellman keys. Its important to note you do not have to free the ram for a ``dh\_ key'' if an import fails. You can free a
``dh\_ key'' using:
\begin { verbatim}
void dh_ free(dh_ key *key);
\end { verbatim}
After you have exported a copy of your public key (using { \bf PK\_ PUBLIC} as ``type'') you can now create a shared secret
with the other user using:
\index { dh\_ shared\_ secret()}
\begin { verbatim}
int dh_ shared_ secret(dh_ key *private_ key,
dh_ key *public_ key,
unsigned char *out, unsigned long *outlen);
\end { verbatim}
Where ``private\_ key'' is the key you made and ``public\_ key'' is the copy of the public key the other user sent you. The result goes
into ``out'' and the length into ``outlen''. If all went correctly the data in ``out'' should be identical for both parties. It is important to
note that the two keys have to be the same size in order for this to work. There is a function to get the size of a
key:
\index { dh\_ get\_ size()}
\begin { verbatim}
int dh_ get_ size(dh_ key *key);
\end { verbatim}
This returns the size in bytes of the modulus chosen for that key.
\subsection { Remarks on Usage}
Its important that you hash the shared key before trying to use it as a key for a symmetric cipher or something. An
example program that communicates over sockets, using MD5 and 1024-bit DH keys is\footnote { This function is a small example. It is suggested that proper packaging be used. For example, if the public key sent is truncated these routines will not detect that.} :
\newpage
\begin { small}
\begin { verbatim}
int establish_ secure_ socket(int sock, int mode, unsigned char *key,
prng_ state *prng, int wprng)
{
unsigned char buf[4096], buf2[4096];
unsigned long x, len;
2003-03-02 20:01:40 -05:00
int res, errno, inlen;
2003-03-02 19:59:24 -05:00
dh_ key mykey, theirkey;
/* make up our private key */
if ((errno = dh_ make_ key(prng, wprng, 128, & mykey)) != CRYPT_ OK) {
return errno;
}
/* export our key as public */
x = sizeof(buf);
if ((errno = dh_ export(buf, & x, PK_ PUBLIC, & mykey)) != CRYPT_ OK) {
res = errno;
goto done2;
}
if (mode == 0) {
/* mode 0 so we send first */
if (send(sock, buf, x, 0) != x) {
res = CRYPT_ ERROR;
goto done2;
}
/* get their key */
2003-03-02 20:01:40 -05:00
if ((inlen = recv(sock, buf2, sizeof(buf2), 0)) <= 0) {
2003-03-02 19:59:24 -05:00
res = CRYPT_ ERROR;
goto done2;
}
} else {
/* mode >0 so we send second */
2003-03-02 20:01:40 -05:00
if ((inlen = recv(sock, buf2, sizeof(buf2), 0)) <= 0) {
2003-03-02 19:59:24 -05:00
res = CRYPT_ ERROR;
goto done2;
}
if (send(sock, buf, x, 0) != x) {
res = CRYPT_ ERROR;
goto done2;
}
}
2003-03-02 20:01:40 -05:00
if ((errno = dh_ import(buf2, inlen, & theirkey)) != CRYPT_ OK) {
2003-03-02 19:59:24 -05:00
res = errno;
goto done2;
}
/* make shared secret */
x = sizeof(buf);
if ((errno = dh_ shared_ secret(& mykey, & theirkey, buf, & x)) != CRYPT_ OK) {
res = errno;
goto done;
}
/* hash it */
len = 16; /* default is MD5 so "key" must be at least 16 bytes long */
if ((errno = hash_ memory(find_ hash("md5"), buf, x, key, & len)) != CRYPT_ OK) {
res = errno;
goto done;
}
/* clean up and return */
res = CRYPT_ OK;
done:
dh_ free(& theirkey);
done2:
dh_ free(& mykey);
zeromem(buf, sizeof(buf));
zeromem(buf2, sizeof(buf2));
return res;
}
\end { verbatim}
\end { small}
\newpage
\subsection { Remarks on The Snippet}
When the above code snippet is done (assuming all went well) their will be a shared 128-bit key in the ``key'' array
passed to ``establish\_ secure\_ socket()''.
\section { Other Diffie-Hellman Functions}
In order to test the Diffie-Hellman function internal workings (e.g. the primes and bases) their is a test function made
available:
\index { dh\_ test()}
\begin { verbatim}
int dh_ test(void);
\end { verbatim}
This function returns { \bf CRYPT\_ OK} if the bases and primes in the library are correct. There is one last helper
function:
\index { dh\_ sizes()}
\begin { verbatim}
void dh_ sizes(int *low, int *high);
\end { verbatim}
Which stores the smallest and largest key sizes support into the two variables.
\section { DH Packet}
2003-03-02 20:01:40 -05:00
Similar to the RSA related functions there are functions to encrypt or decrypt symmetric keys using the DH public key
algorithms.
2003-03-02 19:59:24 -05:00
\begin { verbatim}
int dh_ encrypt_ key(const unsigned char *inkey, unsigned long keylen,
unsigned char *out, unsigned long *len,
prng_ state *prng, int wprng, int hash,
dh_ key *key);
int dh_ decrypt_ key(const unsigned char *in, unsigned char *outkey,
unsigned long *keylen, dh_ key *key);
\end { verbatim}
Where ``inkey'' is an input symmetric key of no more than 32 bytes. Essentially these routines created a random public key
and find the hash of the shared secret. The message digest is than XOR'ed against the symmetric key. All of the required
data is placed in ``out'' by ``dh\_ encrypt\_ key()''. The hash must produce a message digest at least as large
as the symmetric key you are trying to share.
2003-03-02 20:01:40 -05:00
Similar to the RSA system you can sign and verify a hash of a message.
2003-03-02 19:59:24 -05:00
\begin { verbatim}
int dh_ sign_ hash(const unsigned char *in, unsigned long inlen,
unsigned char *out, unsigned long *outlen,
prng_ state *prng, int wprng, dh_ key *key);
int dh_ verify_ hash(const unsigned char *sig, const unsigned char *hash,
unsigned long inlen, int *stat,
dh_ key *key);
\end { verbatim}
2003-03-02 20:01:40 -05:00
The ``dh\_ sign\_ hash'' function signs the message hash in ``in'' of length ``inlen'' and forms a DH packet in ``out''.
The ``dh\_ verify\_ hash'' function verifies the DH signature in ``sig'' against the hash in ``hash''. It sets ``stat''
to non-zero if the signature passes or zero if it fails.
2003-03-02 19:59:24 -05:00
\chapter { Elliptic Curve Cryptography}
\section { Background}
The library provides a set of core ECC functions as well that are designed to be the Elliptic Curve analogy of all of the
Diffie-Hellman routines in the previous chapter. Elliptic curves (of certain forms) have the benefit that they are harder
to attack (no sub-exponential attacks exist unlike normal DH crypto) in fact the fastest attack requires the square root
of the order of the base point in time. That means if you use a base point of order $ 2 ^ { 192 } $ (which would represent a
192-bit key) then the work factor is $ 2 ^ { 96 } $ in order to find the secret key.
The curves in this library are taken from the following website:
\begin { verbatim}
http://csrc.nist.gov/cryptval/dss.htm
\end { verbatim}
They are all curves over the integers modulo a prime. The curves have the basic equation that is:
\begin { equation}
y^ 2 = x^ 3 - 3x + b\mbox { } (\mbox { mod } p)
\end { equation}
The variable $ b $ is chosen such that the number of points is nearly maximal. In fact the order of the base points $ \beta $
provided are very close to $ p $ that is $ \vert \vert \phi ( \beta ) \vert \vert \approx \vert \vert p \vert \vert $ . The curves
range in order from $ \approx 2 ^ { 192 } $ points to $ \approx 2 ^ { 521 } $ . According to the source document any key size greater
than or equal to 256-bits is sufficient for long term security.
\section { Core Functions}
Like the DH routines there is a key structure ``ecc\_ key'' used by the functions. There is a function to make a key:
\index { ecc\_ make\_ key()}
\begin { verbatim}
int ecc_ make_ key(prng_ state *prng, int wprng,
int keysize, ecc_ key *key);
\end { verbatim}
The ``keysize'' is the size of the modulus in bytes desired. Currently directly supported values are 20, 24, 28, 32, 48 and 65 bytes which
correspond to key sizes of 160, 192, 224, 256, 384 and 521 bits respectively. If you pass a key size that is between any key size
it will round the keysize up to the next available one. The rest of the parameters work like they do in the ``dh\_ make\_ key()'' function.
To free the ram allocated by a key call:
\index { ecc\_ free()}
\begin { verbatim}
void ecc_ free(ecc_ key *key);
\end { verbatim}
To import and export a key there are:
\index { ecc\_ export()}
\index { ecc\_ import()}
\begin { verbatim}
int ecc_ export(unsigned char *out, unsigned long *outlen,
int type, ecc_ key *key);
2003-03-02 20:01:40 -05:00
int ecc_ import(const unsigned char *in, unsigned long inlen, ecc_ key *key);
2003-03-02 19:59:24 -05:00
\end { verbatim}
These two work exactly like there DH counterparts. Finally when you share your public key you can make a shared secret
with:
\index { ecc\_ shared\_ secret()}
\begin { verbatim}
int ecc_ shared_ secret(ecc_ key *private_ key,
ecc_ key *public_ key,
unsigned char *out, unsigned long *outlen);
\end { verbatim}
Which works exactly like the DH counterpart, the ``private\_ key'' is your own key and ``public\_ key'' is the key the other
user sent you. Note that this function stores both $ x $ and $ y $ co-ordinates of the shared
elliptic point. You should hash the output to get a shared key in a more compact and useful form (most of the entropy is
in $ x $ anyways). Both keys have to be the same size for this to work, to help there is a function to get the size in bytes
of a key.
\index { ecc\_ get\_ size()}
\begin { verbatim}
int ecc_ get_ size(ecc_ key *key);
\end { verbatim}
To test the ECC routines and to get the minimum and maximum key sizes there are these two functions:
\index { ecc\_ test()}
\begin { verbatim}
int ecc_ test(void);
void ecc_ sizes(int *low, int *high);
\end { verbatim}
Which both work like their DH counterparts.
\section { ECC Packet}
2003-03-02 20:01:40 -05:00
Similar to the RSA API there are two functions which encrypt and decrypt symmetric keys using the ECC public key
algorithms.
2003-03-02 19:59:24 -05:00
\begin { verbatim}
int ecc_ encrypt_ key(const unsigned char *inkey, unsigned long keylen,
unsigned char *out, unsigned long *len,
prng_ state *prng, int wprng, int hash,
ecc_ key *key);
int ecc_ decrypt_ key(const unsigned char *in, unsigned char *outkey,
unsigned long *keylen, ecc_ key *key);
\end { verbatim}
2003-03-02 20:01:40 -05:00
Where ``inkey'' is an input symmetric key of no more than 32 bytes. Essentially these routines created a random public key
and find the hash of the shared secret. The message digest is than XOR'ed against the symmetric key. All of the required
data is placed in ``out'' by ``ecc\_ encrypt\_ key()''. The hash chosen must produce a message digest at least as large
as the symmetric key you are trying to share.
There are also functions to sign and verify the hash of a message.
2003-03-02 19:59:24 -05:00
\begin { verbatim}
int ecc_ sign_ hash(const unsigned char *in, unsigned long inlen,
unsigned char *out, unsigned long *outlen,
prng_ state *prng, int wprng, ecc_ key *key);
int ecc_ verify_ hash(const unsigned char *sig, const unsigned char *hash,
unsigned long inlen, int *stat,
ecc_ key *key);
\end { verbatim}
2003-03-02 20:01:40 -05:00
The ``ecc\_ sign\_ hash'' function signs the message hash in ``in'' of length ``inlen'' and forms a ECC packet in ``out''.
The ``ecc\_ verify\_ hash'' function verifies the ECC signature in ``sig'' against the hash in ``hash''. It sets ``stat''
to non-zero if the signature passes or zero if it fails.
2003-03-02 20:01:00 -05:00
\section { ECC Keysizes}
With ECC if you try and sign a hash that is bigger than your ECC key you can run into problems. The math will still work
and in effect the signature will still work. With ECC keys the strength of the signature is limited by the size of
the hash or the size of they key, whichever is smaller. For example, if you sign with SHA256 and a ECC-160 key in effect
you have 160-bits of security (e.g. as if you signed with SHA-1).
The library will not warn you if you make this mistake so it is important to check yourself before using the
signatures.
2003-03-02 19:59:24 -05:00
\chapter { Public Keyrings}
\section { Introduction}
In order to simplify the usage of the public key algorithms a set of keyring routines have been developed. They let the
developer manage asymmetric keys by providing load, save, export, import routines as well as encrypt, decrypt, sign, verify
routines in a unified API. That is all three types of PK systems can be used within the same keyring with the same API.
To define types of keys there are four enumerations used globaly:
\begin { verbatim}
enum {
NON_ KEY=0,
RSA_ KEY,
DH_ KEY,
ECC_ KEY
} ;
\end { verbatim}
To make use of the system the developer has to know how link-lists work. The main structure that the keyring routines use
is the ``pk\_ key'' defined as:
\begin { small}
\begin { verbatim}
typedef struct Pk_ key {
int key_ type, /* PUBLIC, PRIVATE, PRIVATE_ OPTIMIZED */
system; /* RSA, ECC or DH ? */
char name[MAXLEN], /* various info's about this key */
email[MAXLEN],
description[MAXLEN];
unsigned long ID; /* CRC32 of the name/email/description together */
_ pk_ key key;
struct Pk_ key *next; /* linked list chain */
} pk_ key;
\end { verbatim}
\end { small}
The list is chained via the ``next'' member and terminated with the node of the list that has ``system'' equal to
{ \bf NON\_ KEY} .
\section { The Keyring API}
To initialize a blank keyring the function ``kr\_ init()'' is used.
\begin { verbatim}
int kr_ init(pk_ key **pk);
\end { verbatim}
You pass it a pointer to a pointer of type ``pk\_ key'' where it will allocate ram for one node of the keyring and sets the
pointer.
Now instead of calling the PK specific ``make\_ key'' functions there is one function that can make all three types of keys.
\begin { verbatim}
int kr_ make_ key(pk_ key *pk, prng_ state *prng, int wprng,
int system, int keysize, const char *name,
const char *email, const char *description);
\end { verbatim}
The ``name'', ``email'' and ``description'' parameters are simply little pieces of information that you can tag along with a
key. They can each be either blank or any string less than 256 bytes. ``system'' is one of the enumeration elements, that
is { \bf RSA\_ KEY} , { \bf DH\_ KEY} or { \bf ECC\_ KEY} . ``keysize'' is the size of the key you desire which is regulated by
the individual systems, for example, RSA keys are limited in keysize from 128 to 512 bytes.
To find keys along a keyring there are two functions provided:
\begin { verbatim}
pk_ key *kr_ find(pk_ key *pk, unsigned long ID);
pk_ key *kr_ find_ name(pk_ key *pk, const char *name);
\end { verbatim}
The first searches by the 32-bit ID provided and the latter checks the name against the keyring. They both return a pointer
to the node in the ring of a match or { \bf NULL} if no match is found.
To export or import a single node of a keyring the two functions are provided:
\begin { verbatim}
int kr_ export(pk_ key *pk, unsigned long ID, int key_ type,
unsigned char *out, unsigned long *outlen);
int kr_ import(pk_ key *pk, const unsigned char *in);
\end { verbatim}
The export function exports the key with an ID provided and of a specific type much like the normal PK export routines. The
``key\_ type'' is one of { \bf PK\_ PUBLIC} or { \bf PK\_ PRIVATE} . In this function with RSA keys the type
{ \bf PK\_ PRIVATE\_ OPTIMIZED} is the same as the { \bf PK\_ PRIVATE} type. The import function will read in a packet and
add it to the keyring.
To load and save whole keyrings from disk:
\begin { verbatim}
int kr_ load(pk_ key **pk, FILE *in, symmetric_ CTR *ctr);
int kr_ save(pk_ key *pk, FILE *out, symmetric_ CTR *ctr);
\end { verbatim}
Both take file pointers to allow the user to pre-append data to the stream. The ``ctr'' parameter should be setup with
``ctr\_ start'' or set to NULL. This parameter lets the user encrypt the keyring as its written to disk, if it is set
to NULL the data is written without being encrypted. The load function assumes the list has not been initialized yet
and will reset the pointer given to it.
There are the four encrypt, decrypt, sign and verify functions as well
\begin { verbatim}
int kr_ encrypt_ key(pk_ key *pk, unsigned long ID,
const unsigned char *in, unsigned long inlen,
unsigned char *out, unsigned long *outlen,
prng_ state *prng, int wprng, int hash);
int kr_ decrypt_ key(pk_ key *pk, const unsigned char *in,
unsigned char *out, unsigned long *outlen);
\end { verbatim}
The kr\_ encrypt\_ key() routine is designed to encrypt a symmetric key with a specified users public key. The symmetric
key is then used with a block cipher to encode the message. The recipient can call kr\_ decrypt\_ key() to get the original
symmetric key back and decode the message. The hash specified must produce a message digest longer than symmetric key
provided.
\begin { verbatim}
int kr_ sign_ hash(pk_ key *pk, unsigned long ID,
const unsigned char *in, unsigned long inlen,
unsigned char *out, unsigned long *outlen,
prng_ state *prng, int wprng);
int kr_ verify_ hash(pk_ key *pk, const unsigned char *in,
const unsigned char *hash, unsigned long hashlen,
int *stat);
\end { verbatim}
Similar to the two previous these are used to sign a message digest or verify one. This requires hashing the message
first then passing the output in.
To delete keys and clear rings there are:
\begin { verbatim}
int kr_ del(pk_ key **_ pk, unsigned long ID);
int kr_ clear(pk_ key **pk);
\end { verbatim}
``kr\_ del'' will try to remove a key with a given ID from the ring and ``kr\_ clear'' will completely empty a list and free
the memory associated with it. Below is small example using the keyring API:
\begin { small}
\begin { verbatim}
#include <mycrypt.h>
int main(void)
{
pk_ key *kr;
unsigned char buf[4096], buf2[4096];
unsigned long len;
int errno;
/* make a new list */
if ((errno = kr_ init(& kr)) != CRYPT_ OK) {
printf("kr_ init: %s\n", error_to_string(errno));
exit(-1);
}
/* add a key to it */
register_ prng(& sprng_ desc);
if ((errno = kr_ make_ key(kr, NULL, find_ prng("sprng"), RSA_ KEY, 128,
"TomBot", "tomstdenis@yahoo.com", "test key")) == CRYPT_ OK) {
printf("kr_ make_ key: %s\n", error_to_string(errno));
exit(-1);
}
/* export the first key */
len = sizeof(buf);
if ((errno = kr_ export(kr, kr->ID, PK_ PRIVATE, buf, & len)) != CRYPT_ OK) {
printf("kr_ export: %s\n", error_to_string(errno));
exit(-1);
}
/* ... */
}
\end { verbatim}
\end { small}
\chapter { $ GF ( 2 ^ w ) $ Math Routines}
The library provides a set of polynomial-basis $ GF ( 2 ^ w ) $ routines to help facilitate algorithms such as ECC over such
fields. Note that the current implementation of ECC in the library is strictly over the integers only. The routines
are simple enough to use for other purposes outside of ECC.
At the heart of all of the GF routines is the data type ``gf\_ int'. It is simply a type definition for an array of
$ L $ 32-bit words. You can configure the maximum size $ L $ of the ``gf\_ int'' type by opening the file ``mycrypt.h'' and
changing ``LSIZE''. Note that if you set it to $ n $ then you can only multiply upto two $ n \over 2 $ bit polynomials without
an overflow. The type ``gf\_ intp'' is associated with a pointer to an ``unsigned long'' as required in the algorithms.
There are no initialization routines for ``gf\_ int'' variables and you can simply use them after declaration. There are five
low level functions:
\index { gf\_ copy()} \index { gf\_ zero()} \index { gf\_ iszero()} \index { gf\_ isone()}
\index { gf\_ deg()}
\begin { verbatim}
void gf_ copy(gf_ intp a, gf_ intp b);
void gf_ zero(gf_ intp a);
int gf_ iszero(gf_ intp a);
int gf_ isone(gf_ intp a);
int gf_ deg(gf_ intp a);
\end { verbatim}
There are all fairly self-explanatory. ``gf\_ copy(a, b)'' copies the contents of ``a'' into ``b''. ``gf\_ zero()'' simply
zeroes the entire polynomial. ``gf\_ iszero()'' tests to see if the polynomial is all zero and ``gf\_ isone()'' tests to see
if the polynomial is equal to the multiplicative identity. ``gf\_ deg()'' returns the degree of the polynomial or $ - 1 $ if its
a zero polynomial.
There are five core math routines as well:
\index { gf\_ shl()} \index { gf\_ shr()} \index { gf\_ add()} \index { gf\_ mul()} \index { gf\_ div()}
\begin { verbatim}
void gf_ shl(gf_ intp a, gf_ intp b);
void gf_ shr(gf_ intp a, gf_ intp b);
void gf_ add(gf_ intp a, gf_ intp b, gf_ intp c);
void gf_ mul(gf_ intp a, gf_ intp b, gf_ intp c);
void gf_ div(gf_ intp a, gf_ intp b, gf_ intp q, gf_ intp r);
\end { verbatim}
Which are all fairly obvious. ``gf\_ shl(a,b)'' multiplies the polynomial ``a'' by $ x $ and stores it in ``b''.
``gf\_ shl(a,b)'' divides the polynomial ``a'' by $ x $ and stores it in ``b''. ``gf\_ add(a,b,c)'' adds the polynomial
``a'' to ``b'' and stores the sum in ``c''. Similarly for ``gf\_ mul(a,b,c)''. The ``gf\_ div(a,b,q,r)'' function divides
``a'' by ``b'' and stores the quotient in ``q'' and the remainder in ``r''.
There are six number theoretic functions as well:
\index { gf\_ mod()} \index { gf\_ mulmod()} \index { gf\_ invmod()} \index { gf\_ gcd()} \index { gf\_ is\_ prime()}
\index { gf\_ sqrt()}
\begin { verbatim}
void gf_ mod(gf_ intp a, gf_ intp m, gf_ intp b);
void gf_ mulmod(gf_ intp a, gf_ intp b, gf_ intp m, gf_ intp c);
void gf_ invmod(gf_ intp A, gf_ intp M, gf_ intp B);
void gf_ sqrt(gf_ intp a, gf_ intp m, gf_ intp b);
void gf_ gcd(gf_ intp A, gf_ intp B, gf_ intp c);
int gf_ is_ prime(gf_ intp a);
\end { verbatim}
Which all work similarly except for ``gf\_ mulmod(a,b,m,c)'' which computes $ c = ab \mbox { } ( \mbox { mod } m ) $ . The
``gf\_ is\_ prime()'' function returns one if the polynomial is primitive, otherwise it returns zero.
Finally to read/store a ``gf\_ int'' in a binary string use:
\index { gf\_ size()} \index { gf\_ toraw()} \index { gf\_ readraw()}
\begin { verbatim}
int gf_ size(gf_ intp a);
void gf_ toraw(gf_ intp a, unsigned char *dst);
void gf_ readraw(gf_ intp a, unsigned char *str, int len);
\end { verbatim}
Where ``gf\_ size()'' returns the size in bytes required for the data. ``gf\_ toraw(a,b)'' stores the polynomial in ``b''
in binary format (endian neutral). ``gf\_ readraw(a,b,c)'' reads the binary string in ``b'' back. Note that the length
you pass it must be the same as returned by ``gf\_ size()'' or it will not load correctly.
\chapter { Miscellaneous}
\section { Base64 Encoding and Decoding}
The library provides functions to encode and decode a RFC1521 base64 coding scheme. This means that it can decode what it
encodes but the format used does not comply to any known standard. The characters used in the mappings are:
\begin { verbatim}
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/
\end { verbatim}
Those characters should are supported in virtually any 7-bit ASCII system which means they can be used for transport over
common e-mail, usenet and HTTP mediums. The format of an encoded stream is just a literal sequence of ASCII characters
where a group of four represent 24-bits of input. The first four chars of the encoders output is the length of the
original input. After the first four characters is the rest of the message.
Often it is desirable to line wrap the output to fit nicely in an e-mail or usenet posting. The decoder allows you to
put any character (that is not in the above sequence) in between any character of the encoders output. You may not however,
break up the first four characters.
To encode a binary string in base64 call:
\index { base64\_ encode()} \index { base64\_ decode()}
\begin { verbatim}
int base64_ encode(const unsigned char *in, unsigned long len,
unsigned char *out, unsigned long *outlen);
\end { verbatim}
Where ``in'' is the binary string and ``out'' is where the ASCII output is placed. You must set the value of ``outlen'' prior
to calling this function and it sets the length of the base64 output in ``outlen'' when it is done. To decode a base64
string call:
\begin { verbatim}
int base64_ decode(const unsigned char *in, unsigned long len,
unsigned char *out, unsigned long *outlen);
\end { verbatim}
\section { The Multiple Precision Integer Library (MPI)}
The library comes with a copy of Michael Fromberger's\footnote { Michael J. Fromberger, sting@linguist.Thayer.dartmouth.edu} multiple
precision integer library MPI. MPI is a trivial to use ANSI C compatible large integer library. It is free for all uses and
is distributed freely.
At the heart of all MPI functions is the data type ``mp\_ int'' (defined in mpi.h). This data type is what will hold all large
integers. In order to use an mp\_ int one must initialize it first, for example:
\begin { verbatim}
#include <mycrypt.h> /* mycrypt.h includes mpi.h automatically */
int main(void)
{
mp_ int bignum;
/* initialize it */
mp_ init(& bignum);
return 0;
}
\end { verbatim}
If you are unfamiliar with the syntax of C the \& symbol is used to pass the address of ``bignum'' to the function. All
MPI functions require the address of the parameters. To free the memory of a mp\_ int use (for example):
\begin { verbatim}
mp_ clear(& bignum);
\end { verbatim}
All MPI functions have the basic form of one of the following:
\begin { verbatim}
mp_ XXX(mp_ int *a);
mp_ XXX(mp_ int *a, mp_ int *b, mp_ int *c);
mp_ XXX(mp_ int *a, mp_ int *b, mp_ int *c, mp_ int *d);
\end { verbatim}
Where they perform some operation and store the result in the mp\_ int variable passed on the far right. For example, to
compute $ c = a + b \mbox { } ( \mbox { mod } m ) $ you would call:
\begin { verbatim}
mp_ addmod(& a, & b, & m, & c);
\end { verbatim}
The simplest way to get a complete listing of all MPI functions is to open ``mpi.h'' and look. They're all fairly
well documented.
\subsection { Binary Forms of ``mp\_ int'' Variables}
Often it is required to store a ``mp\_ int'' in binary form for transport (e.g. exporting a key, packet encryption, etc.).
MPI includes two functions to help when exporting numbers:
\begin { verbatim}
int mp_ raw_ size(mp_ int *num);
mp_ toraw(& num, buf);
\end { verbatim}
The former function gives the size in bytes of the raw format and the latter function actually stores the raw data. All
``mp\_ int'' numbers are stored in big endian form (like PKCS demands) with the first byte being the sign of the number. The
``rsa\_ exptmod()'' function differs slightly since it will take the input in the form exactly as PKCS demands (without the
leading sign byte). All other functions include the sign byte (since its much simpler just to include it). The sign byte
must be zero for positive numbers and non-zero for negative numbers. For example,
the sequence:
\begin { verbatim}
00 FF 30 04
\end { verbatim}
Represents the integer $ 255 \cdot 256 ^ 2 + 48 \cdot 256 ^ 1 + 4 \cdot 256 ^ 0 $ or 16,723,972.
To read a binary string back into a ``mp\_ int'' call:
\begin { verbatim}
mp_ read_ raw(mp_ int *num, unsigned char *str, int len);
\end { verbatim}
Where ``num'' is where to store it, ``str'' is the binary string (including the leading sign byte) and ``len'' is the
length of the binary string.
\subsection { Primality Testing}
\index { Primality Testing}
The library includes primality testing and random prime functions as well. The primality tester will perform the test in
2003-03-02 20:01:00 -05:00
two phases. First it will perform trial division by the first few primes. Second it will perform eight rounds of the
2003-03-02 19:59:24 -05:00
Rabin-Miller primality testing algorithm. If the candidate passes both phases it is declared prime otherwise it is declared
composite. No prime number will fail the two phases but composites can. Each round of the Rabin-Miller algorithm reduces
the probability of a pseudo-prime by $ 1 \over 4 $ therefore after sixteen rounds the probability is no more than
2003-03-02 20:01:00 -05:00
$ \left ( { 1 \over 4 } \right ) ^ { 8 } = 2 ^ { - 16 } $ . In practice the probability of error is in fact much lower than that.
When making random primes the trial division step is in fact an optimized implementation of ``Implementation of Fast RSA Key Generation on Smart Cards''\footnote { Chenghuai Lu, Andre L. M. dos Santos and Francisco R. Pimentel} .
In essence a table of machine-word sized residues are kept of a candidate modulo a set of primes. When the candiate
is rejected and ultimately incremented to test the next number the residues are updated without using multi-word precision
math operations. As a result the routine can scan ahead to the next number required for testing with very little work
involved.
In the event that a composite did make it through it would most likely cause the the algorithm trying to use it to fail. For
instance, in RSA two primes $ p $ and $ q $ are required. The order of the multiplicative sub-group (modulo $ pq $ ) is given
as $ \phi ( pq ) $ or $ ( p - 1 ) ( q - 1 ) $ . The decryption exponent $ d $ is found as $ de \equiv 1 \mbox { } ( \mbox { mod } \phi ( pq ) ) $ . If either $ p $ or $ q $ is composite the value of $ d $ will be incorrect and the user
2003-03-02 19:59:24 -05:00
will not be able to sign or decrypt messages at all. Suppose $ p $ was prime and $ q $ was composite this is just a variation of
the multi-prime RSA. Suppose $ q = rs $ for two primes $ r $ and $ s $ then $ \phi ( pq ) = ( p - 1 ) ( r - 1 ) ( s - 1 ) $ which clearly is
not equal to $ ( p - 1 ) ( rs - 1 ) $ .
These are not technically part of the MPI
library\footnote { As written by Michael Fromberger} but this is the best place to document them. To test if a ``mp\_ int'' is
prime call:
\begin { verbatim}
int is_ prime(mp_ int *N, int *result);
\end { verbatim}
This puts a one in ``result'' if the number is probably prime, otherwise it places a zero in it. It is assumed that if
it returns an error that the value in ``result'' is undefined. To make
a random prime call:
\begin { verbatim}
int rand_ prime(mp_ int *N, unsigned long len, prng_ state *prng, int wprng);
\end { verbatim}
2003-03-02 20:01:00 -05:00
Where ``len'' is the size of the prime in bytes ($ 2 \le len \le 256 $ ). You can set ``len'' to the negative size you want
2003-03-02 19:59:24 -05:00
to get a prime of the form $ p \equiv 3 \mbox { } ( \mbox { mod } 4 ) $ . So if you want a 1024-bit prime of this sort pass
``len = -128'' to the function. Upon success it will return { \bf CRYPT\_ OK} and ``N'' will contain an integer which
is very likely prime.
\chapter { Programming Guidelines}
\section { Secure Pseudo Random Number Generators}
Probably the singal most vulnerable point of any cryptosystem is the PRNG. Without one generating and protecting secrets
would be impossible. The requirement that one be setup correctly is vitally important and to address this point the library
does provide two RNG sources that will address the largest amount of end users as possible. The ``sprng'' PRNG provided
provides and easy to access source of entropy for any application on a *NIX or Windows computer.
However, when the end user is not on one of these platforms the application developer must address the issue of finding
entropy. This manual is not designed to be a text on cryptography. I would just like to highlight that when you design
a cryptosystem make sure the first problem you solve is getting a fresh source of entropy.
\section { Preventing Trivial Errors}
Two simple ways to prevent trivial errors is to prevent overflows and to check the return values. All of the functions
which output variable length strings will require you to pass the length of the destination. If the size of your output
buffer is smaller than the output it will report an error. Therefore, make sure the size you pass is correct!
Also virtually all of the functions return an error code or { \bf CRYPT\_ OK} . You should detect all errors as simple
typos or such can cause algorithms to fail to work as desired.
\section { Registering Your Algorithms}
To avoid linking and other runtime errors it is important to register the ciphers, hashes and PRNGs you intend to use
before you try to use them. This includes any function which would use an algorithm indirectly through a descriptor table.
A neat bonus to the registry system is that you can add external algorithms that are not part of the library without
having to hack the library. For example, suppose you have a hardware specific PRNG on your system. You could easily
write the few functions required plus a descriptor. After registering your PRNG all of the library functions that
need a PRNG can instantly take advantage of it.
\section { Key Sizes}
\subsection { Symmetric Ciphers}
For symmetric ciphers use as large as of a key as possible. For the most part ``bits are cheap'' so using a 256-bit key
is not a hard thing todo.
\subsection { Assymetric Ciphers}
The following chart gives the work factor for solving a DH/RSA public key using the NFS. The work factor for a key of order
$ n $ is estimated to be
\begin { equation}
e^ { 1.923 \cdot ln(n)^ { 1 \over 3} \cdot ln(ln(n))^ { 2 \over 3} }
\end { equation}
Note that $ n $ is not the bit-length but the magnitude. For example, for a 1024-bit key $ n = 2 ^ { 1024 } $ . The work required
is:
\begin { center}
\begin { tabular} { |c|c|}
\hline RSA/DH Key Size (bits) & Work Factor ($ log _ 2 $ ) \\
\hline 512 & 63.92 \\
\hline 768 & 76.50 \\
\hline 1024 & 86.76 \\
\hline 1536 & 103.37 \\
\hline 2048 & 116.88 \\
\hline 2560 & 128.47 \\
\hline 3072 & 138.73 \\
\hline 4096 & 156.49 \\
\hline
\end { tabular}
\end { center}
The work factor for ECC keys is much higher since the best attack is still fully exponentional. Given a key of magnitude
$ n $ it requires $ \sqrt n $ work. The following table sumarizes the work required:
\begin { center}
\begin { tabular} { |c|c|}
\hline ECC Key Size (bits) & Work Factor ($ log _ 2 $ ) \\
\hline 160 & 80 \\
\hline 192 & 96 \\
\hline 224 & 112 \\
\hline 256 & 128 \\
\hline 384 & 192 \\
\hline 521 & 260.5 \\
\hline
\end { tabular}
\end { center}
Using the above tables the following suggestions for key sizes seems appropriate:
\begin { center}
\begin { tabular} { |c|c|c|}
\hline Security Goal & RSA/DH Key Size (bits) & ECC Key Size (bits) \\
\hline Short term (less than a year) & 1024 & 160 \\
\hline Short term (less than five years) & 1536 & 192 \\
\hline Long Term (less than ten years) & 2560 & 256 \\
\hline
\end { tabular}
\end { center}
\section { Thread Safety}
The library is not thread safe but several simple precautions can be taken to avoid any problems. The registry functions
such as register\_ cipher() are not thread safe no matter what you do. Its best to call them from your programs initializtion
code before threads are initiated.
The rest of the code uses state variables you must pass it such as hash\_ state, hmac\_ state, etc. This means that if each
thread has its own state variables then they will not affect each other. This is fairly simple with symmetric ciphers
and hashes. However, the keyring and PRNG support is something the threads will want to share. The simplest workaround
is create semaphores or mutexes around calls to those functions.
Since C does not have standard semaphores this support is not native to Libtomcrypt. Even a C based semaphore is not entire
possible as some compilers may ignore the ``volatile'' keyword or have multiple processors. Provide your host application
is modular enough putting the locks in the right place should not bloat the code significantly and will solve all thread
safety issues within the library.
\chapter { Configuring the Library}
\section { Introduction}
The library is fairly flexible about how it can be built, used and generally distributed. Additions are being made with
each new release that will make the library even more flexible. Most options are placed in the makefile and others
are in ``mycrypt\_ cfg.h''. All are used when the library is built from scratch.
For GCC platforms the file ``makefile'' is the makefile to be used. On MSVC platforms ``makefile.vc'' and on PS2 platforms
``makefile.ps2''.
\section { mycrypt\_ cfg.h}
The file ``mycrypt\_ cfg.h'' is what lets you control what functionality you want to remove from the library. By default,
everything the library has to offer it built.
\subsubsection { ARGTYPE}
This lets you control how the \_ ARGCHK macro will behave. The macro is used to check pointers inside the functions against
NULL. There are three settings for ARGTYPE. When set to 0 it will have the default behaviour of printing a message to
stderr and raising a SIGABRT signal. This is provided so all platforms that use libtomcrypt can have an error that functions
similarly. When set to 1 it will simply pass on to the assert() macro. When set to 2 it will resolve to a empty macro
and no error checking will be performed.
\subsubsection { Endianess}
There are five macros related to endianess issues. For little endian platforms define, ENDIAN\_ LITTLE. For big endian
platforms define ENDIAN\_ BIG. Similarly when the default word size of an ``unsigned long'' is 32-bits define ENDIAN\_ 32BITWORD
or define ENDIAN\_ 64BITWORD when its 64-bits. If you do not define any of them the library will automatically use ENDIAN\_ NEUTRAL
which will work on all platforms. Currently the system will automatically detect GCC or MSVC on a windows platform as well
as GCC on a PS2 platform.
\section { The makefile}
There are also options you can specify from the makefiles themselves.
\subsubsection { X memory routines}
The makefiles must define three macros denoted as XMALLOC, XCALLOC and XFREE which resolve to the name of the respective
functions. This lets you substitute in your own memory routines. If you substitute in your own functions they must behave
like the standard C library functions in terms of what they expect as input and output. By default the library uses the
standard C routines.
\subsubsection { X clock routines}
The rng\_ get\_ bytes() function can call a function that requires the clock() function. These macros let you override
the default clock() used with a replacement. By default the standard C library clock() function is used.
\subsubsection { NO\_ FILE}
During the build if NO\_ FILE is defined then any function in the library that uses file I/O will not call the file I/O
functions and instead simply return CRYPT\_ ERROR. This should help resolve any linker errors stemming from a lack of
file I/O on embedded platforms.
\subsubsection { CLEAN\_ STACK}
When this functions is defined the functions that store key material on the stack will clean up afterwards. Assumes that
you have no memory paging with the stack.
\subsubsection { Symmetric Ciphers, One-way Hashes, PRNGS and Public Key Functions}
There are a plethora of macros for the ciphers, hashes, PRNGs and public key functions which are fairly self-explanatory.
When they are defined the functionality is included otherwise it is not. There are some dependency issues which are
noted in the file. For instance, Yarrow requires CTR chaining mode, a block cipher and a hash function.
\subsubsection { TWOFISH\_ SMALL and TWOFISH\_ TABLES}
Twofish is a 128-bit symmetric block cipher that is provided within the library. The cipher itself is flexible enough
to allow some tradeoffs in the implementation. When TWOFISH\_ SMALL is defined the scheduled symmetric key for Twofish
requires only 200 bytes of memory. This is achieved by not pre-computing the substitution boxes. Having this
defined will also greatly slow down the cipher. When this macro is not defined Twofish will pre-compute the
tables at a cost of 4KB of memory. The cipher will be much faster as a result.
When TWOFISH\_ TABLES is defined the cipher will use pre-computed (and fixed in code) tables required to work. This is
useful when TWOFISH\_ SMALL is defined as the table values are computed on the fly. When this is defined the code size
will increase by approximately 500 bytes. If this is defined but TWOFISH\_ SMALL is not the cipher will still work but
it will not speed up the encryption or decryption functions.
2003-03-02 20:01:40 -05:00
\subsubsection { SMALL\_ CODE}
When this is defined some of the code such as the Rijndael and SAFER+ ciphers are replaced with smaller code variants.
These variants are slower but can save quite a bit of code space.
2003-03-02 19:59:24 -05:00
\end { document}