Recently we ran into an issue involving NetworkManager and strongSwan. The error in the systemd journal was a cryptic “encryption algorithm ‘DES-CBC’ not supported”, as shown in the following log excerpt:
Jul 19 19:14:00 el-valle NetworkManager[733]: [1532042040.2613] audit: op="connection-activate" uuid="26f20e51-92ba-4a78-a1> [...] Jul 19 19:14:00 el-valle NetworkManager[733]: [1532042040.2764] vpn-connection[0x56050004c1f0,26f20e51-92ba-4a78-a17e-1709b> Jul 19 19:14:00 el-valle charon-nm[17026]: 05[ASN] encryption algorithm 'DES-CBC' not supported Jul 19 19:14:00 el-valle charon-nm[17026]: 05[LIB] building CRED_PRIVATE_KEY - RSA failed, tried 8 builders Jul 19 19:14:00 el-valle NetworkManager[733]: [1532042040.2862] vpn-connection[0x56050004c1f0,26f20e51-92ba-4a78-a17e-1709b> Jul 19 19:14:00 el-valle charon-nm[17026]: 05[CFG] received initiate for NetworkManager connection Acme strongSwan Jul 19 19:14:00 el-valle charon-nm[17026]: 05[CFG] using CA certificate, gateway identity 'vpn.acme.com' Jul 19 19:14:00 el-valle charon-nm[17026]: 05[ASN] encryption algorithm 'DES-CBC' not supported Jul 19 19:14:00 el-valle charon-nm[17026]: 05[LIB] building CRED_PRIVATE_KEY - ANY failed, tried 7 builders
In the end we tracked this down to strongSwan being unable to read a private key that had been encrypted with DES. The solution was to re-encrypt the private key using AES-256:
shell$ sudo openssl rsa -in client_key.pem -aes256 -out newkey.pem Enter pass phrase for client_key.pem: writing RSA key Enter PEM pass phrase: Verifying - Enter PEM pass phrase: shell$ sudo mv newkey.pem client_key.pem
The following post was helpful to figure out what was happening:
https://lists.strongswan.org/pipermail/users/2017-June/011088.html