All Downloads are FREE. Search and download functionalities are using the official Maven repository.

icu.xuyijie.sm4utils.util.SM4_Context Maven / Gradle / Ivy

package icu.xuyijie.sm4utils.util;

/**
 * @author 徐一杰
 * @date 2022/10/11
 */
class SM4_Context {
    public int mode;

    public int[] sk;

    public boolean isPadding;

    public SM4_Context() {
        this.mode = 1;
        this.isPadding = true;
        this.sk = new int[32];
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy