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
|
/*
* Copyright (C) 2010 Red Hat, Inc.
*
* This program 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.
*
* This program 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 <http://www.gnu.org/licenses/>.
*/
#include "../../src/config.h"
#include <sys/types.h>
#include <stdio.h>
#include <time.h>
#include "../../src/prefs.h"
#include "../../src/store-int.h"
int
main(int argc, char **argv)
{
const char *dest;
const time_t *ttls;
unsigned int i, n_ttls;
switch (cm_prefs_preferred_cipher()) {
case cm_prefs_aes128:
printf("cipher: AES128\n");
break;
case cm_prefs_aes192:
printf("cipher: AES192\n");
break;
case cm_prefs_aes256:
printf("cipher: AES256\n");
break;
case cm_prefs_des:
printf("cipher: DES\n");
break;
case cm_prefs_des3:
printf("cipher: DES3\n");
break;
case cm_prefs_nocipher:
printf("No cipher selected. Shouldn't happen\n");
break;
}
switch (cm_prefs_preferred_digest()) {
case cm_prefs_md5:
printf("digest: MD5\n");
break;
case cm_prefs_sha1:
printf("digest: SHA1\n");
break;
case cm_prefs_sha256:
printf("digest: SHA256\n");
break;
case cm_prefs_sha384:
printf("digest: SHA384\n");
break;
case cm_prefs_sha512:
printf("digest: SHA512\n");
break;
case cm_prefs_nodigest:
printf("No cipher selected. Shouldn't happen\n");
break;
}
if (cm_prefs_notify_ttls(&ttls, &n_ttls) == 0) {
printf("notify_ttls: ");
for (i = 0; i < n_ttls; i++) {
printf("%s%llu", ((i > 0) ? ", " : ""),
(unsigned long long) ttls[i]);
}
printf("\n");
}
if (cm_prefs_enroll_ttls(&ttls, &n_ttls) == 0) {
printf("enroll_ttls: ");
for (i = 0; i < n_ttls; i++) {
printf("%s%llu", ((i > 0) ? ", " : ""),
(unsigned long long) ttls[i]);
}
printf("\n");
}
dest = cm_prefs_notification_destination();
switch (cm_prefs_notification_method()) {
case cm_notification_unspecified:
printf("notification: UNSPECIFIED:%s\n", dest);
break;
case cm_notification_none:
printf("notification: NONE\n");
break;
case cm_notification_syslog:
printf("notification: SYSLOG:%s\n", dest);
break;
case cm_notification_email:
printf("notification: MAILTO:%s\n", dest);
break;
case cm_notification_stdout:
printf("notification: STDOUT\n");
break;
case cm_notification_command:
printf("notification: COMMAND:%s\n", dest);
break;
}
if (cm_prefs_preferred_rsa_key_size() == CM_DEFAULT_PUBKEY_SIZE) {
// So we don't have to dynamically update expected.out
printf("RSA key size: default\n");
} else {
printf("RSA key size: %d\n", cm_prefs_preferred_rsa_key_size());
}
return 0;
}
|