Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 471 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 471 Bytes

A collection of encodings

implemented in c++

Usage:

main.exe [code] [command] [message]

  • code: the coding scheme to use (hamming, rs, aes, rsa)
  • command: to encode or decode the message
  • mesage: the message data, ascii characters for encoding, hex for decoding

Error correction codes:

  • Hamming code (hamming)
  • Reed Solomon (rs) (need to implement partial encoding)

Cryptography codes:

  • AES (aes) (incomplete)
  • RSA (rsa)