DES Source Code - 3-DES - Triple DES

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 24

DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.

org/des-source-code

DES source code

Data Encryption Standard


The source code for the DES algorithm, also called Data Encryption
Standard, and the 3-DES algorithm, also called the Triple-DES
algorithm. This source code is part of the mbed TLS library and
represents the most current version in the trunk of the library.

The full algorithm of DES is further explained in DES algorithm (Wikipedia) and 3-DES is explained in 3-DES (Wikipedia).

The code only has a single dependency on config.h in the des.c source code file. You can remove this inclusion or just create
a simple header file to define one or more of the configuration options that the DES source code has.

Full documentation on the DES source code can be found in the API documentation for the DES module.

You can also download it as part of the latest release of mbed TLS.

Header - des.h
The des.h header can also be found in the trunk on: des.h.

1 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

2 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

3 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

4 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

5 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

6 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

Source - des.c
The des.c source code can also be found in the trunk on: des.c.

7 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

8 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

9 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

10 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

11 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

12 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

13 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

14 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

15 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

16 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

17 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

18 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

19 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

20 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

21 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

22 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

23 de 24 13/10/2019 21:51
DES Source Code (3-DES / Triple DES) - Mbed TLS (Previously PolarSSL) https://tls.mbed.org/des-source-code

24 de 24 13/10/2019 21:51

You might also like