From eefbfce0af26be62ec3b329e4ef78f12f5f71c98 Mon Sep 17 00:00:00 2001 From: vnugent Date: Thu, 20 Jun 2024 21:38:00 -0400 Subject: push latest c-sharp changes --- .../dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCSecretKey.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCSecretKey.cs') diff --git a/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCSecretKey.cs b/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCSecretKey.cs index b586d26..18f025b 100644 --- a/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCSecretKey.cs +++ b/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCSecretKey.cs @@ -13,9 +13,10 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . +using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -using static VNLib.Utils.Cryptography.Noscrypt.LibNoscrypt; +using static VNLib.Utils.Cryptography.Noscrypt.NoscryptLibrary; namespace VNLib.Utils.Cryptography.Noscrypt { @@ -26,6 +27,11 @@ namespace VNLib.Utils.Cryptography.Noscrypt [StructLayout(LayoutKind.Sequential, Size = NC_SEC_KEY_SIZE)] public unsafe struct NCSecretKey { + /// + /// Gets a null reference to a secret key + /// + public static ref NCSecretKey NullRef => ref Unsafe.NullRef(); + private fixed byte key[NC_SEC_KEY_SIZE]; } } -- cgit