1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-02 22:38:02 +02:00
gnupg/g10/cipher.c

103 lines
2.7 KiB
C
Raw Normal View History

1997-11-23 16:38:27 +01:00
/* cipher.c - En-/De-ciphering filter
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-23 16:38:27 +01:00
*
1998-02-24 19:50:46 +01:00
* This file is part of GNUPG.
1997-11-23 16:38:27 +01:00
*
1998-02-24 19:50:46 +01:00
* GNUPG is free software; you can redistribute it and/or modify
1997-11-23 16:38:27 +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.
*
1998-02-24 19:50:46 +01:00
* GNUPG is distributed in the hope that it will be useful,
1997-11-23 16:38:27 +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>
#include <errno.h>
#include <assert.h>
#include "errors.h"
#include "iobuf.h"
#include "memory.h"
#include "util.h"
#include "filter.h"
#include "packet.h"
#include "options.h"
#define MIN_PARTIAL_SIZE 512
static void
write_header( cipher_filter_context_t *cfx, IOBUF a )
{
PACKET pkt;
PKT_encrypted ed;
byte temp[10];
memset( &ed, 0, sizeof ed );
ed.len = cfx->datalen;
1998-07-06 12:23:57 +02:00
ed.new_ctb = !ed.len && !opt.rfc1991;
init_packet( &pkt );
pkt.pkttype = PKT_ENCRYPTED;
pkt.pkt.encrypted = &ed;
if( build_packet( a, &pkt ))
log_bug("build_packet(ENCR_DATA) failed\n");
randomize_buffer( temp, 8, 1 );
temp[8] = temp[6];
temp[9] = temp[7];
cfx->cipher_hd = cipher_open( cfx->dek->algo, CIPHER_MODE_AUTO_CFB, 1 );
cipher_setkey( cfx->cipher_hd, cfx->dek->key, cfx->dek->keylen );
cipher_setiv( cfx->cipher_hd, NULL );
cipher_encrypt( cfx->cipher_hd, temp, temp, 10);
cipher_sync( cfx->cipher_hd );
iobuf_write(a, temp, 10);
cfx->header=1;
}
1997-11-23 16:38:27 +01:00
/****************
1998-04-14 19:51:16 +02:00
* This filter is used to en/de-cipher data with a conventional algorithm
1997-11-23 16:38:27 +01:00
*/
int
cipher_filter( void *opaque, int control,
IOBUF a, byte *buf, size_t *ret_len)
{
size_t size = *ret_len;
cipher_filter_context_t *cfx = opaque;
int rc=0;
1998-03-19 16:27:29 +01:00
if( control == IOBUFCTRL_UNDERFLOW ) { /* decrypt */
1998-04-02 12:30:03 +02:00
rc = -1; /* not yet used */
1997-11-23 16:38:27 +01:00
}
1998-03-19 16:27:29 +01:00
else if( control == IOBUFCTRL_FLUSH ) { /* encrypt */
1997-11-23 16:38:27 +01:00
assert(a);
if( !cfx->header ) {
write_header( cfx, a );
1997-11-23 16:38:27 +01:00
}
1998-04-07 20:16:10 +02:00
cipher_encrypt( cfx->cipher_hd, buf, buf, size);
1997-11-23 16:38:27 +01:00
if( iobuf_write( a, buf, size ) )
rc = G10ERR_WRITE_FILE;
}
else if( control == IOBUFCTRL_FREE ) {
1998-04-07 20:16:10 +02:00
cipher_close(cfx->cipher_hd);
1997-11-23 16:38:27 +01:00
}
else if( control == IOBUFCTRL_DESC ) {
*(char**)buf = "cipher_filter";
}
return rc;
}