mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-10 13:04:23 +01:00
* g10.c (add_notation_data): Disallow notation names that do not contain a
'@', unless --expert is set. This is to help prevent people from polluting the (as yet unused) IETF namespace. * main.h: Comments about default algorithms. * photoid.c (image_type_to_string): Comments about 3-letter file extensions. * g10.c (main): Add --strict and --no-strict as no-ops to smooth transition when the devel GnuPG becomes the stable one.
This commit is contained in:
parent
d907271871
commit
f41be729cc
@ -1,3 +1,17 @@
|
|||||||
|
2002-11-23 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* g10.c (add_notation_data): Disallow notation names that do not
|
||||||
|
contain a '@', unless --expert is set. This is to help prevent
|
||||||
|
people from polluting the (as yet unused) IETF namespace.
|
||||||
|
|
||||||
|
* main.h: Comments about default algorithms.
|
||||||
|
|
||||||
|
* photoid.c (image_type_to_string): Comments about 3-letter
|
||||||
|
file extensions.
|
||||||
|
|
||||||
|
* g10.c (main): Add --strict and --no-strict as no-ops to smooth
|
||||||
|
transition when the devel GnuPG becomes the stable one.
|
||||||
|
|
||||||
2002-11-13 Stefan Bellon <sbellon@sbellon.de>
|
2002-11-13 Stefan Bellon <sbellon@sbellon.de>
|
||||||
|
|
||||||
* getkey.c (get_pubkey_byfprint_fast): Fixed type incompatibility,
|
* getkey.c (get_pubkey_byfprint_fast): Fixed type incompatibility,
|
||||||
|
31
g10/g10.c
31
g10/g10.c
@ -300,6 +300,8 @@ enum cmd_and_opt_values { aNull = 0,
|
|||||||
oLCctype,
|
oLCctype,
|
||||||
oLCmessages,
|
oLCmessages,
|
||||||
oGroup,
|
oGroup,
|
||||||
|
oStrict,
|
||||||
|
oNoStrict,
|
||||||
aTest };
|
aTest };
|
||||||
|
|
||||||
|
|
||||||
@ -589,6 +591,8 @@ static ARGPARSE_OPTS opts[] = {
|
|||||||
{ oLCctype, "lc-ctype", 2, "@" },
|
{ oLCctype, "lc-ctype", 2, "@" },
|
||||||
{ oLCmessages, "lc-messages", 2, "@" },
|
{ oLCmessages, "lc-messages", 2, "@" },
|
||||||
{ oGroup, "group", 2, "@" },
|
{ oGroup, "group", 2, "@" },
|
||||||
|
{ oStrict, "strict", 0, "@" },
|
||||||
|
{ oNoStrict, "no-strict", 0, "@" },
|
||||||
{0} };
|
{0} };
|
||||||
|
|
||||||
|
|
||||||
@ -1673,6 +1677,8 @@ main( int argc, char **argv )
|
|||||||
case oLCctype: opt.lc_ctype = pargs.r.ret_str; break;
|
case oLCctype: opt.lc_ctype = pargs.r.ret_str; break;
|
||||||
case oLCmessages: opt.lc_messages = pargs.r.ret_str; break;
|
case oLCmessages: opt.lc_messages = pargs.r.ret_str; break;
|
||||||
case oGroup: add_group(pargs.r.ret_str); break;
|
case oGroup: add_group(pargs.r.ret_str); break;
|
||||||
|
case oStrict: /* noop */ break;
|
||||||
|
case oNoStrict: /* noop */ break;
|
||||||
default : pargs.err = configfp? 1:2; break;
|
default : pargs.err = configfp? 1:2; break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2699,6 +2705,7 @@ add_notation_data( const char *string, int which )
|
|||||||
STRLIST sl,*notation_data;
|
STRLIST sl,*notation_data;
|
||||||
int critical=0;
|
int critical=0;
|
||||||
int highbit=0;
|
int highbit=0;
|
||||||
|
int saw_at=0;
|
||||||
|
|
||||||
if(which)
|
if(which)
|
||||||
notation_data=&opt.cert_notation_data;
|
notation_data=&opt.cert_notation_data;
|
||||||
@ -2710,13 +2717,29 @@ add_notation_data( const char *string, int which )
|
|||||||
string++;
|
string++;
|
||||||
}
|
}
|
||||||
|
|
||||||
for( s=string ; *s != '='; s++ ) {
|
/* If and when the IETF assigns some official name tags, we'll
|
||||||
if( !*s || (*s & 0x80) || (!isgraph(*s) && !isspace(*s)) ) {
|
have to add them here. */
|
||||||
|
|
||||||
|
for( s=string ; *s != '='; s++ )
|
||||||
|
{
|
||||||
|
if( *s=='@')
|
||||||
|
saw_at=0;
|
||||||
|
|
||||||
|
if( !*s || (*s & 0x80) || (!isgraph(*s) && !isspace(*s)) )
|
||||||
|
{
|
||||||
log_error(_("a notation name must have only printable characters "
|
log_error(_("a notation name must have only printable characters "
|
||||||
"or spaces, and end with an '='\n") );
|
"or spaces, and end with an '='\n") );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!saw_at && !opt.expert)
|
||||||
|
{
|
||||||
|
log_error(
|
||||||
|
_("a user notation name must contain the '@' character\n"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* we only support printable text - therefore we enforce the use
|
/* we only support printable text - therefore we enforce the use
|
||||||
* of only printable characters (an empty value is valid) */
|
* of only printable characters (an empty value is valid) */
|
||||||
for( s++; *s ; s++ ) {
|
for( s++; *s ; s++ ) {
|
||||||
|
@ -25,8 +25,10 @@
|
|||||||
#include "cipher.h"
|
#include "cipher.h"
|
||||||
#include "keydb.h"
|
#include "keydb.h"
|
||||||
|
|
||||||
|
/* It could be argued that the default cipher should be 3DES rather
|
||||||
|
than CAST5, and the default compression should be 0
|
||||||
|
(i.e. uncompressed) rather than 1 (zip). */
|
||||||
#define DEFAULT_CIPHER_ALGO CIPHER_ALGO_CAST5
|
#define DEFAULT_CIPHER_ALGO CIPHER_ALGO_CAST5
|
||||||
#define DEFAULT_PUBKEY_ALGO PUBKEY_ALGO_ELGAMAL
|
|
||||||
#define DEFAULT_DIGEST_ALGO DIGEST_ALGO_SHA1
|
#define DEFAULT_DIGEST_ALGO DIGEST_ALGO_SHA1
|
||||||
#define DEFAULT_COMPRESS_ALGO 1
|
#define DEFAULT_COMPRESS_ALGO 1
|
||||||
|
|
||||||
|
@ -189,8 +189,9 @@ int parse_image_header(const struct user_attribute *attr,byte *type,u32 *len)
|
|||||||
|
|
||||||
/* style==0 for extension, 1 for name, 2 for MIME type. Remember that
|
/* style==0 for extension, 1 for name, 2 for MIME type. Remember that
|
||||||
the "name" style string could be used in a user ID name field, so
|
the "name" style string could be used in a user ID name field, so
|
||||||
make sure it is not too big (see
|
make sure it is not too big (see parse-packet.c:parse_attribute).
|
||||||
parse-packet.c:parse_attribute). */
|
Extensions should be 3 characters long for the best cross-platform
|
||||||
|
compatibility. */
|
||||||
char *image_type_to_string(byte type,int style)
|
char *image_type_to_string(byte type,int style)
|
||||||
{
|
{
|
||||||
char *string;
|
char *string;
|
||||||
@ -288,7 +289,7 @@ void show_photos(const struct user_attribute *attrs,
|
|||||||
/* Make the filename. Notice we are not using the image
|
/* Make the filename. Notice we are not using the image
|
||||||
encoding type for more than cosmetics. Most external image
|
encoding type for more than cosmetics. Most external image
|
||||||
viewers can handle a multitude of types, and even if one
|
viewers can handle a multitude of types, and even if one
|
||||||
cannot understand a partcular type, we have no way to know
|
cannot understand a particular type, we have no way to know
|
||||||
which. The spec permits this, by the way. -dms */
|
which. The spec permits this, by the way. -dms */
|
||||||
|
|
||||||
#ifdef USE_ONLY_8DOT3
|
#ifdef USE_ONLY_8DOT3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user