aboutsummaryrefslogtreecommitdiff
path: root/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/Nip44Util.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-06-20 21:38:00 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-06-20 21:38:00 -0400
commiteefbfce0af26be62ec3b329e4ef78f12f5f71c98 (patch)
treea948724be366cdcbba022a6594dd32b01388c295 /wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/Nip44Util.cs
parent0e0d7701979cd09e67cbd0137016ba6a5bb3b803 (diff)
push latest c-sharp changes
Diffstat (limited to 'wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/Nip44Util.cs')
-rw-r--r--wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/Nip44Util.cs58
1 files changed, 52 insertions, 6 deletions
diff --git a/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/Nip44Util.cs b/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/Nip44Util.cs
index 23c9127..2aebee1 100644
--- a/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/Nip44Util.cs
+++ b/wrappers/dotnet/VNLib.Utils.Cryptography.Noscrypt/src/Nip44Util.cs
@@ -19,7 +19,7 @@ using System.Runtime.InteropServices;
using VNLib.Utils.Memory;
-using static VNLib.Utils.Cryptography.Noscrypt.LibNoscrypt;
+using static VNLib.Utils.Cryptography.Noscrypt.NoscryptLibrary;
namespace VNLib.Utils.Cryptography.Noscrypt
{
@@ -92,16 +92,51 @@ namespace VNLib.Utils.Cryptography.Noscrypt
//Copy the plaintext data to the output buffer after the data size
MemoryUtil.Memmove(
- in MemoryMarshal.GetReference(plaintextData),
- 0,
- ref MemoryMarshal.GetReference(output),
- sizeof(ushort),
- (uint)plaintextData.Length
+ src: in MemoryMarshal.GetReference(plaintextData),
+ srcOffset: 0,
+ dst: ref MemoryMarshal.GetReference(output),
+ dstOffset: sizeof(ushort),
+ elementCount: (uint)plaintextData.Length
);
//We assume the remaining buffer is zeroed out
}
+ public static void WriteNip44Message(
+ ReadOnlySpan<byte> payloadBuffer,
+ byte version,
+ ReadOnlySpan<byte> mac,
+ Span<byte> outBuffer
+ )
+ {
+ int requiredBufferSize = CalcFinalBufferSize(payloadBuffer.Length);
+
+ //Make sure the output buffer is large enough so we dont overrun it
+ ArgumentOutOfRangeException.ThrowIfLessThan(outBuffer.Length, requiredBufferSize, nameof(outBuffer));
+ ArgumentOutOfRangeException.ThrowIfLessThan(mac.Length, NC_ENCRYPTION_MAC_SIZE, nameof(mac));
+
+ //Write the version number to the first byte
+ outBuffer[0] = version;
+
+ //Copy the payload buffer to the output buffer after the version number
+ MemoryUtil.Memmove(
+ src: in MemoryMarshal.GetReference(payloadBuffer),
+ srcOffset: 0,
+ dst: ref MemoryMarshal.GetReference(outBuffer),
+ dstOffset: 1,
+ elementCount: (uint)payloadBuffer.Length
+ );
+
+ //Copy the mac to the end of the output buffer
+ MemoryUtil.Memmove(
+ src: in MemoryMarshal.GetReference(mac),
+ srcOffset: 0,
+ dst: ref MemoryMarshal.GetReference(outBuffer),
+ dstOffset: (uint)(requiredBufferSize - NC_ENCRYPTION_MAC_SIZE),
+ elementCount: NC_ENCRYPTION_MAC_SIZE
+ );
+ }
+
public static ReadOnlySpan<byte> GetNonceFromPayload(ReadOnlySpan<byte> message)
{
//The nonce is 32 bytes following the 1st byte version number of the message
@@ -139,6 +174,17 @@ namespace VNLib.Utils.Cryptography.Noscrypt
return plaintextPayload.Slice(sizeof(ushort), ptLength);
}
+ public static bool IsValidPlaintextMessage(ReadOnlySpan<byte> plaintextPayload)
+ {
+ ushort ptLength = BinaryPrimitives.ReadUInt16BigEndian(plaintextPayload);
+ return ptLength == plaintextPayload.Length - sizeof(ushort);
+ }
+
+ public static Range GetPlaintextRange(ReadOnlySpan<byte> plaintextPayload)
+ {
+ ushort ptLength = BinaryPrimitives.ReadUInt16BigEndian(plaintextPayload);
+ return new Range(sizeof(ushort), ptLength);
+ }
}
}