1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
/*
* Copyright (C) 2008-2012 Free Software Foundation, Inc.
* Author: Nikos Mavrogiannopoulos
*
* This file is part of GnuTLS.
*
* GnuTLS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GnuTLS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
#include <gnutls/openpgp.h>
#include "common.h"
static void main_texinfo(void);
static void main_latex(void);
char buffer[1024];
int main(int argc, char *argv[])
{
if (argc > 1)
main_latex();
else
main_texinfo();
return 0;
}
static void main_texinfo(void)
{
{
size_t i;
const char *name;
char id[2];
gnutls_kx_algorithm_t kx;
gnutls_cipher_algorithm_t cipher;
gnutls_mac_algorithm_t mac;
gnutls_protocol_t version;
printf("@heading Ciphersuites\n");
printf("@multitable @columnfractions .60 .20 .20\n");
printf("@headitem Ciphersuite name @tab TLS ID @tab Since\n");
for (i = 0; (name = gnutls_cipher_suite_info(
i, id, &kx, &cipher, &mac, &version));
i++) {
printf("@item %s\n@tab 0x%02X 0x%02X\n@tab %s\n",
escape_texi_string(name, buffer, sizeof(buffer)),
(unsigned char)id[0], (unsigned char)id[1],
gnutls_protocol_get_name(version));
}
printf("@end multitable\n");
}
{
const gnutls_certificate_type_t *p =
gnutls_certificate_type_list();
printf("\n\n@heading Certificate types\n");
printf("@table @code\n");
for (; *p; p++) {
printf("@item %s\n",
gnutls_certificate_type_get_name(*p));
}
printf("@end table\n");
}
{
const gnutls_protocol_t *p = gnutls_protocol_list();
printf("\n@heading Protocols\n@table @code\n");
for (; *p; p++) {
printf("@item %s\n", gnutls_protocol_get_name(*p));
}
printf("@end table\n");
}
{
const gnutls_cipher_algorithm_t *p = gnutls_cipher_list();
printf("\n@heading Ciphers\n@table @code\n");
for (; *p; p++) {
printf("@item %s\n", gnutls_cipher_get_name(*p));
}
printf("@end table\n");
}
{
const gnutls_mac_algorithm_t *p = gnutls_mac_list();
printf("\n@heading MAC algorithms\n@table @code\n");
for (; *p; p++) {
printf("@item %s\n", gnutls_mac_get_name(*p));
}
printf("@end table\n");
}
{
const gnutls_kx_algorithm_t *p = gnutls_kx_list();
printf("\n@heading Key exchange methods\n@table @code\n");
for (; *p; p++) {
printf("@item %s\n", gnutls_kx_get_name(*p));
}
printf("@end table\n");
}
{
const gnutls_pk_algorithm_t *p = gnutls_pk_list();
printf("\n@heading Public key algorithms\n@table @code\n");
for (; *p; p++) {
printf("@item %s\n", gnutls_pk_get_name(*p));
}
printf("@end table\n");
}
{
const gnutls_sign_algorithm_t *p = gnutls_sign_list();
printf("\n@heading Public key signature algorithms\n@table @code\n");
for (; *p; p++) {
printf("@item %s\n", gnutls_sign_get_name(*p));
}
printf("@end table\n");
}
{
const gnutls_group_t *p = gnutls_group_list();
printf("\n@heading Groups\n@table @code\n");
for (; *p; p++) {
printf("@item %s\n", gnutls_group_get_name(*p));
}
printf("@end table\n");
}
}
static const char headers[] = "\\tablefirsthead{%\n"
"\\hline\n"
"Ciphersuite name & TLS ID & Since\\\\\n"
"\\hline}\n"
#if 0
"\\tablehead{%\n"
"\\hline\n"
"\\multicolumn{3}{|l|}{\\small\\sl continued from previous page}\\\\\n"
"\\hline}\n"
"\\tabletail{%\n"
"\\hline\n"
"\\multicolumn{3}{|r|}{\\small\\sl continued on next page}\\\\\n"
"\\hline}\n"
#endif
"\\tablelasttail{\\hline}\n"
"\\bottomcaption{The ciphersuites table}\n\n";
static void main_latex(void)
{
int i, j;
const char *desc;
const char *_name;
puts(headers);
printf("\\begin{supertabular}{|p{.64\\linewidth}|p{.12\\linewidth}|p{.09\\linewidth}|}\n");
{
size_t i;
const char *name;
char id[2];
gnutls_kx_algorithm_t kx;
gnutls_cipher_algorithm_t cipher;
gnutls_mac_algorithm_t mac;
gnutls_protocol_t version;
for (i = 0; (name = gnutls_cipher_suite_info(
i, id, &kx, &cipher, &mac, &version));
i++) {
printf("{\\small{%s}} & \\code{0x%02X 0x%02X} & %s",
escape_string(name, buffer, sizeof(buffer)),
(unsigned char)id[0], (unsigned char)id[1],
gnutls_protocol_get_name(version));
printf("\\\\\n");
}
printf("\\end{supertabular}\n\n");
}
return;
}
|