From 3255d7b1cac8206c2c91594b342684cf018db83e Mon Sep 17 00:00:00 2001 From: ektrah Date: Sat, 25 May 2024 20:38:07 +0200 Subject: [PATCH] Update libsodium to 1.0.20 --- src/Cryptography/NSec.Cryptography.csproj | 2 +- src/Interop/Interop.Version.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Cryptography/NSec.Cryptography.csproj b/src/Cryptography/NSec.Cryptography.csproj index 213255b8..e6d2fd0d 100644 --- a/src/Cryptography/NSec.Cryptography.csproj +++ b/src/Cryptography/NSec.Cryptography.csproj @@ -15,7 +15,7 @@ NSec.Cryptography.X25519 - + diff --git a/src/Interop/Interop.Version.cs b/src/Interop/Interop.Version.cs index a362451f..196c39e7 100644 --- a/src/Interop/Interop.Version.cs +++ b/src/Interop/Interop.Version.cs @@ -7,8 +7,8 @@ internal static partial class Interop internal static partial class Libsodium { internal const int SODIUM_LIBRARY_VERSION_MAJOR = 26; - internal const int SODIUM_LIBRARY_VERSION_MINOR = 1; - internal const string SODIUM_VERSION_STRING = "1.0.19"; + internal const int SODIUM_LIBRARY_VERSION_MINOR = 2; + internal const string SODIUM_VERSION_STRING = "1.0.20"; [LibraryImport(Libraries.Libsodium)] [UnmanagedCallConv(CallConvs = [typeof(CallConvCdecl)])]