This document describes the nettle low-level cryptographic library. You can use the library directly from your C-programs, or (recommended) write or use an object-oriented wrapper for your favourite language or application.
This manual coresponds to version 1.0 of the library.
Nettle is a cryptographic library that is designed to fit easily in more or less any context: In crypto toolkits for object-oriented languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space. In most contexts, you need more than the basic cryptographic algorithms, you also need some way to keep track of available algorithms, their properties and variants. You often have some algorithm selection process, often dictated by a protocol you want to implement.
And as the requirements of applications differ in subtle and not so subtle ways, an API that fits one application well can be a pain to use in a different context. And that is why there are so many different cryptographic libraries around.
Nettle tries to avoid this problem by doing one thing, the low-level crypto stuff, and providing a simple but general interface to it. In particular, Nettle doesn't do algorithm selection. It doesn't do memory allocation. It doesn't do any I/O.
The idea is that one can build several application and context specific interfaces on top of Nettle, and share the code, testcases, benchmarks, documentation, etc. For this first version, the only application using Nettle is LSH, and it uses an object-oriented abstraction on top of the library.
This manual explains how to use the Nettle library. It also tries to provide some background on the cryptography, and advice on how to best put it to use.
Nettle is distributed under the GNU General Public License (see the file COPYING for details). However, several of the individual files are dual licensed under less restrictive licenses like the GNU Lesser General Public License, or are in the public domain. Consult the headers in each file for details.
It is conceivable that future versions will use the LGPL rather than the GPL, mail me if you have questions or suggestions.
A list of the supported algorithms, their origins and licenses:
For each supported algorithm, there is an include file that defines a context struct, a few constants, and declares functions for operating on the context. The context struct encapsulates all information needed by the algorithm, and it can be copied or moved in memory with no unexpected effects.
For consistency, functions for different algorithms are very similar, but there are some differences, for instance reflecting if the key setup or encryption function differ for encryption and encryption, and whether or not key setup can fail. There are also differences between algorithms that don't show in function prototypes, but which the application must nevertheless be aware of. There is no big difference between the functions for stream ciphers and for block ciphers, although they should be used quite differently by the application.
If your application uses more than one algorithm, you should probably create an interface that is tailor-made for your needs, and then write a few lines of glue code on top of Nettle.
By convention, for an algorithm named foo
, the struct tag for the
context struct is foo_ctx
, constants and functions uses prefixes
like FOO_BLOCK_SIZE
(a constant) and foo_set_key
(a
function).
In all functions, strings are represented with an explicit length, of
type unsigned
, and a pointer of type uint8_t *
or
const uint8_t *
. For functions that transform one string to
another, the argument order is length, destination pointer and source
pointer. Source and destination areas are of the same length. Source and
destination may be the same, so that you can process strings in place,
but they must not overlap in any other way.
A simple example program that reads a file from standard in and writes its SHA1 checksum on stdout should give the flavour of Nettle.
/* FIXME: This code is untested. */ #include <stdio.h> #include <stdlib.h> #include <nettle/sha1.h> #define BUF_SIZE 1000 static void display_hex(unsigned length, uint8_t *data) { static const char digits[16] = "0123456789abcdef"; unsigned i; for (i = 0; i<length; i++) { uint8_t byte = data[i]; printf("%c%c ", digits[(byte / 16) & 0xf], digits[byte & 0xf]); } } int main(int argc, char **argv) { struct sha1_ctx ctx; uint8_t buffer[BUF_SIZE]; uint8_t digest[SHA1_DIGEST_SIZE]; sha1_init(&ctx); for (;;) { int done = fread(buffer, 1, sizeof(buffer), stdin); if (done <= 0) break; sha1_update(&ctx, done, buf); } if (ferror(stdin)) return EXIT_FAILURE; sha1_finish(&ctx); sha1_digest(&ctx, SHA1_DIGEST_SIZE, digest); display_hex(SHA1_DIGEST_SIZE, digest); return EXIT_SUCCESS; }
This chapter describes all the Nettle functions, grouped by family.
A cryptographic hash function is a function that takes variable
size strings, and maps them to strings of fixed, short, length. There
are naturally lots of collisions, as there are more possible 1MB files
than 20 byte strings. But the function is constructed such that is hard
to find the collisions. More precisely, a cryptographic hash function
H
should have the following properties:
H(x)
it is hard to find a string x
that hashes to that value.
x
and y
, such
that H(x)
= H(y)
.
Hash functions are useful as building blocks for digital signatures, message authentication codes, pseudo random generators, association of unique id:s to documents, and many other things.
MD5 is a message digest function constructed by Ronald Rivest, and
described in RFC 1321. It outputs message digests of 128 bits, or
16 octets. Nettle defines MD5 in <nettle/md5.h>
.
struct md5_ctx | Context struct |
MD5_DIGEST_SIZE | Constant |
The size of an MD5 digest, i.e. 16. |
MD5_DATA_SIZE | Constant |
The internal block size of MD5. Useful for some special constructions, in particular HMAC-MD5. |
void md5_init (struct md5_ctx *ctx) | Function |
Initialize the MD5 state. |
void md5_update (struct md5_ctx *ctx, unsigned length, const uint8_t *data) | Function |
Hash some more data. |
void md5_final (struct md5_ctx *ctx) | Function |
Performs final processing that is needed after all input data has been
processed with md5_update .
|
void md5_digest (struct md5_ctx *ctx, unsigned length, uint8_t *digest) | Function |
Extracts the message digest, writing it to digest. length
may be smaller than MD5_DIGEST_SIZE , in which case only the first
length octets of the digest are written.
This functions doesn't change the state in any way. |
The normal way to use MD5 is to call the functions in order: First
md5_init
, then md5_update
zero or more times, then
md5_final
, and at last md5_digest
zero or more times.
To start over, you can call md5_init
at any time.
SHA1 is a hash function specified by NIST (The U.S. National Institute
for Standards and Technology. It outputs hash values of 160 bits, or 20
octets. Nettle defines SHA1 in <nettle/sha1.h>
.
The functions are analogous to the MD5 ones.
struct sha1_ctx | Context struct |
SHA1_DIGEST_SIZE | Constant |
The size of an SHA1 digest, i.e. 20. |
SHA1_DATA_SIZE | Constant |
The internal block size of SHA1. Useful for some special constructions, in particular HMAC-SHA1. |
void sha1_init (struct sha1_ctx *ctx) | Function |
Initialize the SHA1 state. |
void sha1_update (struct sha1_ctx *ctx, unsigned length, const uint8_t *data) | Function |
Hash some more data. |
void sha1_final (struct sha1_ctx *ctx) | Function |
Performs final processing that is needed after all input data has been
processed with sha1_update .
|
void sha1_digest (struct sha1_ctx *ctx, unsigned length, uint8_t *digest) | Function |
Extracts the digest, writing it to digest. length may be smaller than
SHA1_DIGEST_SIZE , in which case only the first length octets
of the digest are written.
This functions doesn't change the state in any way. |
A cipher is a function that takes a message or plaintext and a secret key and transforms it to a ciphertext. Given only the ciphertext, but not the key, it should be hard to find the cleartext. Given matching pairs of plaintext and ciphertext, it should be hard to find the key.
There are two main classes of ciphers: Block ciphers and stream ciphers.
A block cipher can process data only in fixed size chunks, called blocks. Typical block sizes are 8 or 16 octets. To encrypt arbitrary messages, you usually have to pad it to an integral number of blocks, split it into blocks, and then process each block. The simplest way is to process one block at a time, independent of each other. That mode of operation is called ECB, Electronic Code Book mode. However, using ECB is usually a bad idea. For a start, plaintext blocks that are equal are transformed to ciphertext blocks that are equal; that leaks information about the plaintext. Usually you should apply the cipher is some feedback mode, CBC (Cipher Block Chaining) being one of the most popular. See Cipher Block Chaining, for information on how to apply CBC with Nettle.
A stream cipher can be used for messages of arbitrary length; a typical stream cipher is a keyed pseudorandom generator. To encrypt a plaintext message of n octets, you key the generator, generate n octets of pseudorandom data, and XOR it with the plaintext. To decrypt, regenerate the same stream using the key, XOR it to the ciphertext, and the plaintext is recovered.
Caution: The first rule for this kind of cipher is the same as for a One Time Pad: never ever use the same key twice.
A common misconception is that encryption, by itself, implies authentication. Say that you and a friend share a secret key, and you receive an encrypted message. You apply the key, and get a cleartext message that makes sense to you. Can you then be sure that it really was your friend that wrote the message you're reading? The anser is no. For example, if you were using a block cipher in ECB mode, an attacker may pick up the message on its way, and reorder, delete or repeat some of the blocks. Even if the attacker can't decrypt the message, he can change it so that you are not reading the same message as your friend wrote. If you are using a block cipher in CBC mode rather than ECB, or are using a stream cipher, the possibilities for this sort of attack are different, but the attacker can still make predictable changes to the message.
It is recommended to always use an authentication mechanism in addition to encrypting the messages. Popular choices are Message Authetication Codes like HMAC-SHA1, or digital signatures.
Some ciphers have so called "weak keys", keys that results in
undesirable structure after the key setup processing, and should be
avoided. In Nettle, the presence of weak keys for a cipher mean that the
key setup function can fail, so you have to check its return value. In
addition, the context struct has a field status
, that is set to a
non-zero value if key setup fails. When possible, avoid algorithm that
have weak keys. There are several good ciphers that don't have any weak
keys.
To encrypt a message, you first initialize a cipher context for encryption or decryption with a particular key. You then use the context to process plaintext or ciphertext messages. The initialization is known as called key setup. With Nettle, it is recommended to use each context struct for only one direction, even if some of the ciphers use a single key setup function that can be used for both encryption and decryption.
AES is a quite new block cipher, specified by NIST as a replacement for the older DES standard. The standarad is the result of a competition between cipher designers. The winning design, also known as RIJNDAEL, was constructed by Joan Daemen and Vincent Rijnmen.
Like all the AES candidates, the winning design uses a block size of 128
bits, or 16 octets, and variable keysize, 128, 192 and 256 bits (16, 24
and 32 octets) being the allowed key sizes. It does not have any weak
keys. Nettle defines AES in <nettle/aes.h>
.
struct aes_ctx | Context struct |
AES_BLOCK_SIZE | Constant |
The AES blocksize, 16 |
AES_MIN_KEY_SIZE | Constant |
AES_MAX_KEY_SIZE | Constant |
AES_KEY_SIZE | Constant |
Default AES key size, 32 |
void aes_set_key (struct aes_ctx *ctx, unsigned length, const uint8_t *key) | Function |
Initialize the cipher. The same function is used for both encryption and decryption. |
void aes_encrypt (struct aes_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Encryption function. length must be an integral multiple of the
block size. If it is more than one block, the data is processed in ECB
mode. src and dst may be equal, but they must not overlap
in any other way.
|
void aes_decrypt (struct aes_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Analogous to aes_encrypt
|
ARCFOUR is a stream cipher, also known under the trade marked name RC4, and it is one of the fastest ciphers around. A problem is that the key setup of ARCFOUR is quite weak, you should never use keys with structure, keys that are ordinary passwords, or sequences of keys like "secret:1", "secret:2", ..... If you have keys that don't look like random bit strings, and you want to use ARCFOUR, always hash the key before feeding it to ARCFOUR. For example
/* A more robust key setup function for ARCFOUR */ void my_arcfour_set_key(struct arcfour_ctx *ctx, unsigned length, const uint8_t *key) { struct sha1_ctx hash; uint8_t digest[SHA1_DIGEST_SIZE]; sha1_init(&hash); sha1_update(&hash, length, key); sha1_final(&hash); sha1_digest(&hash, SHA1_DIGEST_SIZE, digest); arcfour_set_key(ctx, SHA1_DIGEST_SIZE, digest); }
Nettle defines ARCFOUR in <nettle/arcfour.h>
.
struct arcfour_ctx | Context struct |
ARCFOUR_MIN_KEY_SIZE | Constant |
Minimum key size, 1 |
ARCFOUR_MAX_KEY_SIZE | Constant |
Maximum key size, 256 |
ARCFOUR_KEY_SIZE | Constant |
Default ARCFOUR key size, 16 |
void arcfour_set_key (struct arcfour_ctx *ctx, unsigned length, const uint8_t *key) | Function |
Initialize the cipher. The same function is used for both encryption and decryption. |
void arcfour_crypt (struct arcfour_ctx *ctx, unsigned length, const uint8_t *key) | Function |
Encrypt some data. The same function is used for both encryption and
decryption. Unlike the block ciphers, this function modifies the
context, so you can split the data into arbitrary chunks and encrypt
them one after another. The result is the same as if you had called
arcfour_crypt only once with all the data.
|
CAST-128 is a block cipher, specified in RFC 2144. It uses a 64
bit (8 octets) block size, and a variable key size of up to 128 bits.
Nettle defines cast128 in <nettle/cast128.h>
.
struct cast128_ctx | Context struct |
CAST128_BLOCK_SIZE | Constant |
The CAST128 blocksize, 8 |
CAST128_MIN_KEY_SIZE | Constant |
Minumim CAST128 key size, 5 |
CAST128_MAX_KEY_SIZE | Constant |
Maximum CAST128 key size, 16 |
CAST128_KEY_SIZE | Constant |
Default CAST128 key size, 16 |
void cast128_set_key (struct cast128_ctx *ctx, unsigned length, const uint8_t *key) | Function |
Initialize the cipher. The same function is used for both encryption and decryption. |
void cast128_encrypt (struct cast128_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Encryption function. length must be an integral multiple of the
block size. If it is more than one block, the data is processed in ECB
mode. src and dst may be equal, but they must not overlap
in any other way.
|
void cast128_decrypt (struct cast128_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Analogous to cast128_encrypt
|
BLOWFISH is a block cipher designed by Bruce Schneier. It uses a block
size of 64 bits (8 octets), and a variable key size, up to 448 bits. It
has some weak keys. Nettle defines BLOWFISH in <nettle/blowfish.h>
.
struct blowfish_ctx | Context struct |
BLOWFISH_BLOCK_SIZE | Constant |
The BLOWFISH blocksize, 8 |
BLOWFISH_MIN_KEY_SIZE | Constant |
Minimum BLOWFISH key size, 8 |
BLOWFISH_MAX_KEY_SIZE | Constant |
Maximum BLOWFISH key size, 56 |
BLOWFISH_KEY_SIZE | Constant |
Default BLOWFISH key size, 16 |
int blowfish_set_key (struct blowfish_ctx *ctx, unsigned length, const uint8_t *key) | Function |
Initialize the cipher. The same function is used for both encryption and
decryption. Returns 1 on success, and 0 if the key was weak. Calling
blowfish_encrypt or blowfish_decrypt with a weak key will
crash with an assert violation.
|
void blowfish_encrypt (struct blowfish_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Encryption function. length must be an integral multiple of the
block size. If it is more than one block, the data is processed in ECB
mode. src and dst may be equal, but they must not overlap
in any other way.
|
void blowfish_decrypt (struct blowfish_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Analogous to blowfish_encrypt
|
DES is the old Data Encryption Standard, specified by NIST. It uses a block size of 64 bits (8 octets), and a key size of 56 bits. However, the key bits are distributed over 8 octets, where the least significant bit of each octet is used for parity. A common way to use DES is to generate 8 random octets in some way, then set the least significant bit of each octet to get odd parity, and initialize DES with the resulting key.
The key size of DES is so small that keys can be found by brute force, using specialized hardware or lots of ordinary work stations in parallell. One shouldn't be using plain DES at all today, if one uses DES at all one should be using DES3 or "triple DES", see below.
DES also has some weak keys. Nettle defines DES in <nettle/des.h>
.
struct des_ctx | Context struct |
DES_BLOCK_SIZE | Constant |
The DES blocksize, 8 |
DES_KEY_SIZE | Constant |
DES key size, 8 |
int des_set_key (struct des_ctx *ctx, const uint8_t *key) | Function |
Initialize the cipher. The same function is used for both encryption and
decryption. Returns 1 on success, and 0 if the key was weak or had bad
parity. Calling des_encrypt or des_decrypt with a bad key
will crash with an assert violation.
|
void des_encrypt (struct des_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Encryption function. length must be an integral multiple of the
block size. If it is more than one block, the data is processed in ECB
mode. src and dst may be equal, but they must not overlap
in any other way.
|
void des_decrypt (struct des_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Analogous to des_encrypt
|
void des_fix_parity (unsigned length, uint8_t *dst, const uint8_t *src) | Function |
Adjusts the parity bits to match DES's requirements. You need this function if you have created a random-looking string by a key agreement protocol, and want to use it as a DES key. dst and src may be equal. |
The inadequate key size of DES has already been mentioned. One way to increase the key size is to pipe together several DES boxes with independent keys. It turns out that using two DES ciphers is not as secure as one might think, even if the key size of the combination is a respectable 112 bits.
The standard way to increase DES's key size is to use three DES boxes. The mode of operation is a little peculiar: the middle DES box is wired in the reverse direction. To encrypt a block with DES3, you encrypt it using the first 56 bits of the key, then decrypt it using the middle 56 bits of the key, and finally encrypt it again using the last 56 bits of the key. This is known as "ede" triple-DES, for "encrypt-decrypt-encrypt".
The "ede" construction provides some backward compatibility, as you get plain single DES simply by feeding the same key to all three boxes. That should help keeping down the gate count, and the price, of hardware circuits implementing both plain DES and DES3.
DES3 has a key size of 168 bits, but just like plain DES, useless parity bits are inserted, so that keys are represented as 24 octets (192 bits). As a 112 bit key is large enough to make brute force attacks impractical, some applications uses a "two-key" variant of triple-DES. In this mode, the same key bits are used for the first and the last DES box in the pipe, while the middle box is keyed independently. The two-key variant is believed to be secure, i.e. there are no known attacks significantly better than brute force.
Naturally, it's simple to implement triple-DES on top of Nettle's DES
functions. Nettle includes an inplementation of three-key "ede"
triple-DES, it is defined in the same place as plain DES,
<nettle/des.h>
.
struct des3_ctx | Context struct |
DES3_BLOCK_SIZE | Constant |
The DES3 blocksize is the same as DES_BLOCK_SIZE, 8 |
DES3_KEY_SIZE | Constant |
DES key size, 24 |
int des3_set_key (struct des3_ctx *ctx, const uint8_t *key) | Function |
Initialize the cipher. The same function is used for both encryption and
decryption. Returns 1 on success, and 0 if the key was weak or had bad
parity. Calling des_encrypt or des_decrypt with a bad key
will crash with an assert violation.
|
For random-looking strings, you can use des_fix_parity
to adjust
the parity bits before calling des3_set_key
.
void des3_encrypt (struct des3_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Encryption function. length must be an integral multiple of the
block size. If it is more than one block, the data is processed in ECB
mode. src and dst may be equal, but they must not overlap
in any other way.
|
void des3_decrypt (struct des3_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Analogous to des_encrypt
|
SERPENT is one of the AES finalists, designed by Ross Anderson, Eli
Biham and Lars Knudsen. Thus, the interface and properties are similar
to AES'. One pecularity is that it is quite pointless to use it with
anything but the maximum key size, smaller keys are just padded to
larger ones. Nettle defines SERPENT in <nettle/serpent.h>
.
struct serpent_ctx | Context struct |
SERPENT_BLOCK_SIZE | Constant |
The SERPENT blocksize, 16 |
SERPENT_MIN_KEY_SIZE | Constant |
Minumim SERPENT key size, 16 |
SERPENT_MAX_KEY_SIZE | Constant |
Maximum SERPENT key size, 32 |
SERPENT_KEY_SIZE | Constant |
Default SERPENT key size, 32 |
void serpent_set_key (struct serpent_ctx *ctx, unsigned length, const uint8_t *key) | Function |
Initialize the cipher. The same function is used for both encryption and decryption. |
void serpent_encrypt (struct serpent_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Encryption function. length must be an integral multiple of the
block size. If it is more than one block, the data is processed in ECB
mode. src and dst may be equal, but they must not overlap
in any other way.
|
void serpent_decrypt (struct serpent_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Analogous to serpent_encrypt
|
Another AES finalist, this one designed by Bruce Schneier and others.
Nettle defines it in <nettle/twofish.h>
.
struct twofish_ctx | Context struct |
TWOFISH_BLOCK_SIZE | Constant |
The TWOFISH blocksize, 16 |
TWOFISH_MIN_KEY_SIZE | Constant |
Minumim TWOFISH key size, 16 |
TWOFISH_MAX_KEY_SIZE | Constant |
Maximum TWOFISH key size, 32 |
TWOFISH_KEY_SIZE | Constant |
Default TWOFISH key size, 32 |
void twofish_set_key (struct twofish_ctx *ctx, unsigned length, const uint8_t *key) | Function |
Initialize the cipher. The same function is used for both encryption and decryption. |
void twofish_encrypt (struct twofish_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Encryption function. length must be an integral multiple of the
block size. If it is more than one block, the data is processed in ECB
mode. src and dst may be equal, but they must not overlap
in any other way.
|
void twofish_decrypt (struct twofish_ctx *ctx, unsigned length, const uint8_t *dst, uint8_t *src) | Function |
Analogous to twofish_encrypt
|
When using CBC mode, cleartext blocks are not encrypted independently of each other, like in Electronic Cook Book mode. Instead, when encrypting a block in CBC mode, the previous ciphertext block is XOR:ed with the cleartext before it is fed to the block cipher. When encrypting the first block, a random block called an IV, or Initialization Vector, is used as the "previous ciphertext block". The IV should be chosen randomly, but it need not be kept secret, and can even be transmitted in the clear together with the encrypted data.
In symbols, if E_k
is the encryption function of a blockcipher,
and IV
is the initialization vector, then n
cleartext blocks
M_1
,... M_n
are transformed into n
ciphertext blocks
C_1
,... C_n
as follows:
C_1 = E_k(IV XOR M_1) C_2 = E_k(C_1 XOR M_2) ... C_n = E_k(C_(n-1) XOR M_n)
Nettle includes a few utility functions for applying a block cipher in
Cipher Block Chaining (CBC) mode. The functions uses void *
to
pass cipher contexts around.
void cbc_encrypt (void *ctx, void (*f)(), unsigned block_size, uint8_t *iv, unsigned length, uint8_t *dst, const uint8_t *src) | Function |
void cbc_decrypt (void *ctx, void (*f)(), unsigned block_size, uint8_t *iv, unsigned length, uint8_t *dst, const uint8_t *src) | Function |
Applies the encryption or decryption function f in CBC mde. The function f is really typed as
and the |
There are also some macros to help use these functions correctly.
CBC_CTX (context_type, block_size) | Macro |
Expands into
{ context_type ctx; uint8_t iv[block_size]; } |
It can be used to define a CBC context struct, either directly,
struct CBC_CTX(struct aes_ctx, AES_BLOCK_SIZE) ctx;
or to give it a struct tag,
struct aes_cbc_ctx CBC_CTX (struct aes_ctx, AES_BLOCK_SIZE);
CBC_SET_IV (ctx, iv) | Macro |
First argument is a pointer to a context struct as defined by CBC_CTX ,
and the second is a pointer to an Initialization Vector (IV) that is
copied into that context.
|
CBC_ENCRYPT (ctx, f, length, dst, src) | Macro |
CBC_DECRYPT (ctx, f, length, dst, src) | Macro |
A simpler way to invoke cbc_encrypt and cbc_decrypt . The
first argument is a pointer to a context struct as defined by
CBC_CTX , and the second argument is an encryption or decryption
function following Nettle's conventions. The last three arguments define
the source and destination area for the operation.
|
These macros use some tricks to make the compiler display a warning if
the types of f and ctx don't match, e.g. if you try to use
an struct aes_ctx
context with the des_encrypt
function.
uint8_t * memxor (uint8_t *dst, const uint8_t *src, size_t n) | Function |
XOR:s the source area on top of the destination area. The interface
doesn't follow the Nettle conventions, because it is intended to be
similar to the ANSI-C memcpy function.
|
memxor
is declared in <nettle/memxor.h>
.
Nettle uses autoconf
and automake
. To build it,
unpack the source and run
./configure make make check make install
to install in the default location, /usr/local
. The library is
installed in /use/local/lib/libnettle.a
and the include files are
installed in /use/local/include/nettle/
.
Only static libraries are installed.
aes_decrypt
: Cipher functions
aes_encrypt
: Cipher functions
aes_set_key
: Cipher functions
arcfour_crypt
: Cipher functions
arcfour_set_key
: Cipher functions
blowfish_decrypt
: Cipher functions
blowfish_encrypt
: Cipher functions
blowfish_set_key
: Cipher functions
cast128_decrypt
: Cipher functions
cast128_encrypt
: Cipher functions
cast128_set_key
: Cipher functions
CBC_CTX
: Cipher Block Chaining
cbc_decrypt
: Cipher Block Chaining
CBC_DECRYPT
: Cipher Block Chaining
cbc_encrypt
: Cipher Block Chaining
CBC_ENCRYPT
: Cipher Block Chaining
CBC_SET_IV
: Cipher Block Chaining
des3_decrypt
: Cipher functions
des3_encrypt
: Cipher functions
des3_set_key
: Cipher functions
des_decrypt
: Cipher functions
des_encrypt
: Cipher functions
des_fix_parity
: Cipher functions
des_set_key
: Cipher functions
md5_digest
: Hash functions
md5_final
: Hash functions
md5_init
: Hash functions
md5_update
: Hash functions
memxor
: Miscellaneous functions
serpent_decrypt
: Cipher functions
serpent_encrypt
: Cipher functions
serpent_set_key
: Cipher functions
sha1_digest
: Hash functions
sha1_final
: Hash functions
sha1_init
: Hash functions
sha1_update
: Hash functions
twofish_decrypt
: Cipher functions
twofish_encrypt
: Cipher functions
twofish_set_key
: Cipher functions