File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17765,6 +17765,14 @@ word32 nid2oid(int nid, int grp)
1776517765 case WC_NID_X9_62_id_ecPublicKey:
1776617766 return ECDSAk;
1776717767 #endif /* HAVE_ECC */
17768+ #ifdef HAVE_ED25519
17769+ case WC_NID_ED25519:
17770+ return ED25519k;
17771+ #endif /* HAVE_ED25519 */
17772+ #ifdef HAVE_ED448
17773+ case WC_NID_ED448:
17774+ return ED448k;
17775+ #endif /* HAVE_ED448 */
1776817776 }
1776917777 break;
1777017778
@@ -18145,6 +18153,14 @@ int oid2nid(word32 oid, int grp)
1814518153 case ECDSAk:
1814618154 return WC_NID_X9_62_id_ecPublicKey;
1814718155 #endif /* HAVE_ECC */
18156+ #ifdef HAVE_ED25519
18157+ case ED25519k:
18158+ return WC_NID_ED25519;
18159+ #endif /* HAVE_ED25519 */
18160+ #ifdef HAVE_ED448
18161+ case ED448k:
18162+ return WC_NID_ED448;
18163+ #endif /* HAVE_ED448 */
1814818164 }
1814918165 break;
1815018166
You can’t perform that action at this time.
0 commit comments