RootCauseunvalidated
the default behaviour for `AES.encrypt` is to use CBC mode with PKCS#7 padding — That however is not a safe way to encrypt data by itself. Tension: it doesn't include any authentication. CBC mode also requires a random IV for every message. Outcome: If you take care of the issue with IVs, you could combine that CBC encryption with an authentication scheme.
2cb72d48-2015-4554-ab6d-1b075a79019a
the default behaviour for AES.encrypt is to use CBC mode with PKCS#7 padding — That however is not a safe way to encrypt data by itself. Tension: it doesn't include any authentication. CBC mode also requires a random IV for every message. Outcome: If you take care of the issue with IVs, you could combine that CBC encryption with an authentication scheme.