Python: Read RSA private key from file on disk and use it to create an AES Cipher [migrated]

I need to decrypt (using Python libs) a base64 encoded string that was encrypted using AES256/CBC/PKCS7:
MIAGCSqGSIb3DQEHA6CAMIACAQIxggEwMIIBLAIBAoAUWwUA8cj6Bdcph9HPtFRinZS+SkwwDQYJKoZIhvcNAQEBBQAEggEAY0azbeMRqaktA3LL0HgC4XmZEfIu81nUsjm1r7… Continue reading Python: Read RSA private key from file on disk and use it to create an AES Cipher [migrated]

Is it safe to use AES-CCM only for authentication – i.e. for sending AAD without encrypted data?

We are employing an AES-CCM 128-bit stream-cipher with 7-Byte Nonces and 12-Byte Authentication Tags in a communication protocol. Up until this point there was no need to use Additional Authenticated Data (AAD) in this protocol, as all tra… Continue reading Is it safe to use AES-CCM only for authentication – i.e. for sending AAD without encrypted data?