From 0fc73679f1d28f59598a5791ed00934ebb6bd6d0 Mon Sep 17 00:00:00 2001 From: stelar7 Date: Wed, 10 May 2023 20:36:07 +0200 Subject: [PATCH] LibTLS: Fix typo in ecdsa_sha512 OID --- Userland/Libraries/LibTLS/Certificate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibTLS/Certificate.h b/Userland/Libraries/LibTLS/Certificate.h index 54d851b21f..ae2408e81d 100644 --- a/Userland/Libraries/LibTLS/Certificate.h +++ b/Userland/Libraries/LibTLS/Certificate.h @@ -30,7 +30,7 @@ constexpr static Array ecdsa_with_sha224_encryption_oid { 1, 2, 840, 10045, 4, 3, 1 }, ecdsa_with_sha256_encryption_oid { 1, 2, 840, 10045, 4, 3, 2 }, ecdsa_with_sha384_encryption_oid { 1, 2, 840, 10045, 4, 3, 3 }, - ecdsa_with_sha512_encryption_oid { 1, 2, 840, 10045, 4, 3, 3 }, + ecdsa_with_sha512_encryption_oid { 1, 2, 840, 10045, 4, 3, 4 }, ec_public_key_encryption_oid { 1, 2, 840, 10045, 2, 1 }; constexpr static Array, 9> known_algorithm_identifiers {