···11+/*
22+ * libratbox: a library used by ircd-ratbox and other things
33+ * gnutls_ratbox.h: embedded data for GNUTLS backend
44+ *
55+ * Copyright (C) 2007-2008 ircd-ratbox development team
66+ * Copyright (C) 2007-2008 Aaron Sethman <androsyn@ratbox.org>
77+ *
88+ * This program is free software; you can redistribute it and/or modify
99+ * it under the terms of the GNU General Public License as published by
1010+ * the Free Software Foundation; either version 2 of the License, or
1111+ * (at your option) any later version.
1212+ *
1313+ * This program is distributed in the hope that it will be useful,
1414+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
1515+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616+ * GNU General Public License for more details.
1717+ *
1818+ * You should have received a copy of the GNU General Public License
1919+ * along with this program; if not, write to the Free Software
2020+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
2121+ * USA
2222+ *
2323+ */
2424+2525+static const char rb_gnutls_default_priority_str[] = ""
2626+ "+SECURE256:"
2727+ "+SECURE128:"
2828+ "!RSA:"
2929+ "+NORMAL:"
3030+ "!ARCFOUR-128:"
3131+ "!3DES-CBC:"
3232+ "!MD5:"
3333+ "VERS-TLS-ALL:"
3434+ "!VERS-TLS1.0:"
3535+ "!VERS-SSL3.0:"
3636+ "%SAFE_RENEGOTIATION";