mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
See ChangeLog: Tue Mar 2 16:44:57 CET 1999 Werner Koch
This commit is contained in:
parent
c27c7416d5
commit
20bb42bfe7
12 changed files with 103 additions and 102 deletions
|
@ -1,3 +1,11 @@
|
|||
Tue Mar 2 16:44:57 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* textfilter.c (copy_clearsig_text): New.
|
||||
(clearsign): Removed.
|
||||
* sign.c (clearsign_file): does not use textfiler anymore.
|
||||
|
||||
* keygen.c (ask_user_id): print a note about the used charset.
|
||||
|
||||
Tue Mar 2 10:38:42 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* sig-check.c (signature_check): sig-id now works for all algos.
|
||||
|
|
|
@ -86,7 +86,6 @@ typedef struct {
|
|||
unsigned buffer_len; /* used length of the buffer */
|
||||
unsigned buffer_pos; /* read position */
|
||||
int truncated; /* number of truncated lines */
|
||||
int clearsign;
|
||||
int not_dash_escaped;
|
||||
int escape_from;
|
||||
MD_HANDLE md;
|
||||
|
@ -117,6 +116,8 @@ int cipher_filter( void *opaque, int control,
|
|||
/*-- textfilter.c --*/
|
||||
int text_filter( void *opaque, int control,
|
||||
IOBUF chain, byte *buf, size_t *ret_len);
|
||||
int copy_clearsig_text( IOBUF out, IOBUF inp, MD_HANDLE md,
|
||||
int escape_dash, int escape_from );
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -651,6 +651,14 @@ ask_user_id( int mode )
|
|||
if( quick_random_gen(-1) )
|
||||
strcpy(p, " (INSECURE!)" );
|
||||
|
||||
/* print a note in case that UTF8 mapping has to be done */
|
||||
for(p=uid; *p; p++ ) {
|
||||
if( *p & 0x80 ) {
|
||||
tty_printf(_("You are using the `%s' character set.\n"),
|
||||
get_native_charset() );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
tty_printf(_("You selected this USER-ID:\n \"%s\"\n\n"), uid);
|
||||
/* fixme: add a warning if this user-id already exists */
|
||||
|
|
18
g10/sign.c
18
g10/sign.c
|
@ -463,7 +463,6 @@ int
|
|||
clearsign_file( const char *fname, STRLIST locusr, const char *outfile )
|
||||
{
|
||||
armor_filter_context_t afx;
|
||||
text_filter_context_t tfx;
|
||||
MD_HANDLE textmd = NULL;
|
||||
IOBUF inp = NULL, out = NULL;
|
||||
PACKET pkt;
|
||||
|
@ -472,10 +471,8 @@ clearsign_file( const char *fname, STRLIST locusr, const char *outfile )
|
|||
SK_LIST sk_rover = NULL;
|
||||
int old_style = opt.rfc1991;
|
||||
int only_md5 = 0;
|
||||
int c;
|
||||
|
||||
memset( &afx, 0, sizeof afx);
|
||||
memset( &tfx, 0, sizeof tfx);
|
||||
init_packet( &pkt );
|
||||
|
||||
if( (rc=build_sk_list( locusr, &sk_list, 1, PUBKEY_USAGE_SIG )) )
|
||||
|
@ -547,19 +544,8 @@ clearsign_file( const char *fname, STRLIST locusr, const char *outfile )
|
|||
md_enable(textmd, hash_for(sk->pubkey_algo));
|
||||
}
|
||||
/*md_start_debug( textmd, "sign" );*/
|
||||
tfx.clearsign = 1;
|
||||
tfx.not_dash_escaped = opt.not_dash_escaped;
|
||||
tfx.escape_from = opt.escape_from;
|
||||
tfx.md = textmd;
|
||||
iobuf_push_filter( inp, text_filter, &tfx );
|
||||
/* read input and write it to the output. The textfilter handles
|
||||
* the calculation of the hash and the dash escaping */
|
||||
while( (c=iobuf_get(inp)) != -1 ) {
|
||||
if( iobuf_put(out, c) == -1 ) {
|
||||
rc = G10ERR_WRITE_FILE;
|
||||
goto leave;
|
||||
}
|
||||
}
|
||||
copy_clearsig_text( out, inp, textmd,
|
||||
!opt.not_dash_escaped, opt.escape_from );
|
||||
/* fixme: check for read errors */
|
||||
|
||||
/* now write the armor */
|
||||
|
|
139
g10/textfilter.c
139
g10/textfilter.c
|
@ -99,81 +99,7 @@ standard( text_filter_context_t *tfx, IOBUF a,
|
|||
return rc;
|
||||
}
|
||||
|
||||
static int
|
||||
clearsign( text_filter_context_t *tfx, IOBUF a,
|
||||
byte *buf, size_t size, size_t *ret_len)
|
||||
{
|
||||
int rc=0;
|
||||
size_t len = 0;
|
||||
unsigned maxlen;
|
||||
|
||||
assert( size > 2 );
|
||||
size -= 3; /* reserve for dash escaping and extra LF */
|
||||
while( !rc && len < size ) {
|
||||
unsigned n;
|
||||
byte *p;
|
||||
|
||||
if( tfx->pending_esc ) {
|
||||
buf[len++] = '-';
|
||||
buf[len++] = ' ';
|
||||
tfx->pending_esc = 0;
|
||||
}
|
||||
while( len < size && tfx->buffer_pos < tfx->buffer_len )
|
||||
buf[len++] = tfx->buffer[tfx->buffer_pos++];
|
||||
if( len >= size )
|
||||
continue;
|
||||
|
||||
/* read the next line */
|
||||
maxlen = MAX_LINELEN;
|
||||
tfx->buffer_pos = 0;
|
||||
tfx->buffer_len = iobuf_read_line( a, &tfx->buffer,
|
||||
&tfx->buffer_size, &maxlen );
|
||||
p = tfx->buffer;
|
||||
n = tfx->buffer_len;
|
||||
if( !maxlen )
|
||||
tfx->truncated++;
|
||||
if( !n ) { /* readline has returned eof */
|
||||
/* don't hash a pending lf here because the last one is
|
||||
* not part of the signed material. OpenPGP does not
|
||||
* hash the last LF because it may have to add an
|
||||
* extra one in case that the original material
|
||||
* does not end with one. The clear signed text
|
||||
* must end in a LF, so that the following armor
|
||||
* line can be detected by the parser
|
||||
*/
|
||||
if( !tfx->pending_lf ) {
|
||||
/* make sure that the file ends with a LF */
|
||||
buf[len++] = '\n';
|
||||
if( tfx->not_dash_escaped )
|
||||
md_putc(tfx->md, '\n' );
|
||||
tfx->pending_lf = 1;
|
||||
}
|
||||
if( !len )
|
||||
rc = -1; /* eof */
|
||||
break;
|
||||
}
|
||||
if( tfx->md ) {
|
||||
if( tfx->not_dash_escaped )
|
||||
md_write( tfx->md, p, n );
|
||||
else {
|
||||
if( tfx->pending_lf ) {
|
||||
md_putc(tfx->md, '\r' );
|
||||
md_putc(tfx->md, '\n' );
|
||||
}
|
||||
md_write( tfx->md, p, len_without_trailing_ws( p, n ) );
|
||||
}
|
||||
}
|
||||
tfx->pending_lf = p[n-1] == '\n';
|
||||
if( tfx->not_dash_escaped )
|
||||
;
|
||||
else if( *p == '-' )
|
||||
tfx->pending_esc = 1;
|
||||
else if( tfx->escape_from && n > 4 && !memcmp(p, "From ", 5 ) )
|
||||
tfx->pending_esc = 1;
|
||||
}
|
||||
*ret_len = len;
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
||||
/****************
|
||||
|
@ -189,10 +115,7 @@ text_filter( void *opaque, int control,
|
|||
int rc=0;
|
||||
|
||||
if( control == IOBUFCTRL_UNDERFLOW ) {
|
||||
if( tfx->clearsign )
|
||||
rc = clearsign( tfx, a, buf, size, ret_len );
|
||||
else
|
||||
rc = standard( tfx, a, buf, size, ret_len );
|
||||
rc = standard( tfx, a, buf, size, ret_len );
|
||||
}
|
||||
else if( control == IOBUFCTRL_FREE ) {
|
||||
if( tfx->truncated )
|
||||
|
@ -207,4 +130,64 @@ text_filter( void *opaque, int control,
|
|||
}
|
||||
|
||||
|
||||
/****************
|
||||
* Copy data from INP to OUT and do some escaping if requested.
|
||||
* md is updated as required by rfc2440
|
||||
*/
|
||||
int
|
||||
copy_clearsig_text( IOBUF out, IOBUF inp, MD_HANDLE md,
|
||||
int escape_dash, int escape_from )
|
||||
{
|
||||
unsigned maxlen;
|
||||
byte *buffer = NULL; /* malloced buffer */
|
||||
unsigned bufsize; /* and size of this buffer */
|
||||
unsigned n;
|
||||
int truncated = 0;
|
||||
int pending_lf = 0;
|
||||
|
||||
if( !escape_dash )
|
||||
escape_from = 0;
|
||||
|
||||
for(;;) {
|
||||
maxlen = MAX_LINELEN;
|
||||
n = iobuf_read_line( inp, &buffer, &bufsize, &maxlen );
|
||||
if( !maxlen )
|
||||
truncated++;
|
||||
|
||||
if( !n )
|
||||
break; /* read_line has returned eof */
|
||||
|
||||
/* update the message digest */
|
||||
if( escape_dash ) {
|
||||
if( pending_lf ) {
|
||||
md_putc( md, '\r' );
|
||||
md_putc( md, '\n' );
|
||||
}
|
||||
md_write( md, buffer, len_without_trailing_ws( buffer, n ) );
|
||||
}
|
||||
else
|
||||
md_write( md, buffer, n );
|
||||
pending_lf = buffer[n-1] == '\n';
|
||||
|
||||
/* write the output */
|
||||
if( ( escape_dash && *buffer == '-')
|
||||
|| ( escape_from && n > 4 && !memcmp(buffer, "From ", 5 ) ) ) {
|
||||
iobuf_put( out, '-' );
|
||||
iobuf_put( out, ' ' );
|
||||
}
|
||||
iobuf_write( out, buffer, n );
|
||||
}
|
||||
|
||||
/* at eof */
|
||||
if( !pending_lf ) { /* make sure that the file ends with a LF */
|
||||
iobuf_put( out, '\n');
|
||||
if( !escape_dash )
|
||||
md_putc( md, '\n' );
|
||||
}
|
||||
|
||||
if( truncated )
|
||||
log_info(_("input line longer than %d characters\n"), MAX_LINELEN );
|
||||
|
||||
return 0; /* okay */
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue