Cipher algorithm 'AES-256-GCM' not found (OpenSSL) code example
Example: Cipher algorithm 'AES-256-GCM' not found (OpenSSL)
Your openvpn version is older then 2.4 which do not support AES-256-GCM, hence you should upgrade it via below steps in your 16.04 linux:
curl -s https://swupdate.openvpn.net/repos/repo-public.gpg | apt-key add -
echo "deb http://build.openvpn.net/debian/openvpn/stable xenial main" > /etc/apt/sources.list.d/openvpn-aptrepo.list
apt update
apt install -y openvpn
If you found this answer useful, do upvote and donate.