mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 22:07:44 +01:00
Fix typos in Blowfish impl
This commit is contained in:
parent
85fe804911
commit
ff44c83dcc
1 changed files with 2 additions and 2 deletions
|
|
@ -442,9 +442,9 @@ namespace Dalamud.Bootstrap.Crypto
|
||||||
for (var i = Rounds; i > 0; i -= 2)
|
for (var i = Rounds; i > 0; i -= 2)
|
||||||
{
|
{
|
||||||
xl ^= m_p[i + 1];
|
xl ^= m_p[i + 1];
|
||||||
xr ^= Round(xr);
|
xr ^= Round(xl);
|
||||||
xr ^= m_p[i];
|
xr ^= m_p[i];
|
||||||
xr ^= Round(xr);
|
xl ^= Round(xr);
|
||||||
}
|
}
|
||||||
|
|
||||||
xl ^= m_p[1];
|
xl ^= m_p[1];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue