1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-05-24 16:43:28 +02:00

common: Add KEM constants for NIST curves.

* common/openpgp-oid.c (oidtable): Fill the information for KEM
API for NIST curves.

--

GnuPG-bug-id: 7649
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2025-05-16 14:06:45 +09:00
parent 45a11327f3
commit 40cfa71281
No known key found for this signature in database
GPG Key ID: 640114AF89DE6054

View File

@ -61,9 +61,12 @@ static struct {
{ "Ed448", "1.3.101.113", 456, "ed448", NULL,
PUBKEY_ALGO_EDDSA },
{ "NIST P-256", "1.2.840.10045.3.1.7", 256, "nistp256" },
{ "NIST P-384", "1.3.132.0.34", 384, "nistp384" },
{ "NIST P-521", "1.3.132.0.35", 521, "nistp521" },
{ "NIST P-256", "1.2.840.10045.3.1.7", 256, "nistp256", NULL,
0, GCRY_KEM_RAW_P256R1 },
{ "NIST P-384", "1.3.132.0.34", 384, "nistp384", NULL,
0, GCRY_KEM_RAW_P384R1 },
{ "NIST P-521", "1.3.132.0.35", 521, "nistp521", NULL,
0, GCRY_KEM_RAW_P521R1 },
{ "brainpoolP256r1", "1.3.36.3.3.2.8.1.1.7", 256, NULL, "bp256",
0, GCRY_KEM_RAW_BP256 },