2011-01-06 13:28:03 +01:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Encryption/decryption module documentation file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup encdec_module Encryption/decryption module
|
2013-09-10 16:16:50 +02:00
|
|
|
*
|
|
|
|
* The Encryption/decryption module provides encryption/decryption functions.
|
|
|
|
* One can differentiate between symmetric and asymmetric algorithms; the
|
|
|
|
* symmetric ones are mostly used for message confidentiality and the asymmetric
|
2011-01-06 13:28:03 +01:00
|
|
|
* ones for key exchange and message integrity.
|
2013-09-10 16:16:50 +02:00
|
|
|
* Some symmetric algorithms provide different block cipher modes, mainly
|
|
|
|
* Electronic Code Book (ECB) which is used for short (64-bit) messages and
|
|
|
|
* Cipher Block Chaining (CBC) which provides the structure needed for longer
|
|
|
|
* messages. In addition the Cipher Feedback Mode (CFB-128) stream cipher mode,
|
|
|
|
* Counter mode (CTR) and Galois Counter Mode (GCM) are implemented for
|
|
|
|
* specific algorithms.
|
|
|
|
*
|
|
|
|
* All symmetric encryption algorithms are accessible via the generic cipher layer
|
|
|
|
* (see \c cipher_init_ctx()).
|
|
|
|
*
|
|
|
|
* The asymmetric encryptrion algorithms are accessible via the generic public
|
|
|
|
* key layer (see \c pk_init()).
|
2011-01-27 16:24:17 +01:00
|
|
|
*
|
2011-01-06 13:28:03 +01:00
|
|
|
* The following algorithms are provided:
|
|
|
|
* - Symmetric:
|
2013-09-10 16:16:50 +02:00
|
|
|
* - AES (see \c aes_crypt_ecb(), \c aes_crypt_cbc(), \c aes_crypt_cfb128() and
|
|
|
|
* \c aes_crypt_ctr()).
|
2011-01-06 13:28:03 +01:00
|
|
|
* - ARCFOUR (see \c arc4_crypt()).
|
2013-09-10 16:16:50 +02:00
|
|
|
* - Blowfish / BF (see \c blowfish_crypt_ecb(), \c blowfish_crypt_cbc(),
|
|
|
|
* \c blowfish_crypt_cfb64() and \c blowfish_crypt_ctr())
|
|
|
|
* - Camellia (see \c camellia_crypt_ecb(), \c camellia_crypt_cbc(),
|
|
|
|
* \c camellia_crypt_cfb128() and \c camellia_crypt_ctr()).
|
|
|
|
* - DES/3DES (see \c des_crypt_ecb(), \c des_crypt_cbc(), \c des3_crypt_ecb()
|
2011-01-27 16:24:17 +01:00
|
|
|
* and \c des3_crypt_cbc()).
|
2014-01-13 13:21:29 +01:00
|
|
|
* - GCM (AES-GCM and CAMELLIA-GCM) (see \c gcm_init())
|
2011-01-06 13:28:03 +01:00
|
|
|
* - XTEA (see \c xtea_crypt_ecb()).
|
|
|
|
* - Asymmetric:
|
2013-09-10 16:16:50 +02:00
|
|
|
* - Diffie-Hellman-Merkle (see \c dhm_read_public(), \c dhm_make_public()
|
2011-01-06 13:28:03 +01:00
|
|
|
* and \c dhm_calc_secret()).
|
2011-01-27 16:24:17 +01:00
|
|
|
* - RSA (see \c rsa_public() and \c rsa_private()).
|
2013-09-10 16:16:50 +02:00
|
|
|
* - Elliptic Curves over GF(p) (see \c ecp_point_init()).
|
|
|
|
* - Elliptic Curve Digital Signature Algorithm (ECDSA) (see \c ecdsa_init()).
|
|
|
|
* - Elliptic Curve Diffie Hellman (ECDH) (see \c ecdh_init()).
|
2011-01-06 13:28:03 +01:00
|
|
|
*
|
2013-09-10 16:16:50 +02:00
|
|
|
* This module provides encryption/decryption which can be used to provide
|
2011-01-06 13:28:03 +01:00
|
|
|
* secrecy.
|
2013-09-10 16:16:50 +02:00
|
|
|
*
|
|
|
|
* It also provides asymmetric key functions which can be used for
|
|
|
|
* confidentiality, integrity, authentication and non-repudiation.
|
2011-01-06 13:28:03 +01:00
|
|
|
*/
|