diff --git a/ArcFormats/Camellia.cs b/ArcFormats/Camellia.cs index 5b0e5db7..a2db2bde 100644 --- a/ArcFormats/Camellia.cs +++ b/ArcFormats/Camellia.cs @@ -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;