BlockWithNonce.cs 991 B

1234567891011121314151617181920212223242526272829303132
  1. using System.Text;
  2. using PCC.App.BinaryFormatter;
  3. namespace PCC.App.TransferModels;
  4. public static class BlockWithNonce1
  5. {
  6. public static ReadOnlyMemory<byte> Mux(ReadOnlyMemory<byte> payload, ReadOnlyMemory<byte> nonce)
  7. {
  8. // 计算总长度
  9. var totalLength = payload.Length + nonce.Length;
  10. var buffer = new byte[totalLength];
  11. // 将 payload 和 nonce 拷贝到 buffer 中
  12. payload.Span.CopyTo(buffer);
  13. nonce.Span.CopyTo(buffer.AsSpan(payload.Length));
  14. return buffer;
  15. }
  16. public static (ReadOnlyMemory<byte> payload, ReadOnlyMemory<byte> nonce) Demux(ReadOnlyMemory<byte> transferBlock, int nonceBytes)
  17. {
  18. // 计算 payload 的长度
  19. var payloadLength = transferBlock.Length - nonceBytes;
  20. // 获取 payload 和 nonce
  21. var payload = transferBlock.Slice(0, payloadLength);
  22. var nonce = transferBlock.Slice(payloadLength, nonceBytes);
  23. return (payload, nonce);
  24. }
  25. }