diff options
author | Werner Koch <[email protected]> | 2015-08-07 07:37:49 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-08-07 07:37:49 +0000 |
commit | 9f31ab3d216ed74d6f392a62e3f95e0591174119 (patch) | |
tree | 60e8290e1ea6a1ba57f0bbbbc93a599e9731ee02 /common/openpgp-oid.c | |
parent | gpg: Remove duplicated printing of the curve name in "sub" lines. (diff) | |
download | gnupg-9f31ab3d216ed74d6f392a62e3f95e0591174119.tar.gz gnupg-9f31ab3d216ed74d6f392a62e3f95e0591174119.zip |
common: Change alias for Curve25519 to "cv25519".
* common/openpgp-oid.c (oidtable): Change alias.
--
This is a cosmetic change so that common and expected common
algorithms line up nicely in a keylisting. For example:
pub ed25519/C68CE6D1ED0319C8 2015-08-06
uid [ultimate] Curve25519 Test 150806.1
sub cv25519/49238B9F0712C9BF 2015-08-06
sub rsa2048/8AEAF74014699D2C 2015-08-06
sub cv25519/8EC3776830B08736 2015-08-06
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'common/openpgp-oid.c')
-rw-r--r-- | common/openpgp-oid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/openpgp-oid.c b/common/openpgp-oid.c index afda37605..8a964a4a3 100644 --- a/common/openpgp-oid.c +++ b/common/openpgp-oid.c @@ -45,7 +45,7 @@ static struct { const char *alias; /* NULL or alternative name of the curve. */ } oidtable[] = { - { "Curve25519", "1.3.6.1.4.1.3029.1.5.1", 255, "crv25519" }, + { "Curve25519", "1.3.6.1.4.1.3029.1.5.1", 255, "cv25519" }, { "Ed25519", "1.3.6.1.4.1.11591.15.1", 255, "ed25519" }, { "NIST P-256", "1.2.840.10045.3.1.7", 256, "nistp256" }, |