Newer
Older
SensorHub / SensorHub.Servers / SM4 / SM4_Context.cs
root on 17 Sep 2021 427 bytes first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SensorHub.Servers.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];
        }  
    }
}