AZ_CVAR(AZ::CVarFixedString,net_SslExternalCertificateFile,"testcert.pem",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The filename of the EXTERNAL (server to client) certificate chain in PEM format (default is for debugging purposes)");
AZ_CVAR(AZ::CVarFixedString,net_SslExternalPrivateKeyFile,"testkey.pem",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The filename of the EXTERNAL (server to client) private key file in PEM format (default is for debugging purposes)");
AZ_CVAR(AZ::CVarFixedString,net_SslExternalContextPassword,"12345",nullptr,AZ::ConsoleFunctorFlags::DontReplicate|AZ::ConsoleFunctorFlags::IsInvisible,"The password required for the EXTERNAL (server to client) private certificate (default is for debugging purposes)");
AZ_CVAR(AZ::CVarFixedString,net_SslExternalCertificateFile,"",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The filename of the EXTERNAL (server to client) certificate chain in PEM format");
AZ_CVAR(AZ::CVarFixedString,net_SslExternalPrivateKeyFile,"",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The filename of the EXTERNAL (server to client) private key file in PEM format");
AZ_CVAR(AZ::CVarFixedString,net_SslExternalContextPassword,"",nullptr,AZ::ConsoleFunctorFlags::DontReplicate|AZ::ConsoleFunctorFlags::IsInvisible,"The password required for the EXTERNAL (server to client) private certificate");
AZ_CVAR(AZ::CVarFixedString,net_SslInternalCertificateFile,"servercert.pem",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The filename of the INTERNAL (server to server only) certificate chain in PEM format (default is for debugging purposes)");
AZ_CVAR(AZ::CVarFixedString,net_SslInternalPrivateKeyFile,"serverkey.pem",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The filename of the INTERNAL (server to server only) private key file in PEM format (default is for debugging purposes)");
AZ_CVAR(AZ::CVarFixedString,net_SslInternalContextPassword,"12345",nullptr,AZ::ConsoleFunctorFlags::DontReplicate|AZ::ConsoleFunctorFlags::IsInvisible,"The password required for the INTERNAL (server to server only) private certificate (default is for debugging purposes)");
AZ_CVAR(AZ::CVarFixedString,net_SslInternalCertificateFile,"",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The filename of the INTERNAL (server to server only) certificate chain in PEM format");
AZ_CVAR(AZ::CVarFixedString,net_SslInternalPrivateKeyFile,"",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The filename of the INTERNAL (server to server only) private key file in PEM format");
AZ_CVAR(AZ::CVarFixedString,net_SslInternalContextPassword,"",nullptr,AZ::ConsoleFunctorFlags::DontReplicate|AZ::ConsoleFunctorFlags::IsInvisible,"The password required for the INTERNAL (server to server only) private certificate");
AZ_CVAR(AZ::CVarFixedString,net_SslCertCiphers,"ECDHE-RSA-AES256-GCM-SHA384",nullptr,AZ::ConsoleFunctorFlags::DontReplicate,"The cipher suite to use when using cert based key exchange");