Add AES-CBC support to Algorithm enum:
- Add AesCbc variant with clap name "aes-cbc"
- Add requires_iv() method to check if algorithm needs IV
- Add new_cbc_cipher() for creating AesCbc instances
- Add encrypt_cbc() and decrypt_cbc() helper methods
- Update parse_text() and Display for AesCbc