(Camellia.Key): new public property.

This commit is contained in:
morkt 2016-02-26 22:04:53 +04:00
parent 86536cd29a
commit 0c63353c08

View File

@ -45,6 +45,12 @@ namespace GameRes.Encryption
m_key = key;
}
public uint[] Key
{
get { return m_key; }
set { m_key = value; }
}
[ThreadStatic]
static uint[] dst_block;