Map objects for ED25519 to Ed25519.
authorjsing <jsing@openbsd.org>
Thu, 10 Nov 2022 16:04:31 +0000 (16:04 +0000)
committerjsing <jsing@openbsd.org>
Thu, 10 Nov 2022 16:04:31 +0000 (16:04 +0000)
OpenSSL used ED25519, even though the RFCs use Ed25519 - as such, we get to
provide both.

ok tb@

lib/libcrypto/objects/objects.h

index fe3d777..ef9a9e6 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: objects.h,v 1.18 2022/07/12 14:42:49 kn Exp $ */
+/* $OpenBSD: objects.h,v 1.19 2022/11/10 16:04:31 jsing Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
 #define OBJ_OCSP_sign                  OBJ_id_kp,9L
 #endif /* USE_OBJ_MAC */
 
+#if defined(LIBRESSL_NEXT_API) || defined(LIBRESSL_INTERNAL)
+#define SN_ED25519                     SN_Ed25519
+#define NID_ED25519                    NID_Ed25519
+#define OBJ_ED25519                    OBJ_Ed25519
+#endif
+
 #include <openssl/bio.h>
 #include <openssl/asn1.h>