From 0c63353c082edf877b93f20658838cc7ec4ec683 Mon Sep 17 00:00:00 2001 From: morkt Date: Fri, 26 Feb 2016 22:04:53 +0400 Subject: [PATCH] (Camellia.Key): new public property. --- ArcFormats/Camellia.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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;