Obscur.Core.Cryptography.Authentication.Primitives.RipeMD160Digest.UnpackWord(int, byte[], int)

Here are the examples of the csharp api class Obscur.Core.Cryptography.Authentication.Primitives.RipeMD160Digest.UnpackWord(int, byte[], int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: ObscurCore
Source File: RipeMD160Digest.cs
public override int DoFinal(
            byte[] output,
            int outOff)
        {
            Finish();

            UnpackWord(H0, output, outOff);
            UnpackWord(H1, output, outOff + 4);
            UnpackWord(H2, output, outOff + 8);
            UnpackWord(H3, output, outOff + 12);
            UnpackWord(H4, output, outOff + 16);

            Reset();

            return OutputLength;
        }