gnupg/tools/bftest.c

112 lines
2.5 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* bftest.c - Blowfish test program
2002-06-29 15:46:34 +02:00
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
* This file is part of GnuPG.
1997-11-18 15:06:00 +01:00
*
* GnuPG is free software; you can redistribute it and/or modify
1997-11-18 15:06:00 +01:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GnuPG is distributed in the hope that it will be useful,
1997-11-18 15:06:00 +01:00
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_DOSISH_SYSTEM
#include <io.h>
#include <fcntl.h>
1998-01-28 17:09:43 +01:00
#endif
1997-11-18 15:06:00 +01:00
#include "util.h"
2002-06-29 15:46:34 +02:00
#include "cipher.h"
1998-02-09 18:43:42 +01:00
#include "i18n.h"
1997-11-18 15:06:00 +01:00
static void
my_usage(void)
{
2002-06-29 15:46:34 +02:00
fprintf(stderr, "usage: bftest [-e][-d] algo key\n");
1997-11-18 15:06:00 +01:00
exit(1);
}
2002-06-29 15:46:34 +02:00
const char *
strusage( int level )
{
return default_strusage(level);
}
1997-11-18 15:06:00 +01:00
1998-02-09 18:43:42 +01:00
static void
i18n_init(void)
{
#ifdef ENABLE_NLS
#ifdef HAVE_LC_MESSAGES
setlocale( LC_MESSAGES, "" );
#else
setlocale( LC_ALL, "" );
#endif
bindtextdomain( PACKAGE, G10_LOCALEDIR );
textdomain( PACKAGE );
#endif
1998-02-09 18:43:42 +01:00
}
1997-11-18 15:06:00 +01:00
int
main(int argc, char **argv)
{
int encode=0;
2002-06-29 15:46:34 +02:00
CIPHER_HANDLE hd;
1998-05-04 20:49:26 +02:00
char buf[4096];
2002-06-29 15:46:34 +02:00
int n, size=4096;
int algo;
#ifdef HAVE_DOSISH_SYSTEM
1998-01-28 17:09:43 +01:00
setmode( fileno(stdin), O_BINARY );
setmode( fileno(stdout), O_BINARY );
#endif
1998-01-28 17:09:43 +01:00
1998-02-09 18:43:42 +01:00
i18n_init();
1997-11-18 15:06:00 +01:00
if( argc > 1 && !strcmp(argv[1], "-e") ) {
encode++;
argc--; argv++;
}
else if( argc > 1 && !strcmp(argv[1], "-E") ) {
encode++;
argc--; argv++;
size = 10;
}
else if( argc > 1 && !strcmp(argv[1], "-d") ) {
argc--; argv++;
}
else if( argc > 1 && !strcmp(argv[1], "-D") ) {
argc--; argv++;
size = 10;
}
2002-06-29 15:46:34 +02:00
if( argc != 3 )
1997-11-18 15:06:00 +01:00
my_usage();
argc--; argv++;
2002-06-29 15:46:34 +02:00
algo = string_to_cipher_algo( *argv );
1998-04-07 20:16:10 +02:00
argc--; argv++;
1997-11-18 15:06:00 +01:00
2002-06-29 15:46:34 +02:00
hd = cipher_open( algo, CIPHER_MODE_CFB, 0 );
cipher_setkey( hd, *argv, strlen(*argv) );
cipher_setiv( hd, NULL, 0 );
1997-11-18 15:06:00 +01:00
while( (n = fread( buf, 1, size, stdin )) > 0 ) {
if( encode )
2002-06-29 15:46:34 +02:00
cipher_encrypt( hd, buf, buf, n );
1997-11-18 15:06:00 +01:00
else
2002-06-29 15:46:34 +02:00
cipher_decrypt( hd, buf, buf, n );
1997-11-18 15:06:00 +01:00
if( fwrite( buf, 1, n, stdout) != n )
log_fatal("write error\n");
}
2002-06-29 15:46:34 +02:00
cipher_close(hd);
1997-11-18 15:06:00 +01:00
return 0;
}