diff options
Diffstat (limited to 'wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCPublicKey.cs')
-rw-r--r-- | wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/NCPublicKey.cs | 8 |
1 files changed, 7 insertions, 1 deletions
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 <https://www.gnu.org/licenses/>. 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 { + /// <summary> + /// Gets a null <see cref="NCPublicKey"/> reference. + /// </summary> + public static ref NCPublicKey NullRef => ref Unsafe.NullRef<NCPublicKey>(); + private fixed byte key[NC_SEC_PUBKEY_SIZE]; } } |