From 9f31ab3d216ed74d6f392a62e3f95e0591174119 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Fri, 7 Aug 2015 09:37:49 +0200 Subject: [PATCH] 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 --- common/openpgp-oid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" },