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
|
/*
* Copyright (c) 2004-2019 Matthew R. Green
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "irc.h"
IRCII_RCSID("@(#)$eterna: cipher-test.c,v 1.13 2019/01/16 10:16:27 mrg Exp $");
#include "irccrypt.h"
#include "vars.h"
#include "ircaux.h"
#include "list.h"
#include "ctcp.h"
#include "output.h"
#include "newio.h"
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif /* HAVE_SYS_WAIT_H */
#ifdef HAVE_DEV_RANDOM
static int crypt_dev_random_byte(void);
#define GET_RANDOM_BYTE crypt_dev_random_byte()
#else
/* gotta use the sucky one */
#define GET_RANDOM_BYTE (random() & 255)
#endif
#include "aes.c"
#include "cast.c"
static char *progname;
static void usage(void);
static void
usage(void)
{
fprintf(stderr, "Usage: %s [aes|cast]\n", progname);
exit(1);
}
u_char crypt_me[] = "\
this is the thing to be encrypted. oink! we will now pass this string\
to the crypt function and then the decrypt function and make sure it\
comes out the same way!\
";
int
main(int argc, char *argv[])
{
struct crypt_key k;
u_char *s;
int len, rv, r;
progname = argv[0];
if (argc != 2)
usage();
s = crypt_me;
if (strcmp(argv[1], "cast") == 0)
{
k.key = "this is the cast encryption key that we are going to use for the test";
k.type = CAST_STRING;
k.crypt = cast_encrypt_str;
k.decrypt = cast_decrypt_str;
k.cookie = 0;
}
else if (strcmp(argv[1], "aes") == 0)
{
k.key = "this is the aes encryption key that we are going to use for the test";
k.type = AES_STRING;
k.crypt = aes_encrypt_str;
k.decrypt = aes_decrypt_str;
k.cookie = 0;
}
else
usage();
len = strlen(s);
r = rv = (*k.crypt)(&k, &s, &len);
if (rv < 0)
printf("crypt rv = %d\n", rv);
else
printf("crypt worked\n");
rv = strcmp(s, crypt_me);
r |= rv == 0;
printf("comparision %s\n", rv == 0 ? "succeeded" : "failed");
rv = (*k.decrypt)(&k, &s, &len);
r |= rv;
if (rv < 0)
printf("decrypt rv = %d\n", rv);
else
printf("decrypt worked\n");
rv = strcmp(s, crypt_me);
r |= rv;
printf("comparision %s\n", rv == 0 ? "succeeded" : "failed");
exit(r);
}
/* stolen routines */
static int
crypt_dev_random_byte(void)
{
static int devrndfd = -1;
u_char c;
if (devrndfd == -1)
{
devrndfd = open(DEV_RANDOM_PATH, O_RDONLY);
if (devrndfd == -1)
{
printf("--- HELP!!!!rypt_dev_random_byte: can not open %s: %s\n",
DEV_RANDOM_PATH, strerror(errno));
printf("--- using random()\n");
devrndfd = -2;
}
}
if (devrndfd == -2)
goto do_random_instead;
if (read(devrndfd, &c, 1) != 1)
{
/* if we were just interrupted, don't bail on /dev/random */
if (errno == EINTR)
{
printf("--- crypt_dev_random_byte: timeout, using random()\n");
goto do_random_instead;
}
printf("--- HELP! crypt_dev_random_byte: read of one byte on %s failed: %s\n",
DEV_RANDOM_PATH, strerror(errno));
printf("--- using random()\n");
devrndfd = -2;
goto do_random_instead;
}
return ((int)c);
do_random_instead:
return (random() & 255);
}
void *
new_malloc(size_t size)
{
void *ptr;
if ((ptr = malloc(size)) == NULL)
{
printf("-1 0\n");
exit(1);
}
return (ptr);
}
/*
* new_free: Why do this? Why not? Saves me a bit of trouble here and
* there
*/
void
new_free(void *ptr)
{
void **iptr = ptr;
if (*iptr)
{
free(*iptr);
*iptr = 0;
}
}
|