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/NCPublicKey.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCPublicKey.cs') diff --git a/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCPublicKey.cs b/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCPublicKey.cs index 0699d7d..57d7c3f 100644 --- a/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCPublicKey.cs +++ b/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCPublicKey.cs @@ -14,9 +14,10 @@ // along with this program. If not, see . using System; +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_PUBKEY_SIZE)] public unsafe struct NCPublicKey { + /// + /// Gets a null reference. + /// + public static ref NCPublicKey NullRef => ref Unsafe.NullRef(); + private fixed byte key[NC_SEC_PUBKEY_SIZE]; } } -- cgit