Marcus Meissner
b4e8b7fb1e
- upgrade to 2.1.0 (modern) - The file "secring.gpg" is not anymore used to store the secret keys. Merging of secret keys is now supported. - All support for PGP-2 keys has been removed for security reasons. - The standard key generation interface is now much leaner. This will help a new user to quickly generate a suitable key. - Support for Elliptic Curve Cryptography (ECC) is now available. - Commands to create and sign keys from the command line without any extra prompts are now available. - The Pinentry may now show the new passphrase entry and the passphrase confirmation entry in one dialog. - There is no more need to manually start the gpg-agent. It is now started by any part of GnuPG as needed. - Problems with importing keys with the same long key id have been addressed. - The Dirmngr is now part of GnuPG proper and also takes care of accessing keyserver. - Keyserver pools are now handled in a smarter way. - A new format for locally storing the public keys is now used. This considerable speeds up operations on large keyrings. - Revocation certificates are now created by default. - Card support has been updated, new readers and token types are supported. - The format of the key listing has been changed to better identify the properties of a key. - The gpg-agent may now be used on Windows as a Pageant replacement for Putty in the same way it is used for years on Unix as ssh-agent replacement. - Creation of X.509 certificates has been improved. It is now also possible to export them directly in PKCS#8 and PEM format for use OBS-URL: https://build.opensuse.org/request/show/260826 OBS-URL: https://build.opensuse.org/package/show/Base:System/gpg2?expand=0&rev=79
183 lines
6.3 KiB
Diff
183 lines
6.3 KiB
Diff
---
|
|
g10/gpg.c | 4 +++
|
|
g10/options.h | 1
|
|
g10/sign.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++-----
|
|
3 files changed, 66 insertions(+), 5 deletions(-)
|
|
|
|
Index: gnupg-2.1.0/g10/gpg.c
|
|
===================================================================
|
|
--- gnupg-2.1.0.orig/g10/gpg.c 2014-11-07 11:35:21.599605797 +0100
|
|
+++ gnupg-2.1.0/g10/gpg.c 2014-11-07 16:50:14.742067262 +0100
|
|
@@ -349,6 +349,7 @@ enum cmd_and_opt_values
|
|
oTTYtype,
|
|
oLCctype,
|
|
oLCmessages,
|
|
+ oFilesAreDigests,
|
|
oXauthority,
|
|
oGroup,
|
|
oUnGroup,
|
|
@@ -733,6 +734,7 @@ static ARGPARSE_OPTS opts[] = {
|
|
ARGPARSE_s_s (oPersonalCompressPreferences,
|
|
"personal-compress-preferences", "@"),
|
|
ARGPARSE_s_s (oFakedSystemTime, "faked-system-time", "@"),
|
|
+ ARGPARSE_s_n (oFilesAreDigests, "files-are-digests", "@"),
|
|
|
|
/* Aliases. I constantly mistype these, and assume other people do
|
|
as well. */
|
|
@@ -2126,6 +2128,7 @@ main (int argc, char **argv)
|
|
opt.def_cert_expire = "0";
|
|
set_homedir (default_homedir ());
|
|
opt.passphrase_repeat = 1;
|
|
+ opt.files_are_digests=0;
|
|
opt.emit_version = 1; /* Limit to the major number. */
|
|
|
|
/* Check whether we have a config file on the command line. */
|
|
@@ -2630,6 +2633,7 @@ main (int argc, char **argv)
|
|
opt.verify_options&=~VERIFY_SHOW_PHOTOS;
|
|
break;
|
|
case oPhotoViewer: opt.photo_viewer = pargs.r.ret_str; break;
|
|
+ case oFilesAreDigests: opt.files_are_digests = 1; break;
|
|
|
|
case oForceMDC: opt.force_mdc = 1; break;
|
|
case oNoForceMDC: opt.force_mdc = 0; break;
|
|
Index: gnupg-2.1.0/g10/options.h
|
|
===================================================================
|
|
--- gnupg-2.1.0.orig/g10/options.h 2014-11-07 11:35:21.599605797 +0100
|
|
+++ gnupg-2.1.0/g10/options.h 2014-11-07 16:49:59.770885017 +0100
|
|
@@ -193,6 +193,7 @@ struct
|
|
int no_auto_check_trustdb;
|
|
int preserve_permissions;
|
|
int no_homedir_creation;
|
|
+ int files_are_digests;
|
|
struct groupitem *grouplist;
|
|
int mangle_dos_filenames;
|
|
int enable_progress_filter;
|
|
Index: gnupg-2.1.0/g10/sign.c
|
|
===================================================================
|
|
--- gnupg-2.1.0.orig/g10/sign.c 2014-11-07 11:35:21.599605797 +0100
|
|
+++ gnupg-2.1.0/g10/sign.c 2014-11-07 17:13:40.128218081 +0100
|
|
@@ -703,8 +703,12 @@ write_signature_packets (SK_LIST sk_list
|
|
build_sig_subpkt_from_sig (sig);
|
|
mk_notation_policy_etc (sig, pk, NULL);
|
|
|
|
+ if (!opt.files_are_digests) {
|
|
hash_sigversion_to_magic (md, sig);
|
|
gcry_md_final (md);
|
|
+ } else if (sig->version >= 4) {
|
|
+ log_bug("files-are-digests doesn't work with v4 sigs\n");
|
|
+ }
|
|
|
|
rc = do_sign (pk, sig, md, hash_for (pk), cache_nonce);
|
|
gcry_md_close (md);
|
|
@@ -762,6 +766,8 @@ sign_file (ctrl_t ctrl, strlist_t filena
|
|
SK_LIST sk_rover = NULL;
|
|
int multifile = 0;
|
|
u32 duration=0;
|
|
+ int sigclass = 0x00;
|
|
+ u32 timestamp = 0;
|
|
|
|
pfx = new_progress_context ();
|
|
afx = new_armor_context ();
|
|
@@ -778,7 +784,16 @@ sign_file (ctrl_t ctrl, strlist_t filena
|
|
fname = NULL;
|
|
|
|
if( fname && filenames->next && (!detached || encryptflag) )
|
|
- log_bug("multiple files can only be detached signed");
|
|
+ log_bug("multiple files can only be detached signed\n");
|
|
+
|
|
+ if (opt.files_are_digests && (multifile || !fname))
|
|
+ log_bug("files-are-digests only works with one file\n");
|
|
+ if (opt.files_are_digests && !detached)
|
|
+ log_bug("files-are-digests can only write detached signatures\n");
|
|
+ if (opt.files_are_digests && !opt.def_digest_algo)
|
|
+ log_bug("files-are-digests needs --digest-algo\n");
|
|
+ if (opt.files_are_digests && opt.textmode)
|
|
+ log_bug("files-are-digests doesn't work with --textmode\n");
|
|
|
|
if(encryptflag==2
|
|
&& (rc=setup_symkey(&efx.symkey_s2k,&efx.symkey_dek)))
|
|
@@ -799,7 +814,7 @@ sign_file (ctrl_t ctrl, strlist_t filena
|
|
goto leave;
|
|
|
|
/* prepare iobufs */
|
|
- if( multifile ) /* have list of filenames */
|
|
+ if( multifile || opt.files_are_digests) /* have list of filenames */
|
|
inp = NULL; /* we do it later */
|
|
else {
|
|
inp = iobuf_open(fname);
|
|
@@ -938,7 +953,7 @@ sign_file (ctrl_t ctrl, strlist_t filena
|
|
for (sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next)
|
|
gcry_md_enable (mfx.md, hash_for (sk_rover->pk));
|
|
|
|
- if( !multifile )
|
|
+ if( !multifile && !opt.files_are_digests )
|
|
iobuf_push_filter( inp, md_filter, &mfx );
|
|
|
|
if( detached && !encryptflag)
|
|
@@ -993,6 +1008,8 @@ sign_file (ctrl_t ctrl, strlist_t filena
|
|
|
|
write_status_begin_signing (mfx.md);
|
|
|
|
+ sigclass = opt.textmode && !outfile? 0x01 : 0x00;
|
|
+
|
|
/* Setup the inner packet. */
|
|
if( detached ) {
|
|
if( multifile ) {
|
|
@@ -1033,6 +1050,45 @@ sign_file (ctrl_t ctrl, strlist_t filena
|
|
if( opt.verbose )
|
|
putc( '\n', stderr );
|
|
}
|
|
+ else if (opt.files_are_digests) {
|
|
+ byte *mdb, ts[5];
|
|
+ size_t mdlen;
|
|
+ const char *fp;
|
|
+ int c, d;
|
|
+
|
|
+ gcry_md_final(mfx.md);
|
|
+ /* this assumes gcry_md_read returns the same buffer */
|
|
+ mdb = gcry_md_read(mfx.md, opt.def_digest_algo);
|
|
+ mdlen = gcry_md_get_algo_dlen(opt.def_digest_algo);
|
|
+ if (strlen(fname) != mdlen * 2 + 11)
|
|
+ log_bug("digests must be %d + @ + 5 bytes\n", mdlen);
|
|
+ d = -1;
|
|
+ for (fp = fname ; *fp; ) {
|
|
+ c = *fp++;
|
|
+ if (c >= '0' && c <= '9')
|
|
+ c -= '0';
|
|
+ else if (c >= 'a' && c <= 'f')
|
|
+ c -= 'a' - 10;
|
|
+ else if (c >= 'A' && c <= 'F')
|
|
+ c -= 'A' - 10;
|
|
+ else
|
|
+ log_bug("filename is not hex\n");
|
|
+ if (d >= 0) {
|
|
+ *mdb++ = d << 4 | c;
|
|
+ c = -1;
|
|
+ if (--mdlen == 0) {
|
|
+ mdb = ts;
|
|
+ if (*fp++ != '@')
|
|
+ log_bug("missing time separator\n");
|
|
+ }
|
|
+ }
|
|
+ d = c;
|
|
+ }
|
|
+ sigclass = ts[0];
|
|
+ if (sigclass != 0x00 && sigclass != 0x01)
|
|
+ log_bug("bad cipher class\n");
|
|
+ timestamp = buffer_to_u32(ts + 1);
|
|
+ }
|
|
else {
|
|
/* read, so that the filter can calculate the digest */
|
|
while( iobuf_get(inp) != -1 )
|
|
@@ -1050,8 +1106,8 @@ sign_file (ctrl_t ctrl, strlist_t filena
|
|
|
|
/* write the signatures */
|
|
rc = write_signature_packets (sk_list, out, mfx.md,
|
|
- opt.textmode && !outfile? 0x01 : 0x00,
|
|
- 0, duration, detached ? 'D':'S', NULL);
|
|
+ sigclass,
|
|
+ timestamp, duration, detached ? 'D':'S', NULL);
|
|
if( rc )
|
|
goto leave;
|
|
|