{
    # Migrate old CipherSuite value to new secure default
    # Will not change CipherSuite if it has been modified from the original default, or deleted.
    return unless defined $modSSL{CipherSuite};
    if($modSSL{CipherSuite} eq 'ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM')
    {
        $DB->set_prop('modSSL', 'CipherSuite', 'HIGH:!SSLv2');
    }
}
