Added missing flush

This commit is contained in:
Thorsten Sommer 2020-01-03 21:32:35 +01:00
parent 7345e79eec
commit cab0171b1a

View File

@ -55,6 +55,8 @@ namespace Ed25519
{
nOut.Write(encodedBigR);
nOut.Write(s.EncodeInt());
nOut.Flush();
return nOut.ToArray();
}
}