blob: 068e716bf40ac7e66a1da02221cd34c2024bcca0 [file] [log] [blame]
Paul Bakker37ca75d2011-01-06 12:28:03 +00001/**
Jaeden Amero25facdd2018-01-23 15:36:58 +00002 * \file doc_encdec.h
3 *
4 * \brief Encryption/decryption module documentation file.
5 */
6/*
Manuel Pégourié-Gonnard8119dad2015-08-06 10:59:26 +02007 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02008 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +00009 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Paul Bakker37ca75d2011-01-06 12:28:03 +000010 */
11
12/**
13 * @addtogroup encdec_module Encryption/decryption module
Paul Bakkerf3b86c12011-01-27 15:24:17 +000014 *
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +020015 * The Encryption/decryption module provides encryption/decryption functions.
16 * One can differentiate between symmetric and asymmetric algorithms; the
17 * symmetric ones are mostly used for message confidentiality and the asymmetric
18 * ones for key exchange and message integrity.
19 * Some symmetric algorithms provide different block cipher modes, mainly
20 * Electronic Code Book (ECB) which is used for short (64-bit) messages and
21 * Cipher Block Chaining (CBC) which provides the structure needed for longer
22 * messages. In addition the Cipher Feedback Mode (CFB-128) stream cipher mode,
23 * Counter mode (CTR) and Galois Counter Mode (GCM) are implemented for
24 * specific algorithms.
25 *
26 * All symmetric encryption algorithms are accessible via the generic cipher layer
Manuel Pégourié-Gonnard151dc772015-05-14 13:55:51 +020027 * (see \c mbedtls_cipher_setup()).
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +020028 *
Tom Cosgrove1797b052022-12-04 17:19:59 +000029 * The asymmetric encryption algorithms are accessible via the generic public
Manuel Pégourié-Gonnard151dc772015-05-14 13:55:51 +020030 * key layer (see \c mbedtls_pk_init()).
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +020031 *
Paul Bakker37ca75d2011-01-06 12:28:03 +000032 * The following algorithms are provided:
33 * - Symmetric:
Manuel Pégourié-Gonnard151dc772015-05-14 13:55:51 +020034 * - AES (see \c mbedtls_aes_crypt_ecb(), \c mbedtls_aes_crypt_cbc(), \c mbedtls_aes_crypt_cfb128() and
35 * \c mbedtls_aes_crypt_ctr()).
Manuel Pégourié-Gonnard151dc772015-05-14 13:55:51 +020036 * - Camellia (see \c mbedtls_camellia_crypt_ecb(), \c mbedtls_camellia_crypt_cbc(),
37 * \c mbedtls_camellia_crypt_cfb128() and \c mbedtls_camellia_crypt_ctr()).
38 * - DES/3DES (see \c mbedtls_des_crypt_ecb(), \c mbedtls_des_crypt_cbc(), \c mbedtls_des3_crypt_ecb()
39 * and \c mbedtls_des3_crypt_cbc()).
40 * - GCM (AES-GCM and CAMELLIA-GCM) (see \c mbedtls_gcm_init())
Paul Bakker37ca75d2011-01-06 12:28:03 +000041 * - Asymmetric:
Manuel Pégourié-Gonnard151dc772015-05-14 13:55:51 +020042 * - RSA (see \c mbedtls_rsa_public() and \c mbedtls_rsa_private()).
43 * - Elliptic Curves over GF(p) (see \c mbedtls_ecp_point_init()).
44 * - Elliptic Curve Digital Signature Algorithm (ECDSA) (see \c mbedtls_ecdsa_init()).
45 * - Elliptic Curve Diffie Hellman (ECDH) (see \c mbedtls_ecdh_init()).
Paul Bakker37ca75d2011-01-06 12:28:03 +000046 *
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +020047 * This module provides encryption/decryption which can be used to provide
Paul Bakker37ca75d2011-01-06 12:28:03 +000048 * secrecy.
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +020049 *
50 * It also provides asymmetric key functions which can be used for
51 * confidentiality, integrity, authentication and non-repudiation.
Paul Bakker37ca75d2011-01-06 12:28:03 +000052 */