diff options
author | Werner Koch <[email protected]> | 2014-05-02 12:07:03 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-05-02 12:07:03 +0000 |
commit | 2def230231abd34f6012df284ab468321ffedc10 (patch) | |
tree | 68a27219dc7808a505fda0eeb5d656ee4956a5da /common/t-openpgp-oid.c | |
parent | http: Revamp TLS API. (diff) | |
download | gnupg-2def230231abd34f6012df284ab468321ffedc10.tar.gz gnupg-2def230231abd34f6012df284ab468321ffedc10.zip |
common: Fix test for openpgp_oid_is_ed25519.
* common/t-openpgp-oid.c (test_openpgp_oid_is_ed25519): Add correct
value.
Diffstat (limited to 'common/t-openpgp-oid.c')
-rw-r--r-- | common/t-openpgp-oid.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/t-openpgp-oid.c b/common/t-openpgp-oid.c index d101b7597..79e5a7095 100644 --- a/common/t-openpgp-oid.c +++ b/common/t-openpgp-oid.c @@ -145,10 +145,15 @@ test_openpgp_oid_is_ed25519 (void) { 0, "0.0" }, { 0, "1.3.132.0.35" }, { 0, "1.3.6.1.4.1.3029.1.5.0" }, - { 1, "1.3.6.1.4.1.3029.1.5.1" }, + { 0, "1.3.6.1.4.1.3029.1.5.1" }, /* Used during Libgcrypt development. */ { 0, "1.3.6.1.4.1.3029.1.5.2" }, { 0, "1.3.6.1.4.1.3029.1.5.1.0" }, { 0, "1.3.6.1.4.1.3029.1.5" }, + { 0, "1.3.6.1.4.1.11591.15.0" }, + { 1, "1.3.6.1.4.1.11591.15.1" }, /* Your the one we want. */ + { 0, "1.3.6.1.4.1.11591.15.2" }, + { 0, "1.3.6.1.4.1.11591.15.1.0" }, + { 0, "1.3.6.1.4.1.11591.15" }, { 0, NULL }, }; gpg_error_t err; |