mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 03:44:13 +08:00
(KiriKiri): another encryption algorithm.
This commit is contained in:
parent
e061687816
commit
d90e65c6a6
@ -1368,4 +1368,42 @@ namespace GameRes.Formats.KiriKiri
|
|||||||
Decrypt (entry, offset, buffer, pos, count);
|
Decrypt (entry, offset, buffer, pos, count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Serializable]
|
||||||
|
public class NekoWorksCrypt : ICrypt
|
||||||
|
{
|
||||||
|
byte[] DefaultKey;
|
||||||
|
|
||||||
|
public NekoWorksCrypt (byte[] key)
|
||||||
|
{
|
||||||
|
DefaultKey = key;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Decrypt (Xp3Entry entry, long offset, byte[] buffer, int pos, int count)
|
||||||
|
{
|
||||||
|
var key = InitKey (entry.Hash);
|
||||||
|
for (int i = 0; i < count; ++i)
|
||||||
|
{
|
||||||
|
buffer[pos+i] ^= key[(offset + i) % 31];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Encrypt (Xp3Entry entry, long offset, byte[] buffer, int pos, int count)
|
||||||
|
{
|
||||||
|
Decrypt (entry, offset, buffer, pos, count);
|
||||||
|
}
|
||||||
|
|
||||||
|
byte[] InitKey (uint hash)
|
||||||
|
{
|
||||||
|
hash &= 0x7FFFFFFF;
|
||||||
|
hash = hash << 31 | hash;
|
||||||
|
var key = DefaultKey.Clone() as byte[];
|
||||||
|
for (int i = 0; i < 31; ++i)
|
||||||
|
{
|
||||||
|
key[i] ^= (byte)hash;
|
||||||
|
hash = (hash & 0xFFFFFFFE) << 23 | hash >> 8;
|
||||||
|
}
|
||||||
|
return key;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user