diff options
author | 2011-05-14 21:05:39 +0000 | |
---|---|---|
committer | 2011-05-14 21:05:39 +0000 | |
commit | cfa078b09f6523187e77bb36fa29a430ac5732bd (patch) | |
tree | 6415e1d101c62eb8622f6d6928b3421600c4b6fb /app-crypt/gnupg/files | |
parent | Delete older ebuilds. (diff) | |
download | historical-cfa078b09f6523187e77bb36fa29a430ac5732bd.tar.gz historical-cfa078b09f6523187e77bb36fa29a430ac5732bd.tar.bz2 historical-cfa078b09f6523187e77bb36fa29a430ac5732bd.zip |
Delete older ebuilds.
Diffstat (limited to 'app-crypt/gnupg/files')
-rw-r--r-- | app-crypt/gnupg/files/gnupg-2.0.16-opengpgv2-sha2.patch | 40 | ||||
-rw-r--r-- | app-crypt/gnupg/files/gnupg-realloc-X.509.patch | 10 |
2 files changed, 0 insertions, 50 deletions
diff --git a/app-crypt/gnupg/files/gnupg-2.0.16-opengpgv2-sha2.patch b/app-crypt/gnupg/files/gnupg-2.0.16-opengpgv2-sha2.patch deleted file mode 100644 index 36f912ca7d80..000000000000 --- a/app-crypt/gnupg/files/gnupg-2.0.16-opengpgv2-sha2.patch +++ /dev/null @@ -1,40 +0,0 @@ -Index: g10/call-agent.c -=================================================================== ---- g10/call-agent.c (revisione 5423) -+++ g10/call-agent.c (revisione 5424) -@@ -892,6 +892,25 @@ - return 0; - } - -+ -+/* Helper returning a command option to describe the used hash -+ algorithm. See scd/command.c:cmd_pksign. */ -+static const char * -+hash_algo_option (int algo) -+{ -+ switch (algo) -+ { -+ case GCRY_MD_RMD160: return "--hash=rmd160 "; -+ case GCRY_MD_SHA1 : return "--hash=sha1 "; -+ case GCRY_MD_SHA224: return "--hash=sha224 "; -+ case GCRY_MD_SHA256: return "--hash=sha256 "; -+ case GCRY_MD_SHA384: return "--hash=sha384 "; -+ case GCRY_MD_SHA512: return "--hash=sha512 "; -+ case GCRY_MD_MD5 : return "--hash=md5 "; -+ default: return ""; -+ } -+} -+ - /* Send a sign command to the scdaemon via gpg-agent's pass thru - mechanism. */ - int -@@ -938,8 +957,7 @@ - else - #endif - snprintf (line, DIM(line)-1, "SCD PKSIGN %s%s", -- hashalgo == GCRY_MD_RMD160? "--hash=rmd160 " : "", -- serialno); -+ hash_algo_option (hashalgo), serialno); - line[DIM(line)-1] = 0; - rc = assuan_transact (agent_ctx, line, membuf_data_cb, &data, - default_inq_cb, NULL, NULL, NULL); diff --git a/app-crypt/gnupg/files/gnupg-realloc-X.509.patch b/app-crypt/gnupg/files/gnupg-realloc-X.509.patch deleted file mode 100644 index 123e4cd3202b..000000000000 --- a/app-crypt/gnupg/files/gnupg-realloc-X.509.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- kbx/keybox-blob.c (revision 5367) -+++ kbx/keybox-blob.c (working copy) -@@ -898,6 +898,7 @@ - rc = gpg_error_from_syserror (); - goto leave; - } -+ names = tmp; - } - names[blob->nuids++] = p; - if (!i && (p=x509_email_kludge (p))) |