Hello all. Can anyone shed some light on some documentation or examples of AES-128 with the ecb mode in C++ or c even? I understand 64 bits are enciphered at a time and that each block of plaintext is encrypted such that a certain input will always have the same output, but I am unsure how to implement this. How does the lack of an initialization vector factor into the code? I am aware of the vulnerabilities of ECB, but I would like to become familiar with the mode.
Unfortunately no. All the examples I found implemented AES-128 ecb from the command line. I am looking to see how the AES code is modified with the ecb mode.