From a1c3aa42553830c6984ccb63713eddec326f5f17 Mon Sep 17 00:00:00 2001 From: orignal Date: Sat, 11 Apr 2026 17:20:43 -0400 Subject: [PATCH] publish higher key type first --- libi2pd/Destination.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd/Destination.cpp b/libi2pd/Destination.cpp index 43fdcc8d..dd112ba3 100644 --- a/libi2pd/Destination.cpp +++ b/libi2pd/Destination.cpp @@ -1494,7 +1494,7 @@ namespace client if (it.first == m_PreferredCryptoType) preferredSection = it.second; else - keySections.push_back (it.second); + keySections.push_front (it.second); // higher key type should appear first } if (preferredSection) keySections.push_front (preferredSection); // make preferred first