001package top.cenze.utils.crypt.sm.sm4;
002
003/**
004 * Created by $(USER) on $(DATE)
005 */
006public class SM4_Context {
007    public int mode;
008
009    public long[] sk;
010
011    public boolean isPadding;
012
013    public SM4_Context()
014    {
015        this.mode = 1;
016        this.isPadding = true;
017        this.sk = new long[32];
018    }
019}