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.
- Host: GitHub
- URL: https://github.com/koeonyack/des
- Owner: KoEonYack
- Created: 2019-09-12T09:46:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-12T09:57:39.000Z (about 6 years ago)
- Last Synced: 2025-01-04T08:43:42.634Z (9 months ago)
- Topics: c, des, security
- Language: C
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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


### 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)