Firstborn/Library/PackageCache/com.unity.scriptablebuildpi.../Editor/Utilities/HashStream.cs
Schaken-Mods 7502018d20 Adding Mod Support
There is an asset in the store I grabbed. the coding is WAY above my head, I got about half of it and integrated and adapted what I can to it. im going as far as I can with it and ill come back in a few month when I understand t better.
2023-05-13 22:01:48 -05:00

45 lines
1.2 KiB
C#

using System.IO;
using System.Security.Cryptography;
namespace UnityEditor.Build.Pipeline.Utilities
{
internal class HashStream : Stream
{
HashAlgorithm m_Algorithm;
public HashStream(HashAlgorithm algorithm)
{
m_Algorithm = algorithm;
}
public RawHash GetHash()
{
m_Algorithm.TransformFinalBlock(System.Array.Empty<byte>(), 0, 0);
return new RawHash(m_Algorithm.Hash);
}
public override bool CanRead => false;
public override bool CanSeek => false;
public override bool CanWrite => true;
public override long Length => Null.Length;
public override long Position { get => Null.Position; set => Null.Position = value; }
public override void Flush() {}
public override int Read(byte[] buffer, int offset, int count) => Null.Read(buffer, offset, count);
public override long Seek(long offset, SeekOrigin origin) => Null.Seek(offset, origin);
public override void SetLength(long value) => Null.SetLength(value);
public override void Write(byte[] buffer, int offset, int count)
{
m_Algorithm.TransformBlock(buffer, offset, count, null, 0);
}
}
}