Skip to content

Simplified DES implementation in GO language

License

Notifications You must be signed in to change notification settings

LucasAssis00/sdes-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

sdes-go

Simplified DES implementation in GO language

Usage:

Ecrypt:

go run sdes.go '8 bit plain text' '10 bit key'

Example: go run sdes.go 11100101 1011001010

Decrypt (add 'd' flag):

go run sdes.go '8 bit encrypted text' '10 bit key'

Example: go run sdes.go 11011111 1011110111 d

TO-DO

  • Implement CBC system
  • Translate variable names
  • Add code comments
  • Search about the possibility of padding the plain text entry

About

Simplified DES implementation in GO language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages