diff options
author | Werner Koch <wk@gnupg.org> | 2011-01-31 09:27:06 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2011-01-31 09:27:06 +0100 |
commit | 0fb0bb8d9a960a2473ab70a021d20639a43227e0 (patch) | |
tree | 8dcce4f17931a3da45890db635a6474231224db0 /agent | |
parent | Update gitignore (diff) | |
download | gnupg2-0fb0bb8d9a960a2473ab70a021d20639a43227e0.tar.xz gnupg2-0fb0bb8d9a960a2473ab70a021d20639a43227e0.zip |
Reworked the ECC changes to better fit into the Libgcrypt API.
See ChangeLog for details. Key generation, signing and verification works.
Encryption does not yet work. Requires latest Libgcrypt changes.
Diffstat (limited to 'agent')
-rw-r--r-- | agent/ChangeLog | 5 | ||||
-rw-r--r-- | agent/protect.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/agent/ChangeLog b/agent/ChangeLog index 7dace3aef..432803fa3 100644 --- a/agent/ChangeLog +++ b/agent/ChangeLog @@ -1,3 +1,8 @@ +2011-01-27 Werner Koch <wk@g10code.com> + + * protect.c (protect_info): Adjust ECDSA and ECDH parameter names. + Add "ecc". + 2011-01-19 Werner Koch <wk@g10code.com> * trustlist.c (read_one_trustfile): Also chop an CR. diff --git a/agent/protect.c b/agent/protect.c index d0a5fe9e3..61ed8ee38 100644 --- a/agent/protect.c +++ b/agent/protect.c @@ -52,8 +52,9 @@ static struct { { "rsa", "nedpqu", 2, 5 }, { "dsa", "pqgyx", 4, 4 }, { "elg", "pgyx", 3, 3 }, - { "ecdsa","cqd", 2, 2 }, - { "ecdh", "cqpd", 3, 3 }, + { "ecdsa","pabgnqd", 6, 6 }, + { "ecdh", "pabgnqd", 6, 6 }, + { "ecc", "pabgnqd", 6, 6 }, { NULL } }; |