Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 339 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 339 Bytes

aes-rs

aes-rs is the Advanced Encryption Standard implemented in pure Rust without any external dependencies.

to-dos

  • ECB mode
  • Implement decryption for 128, 192 and 256 bit variants
  • Create a nicer API for main.rs
  • Handle block padding
  • Consider ECB, CBC, OFB ..
  • Initialisation Vector (IV)