An open API service indexing awesome lists of open source software.

https://github.com/koeonyack/des

🔑Implement DES using C language.
https://github.com/koeonyack/des

c des security

Last synced: 7 months ago
JSON representation

🔑Implement DES using C language.

Awesome Lists containing this project

README

          

# DES

### What is this program?
- Implement DES using the C language.
- The program input 64-bit keys and 64-bit plain text in hexadecimal. Then encrypt the plain text and output the cipher text in hexadecimal.

### Screen Shot
![1](https://github.com/KoEonYack/DES/blob/master/img/1.jpg?raw=true)

![2](https://github.com/KoEonYack/DES/blob/master/img/2.jpg?raw=true)

![3](https://github.com/KoEonYack/DES/blob/master/img/3.jpg?raw=true)

### Reference
- [C Implementation of Cryptographic Algorithms](http://www.ti.com/lit/an/slaa547b/slaa547b.pdf)
- [mimoo/DES github](https://github.com/mimoo/DES/blob/master/src/main.c)
- [Implements DES - Korean](https://ablog.jc-lab.net/66)
- [Implements DES hacker school - Korean](https://www.hackerschool.org/HS_Boards/data/Lib_encrypt/des.c)