Newer
Older
EMS_REFACTOR / SM4 / SM4_Context.cs

namespace Cyberpipe.SM4
{
    class SM4_Context
    {
        public int mode;
 
        public long[] sk;
 
        public bool isPadding;
 
        public SM4_Context()
        {
            this.mode = 1;
            this.isPadding = true;
            this.sk = new long[32];
        }  
    }
}