Skip to content

nuoxoxo/cryptopals

Repository files navigation

Crypto Challenge Set 1

  1. Convert hex to base64
  • DIY base64 tool in new soln
  • (deprecated) run : c++ -std=c++2a -lssl -lcrypto _.cc && ./a.out
  1. Fixed XOR
  • added new solution in cc
  1. Single-byte XOR cipher
  2. Detect single-character XOR
  3. Implement repeating-key XOR
  4. Break repeating-key XOR
  5. AES in ECB mode
  6. Detect AES in ECB mode