org.ofdrw.gm.ses.parse.SESVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ofdrw-gm Show documentation
Show all versions of ofdrw-gm Show documentation
符合《GMT 0031-2014 安全电子签章密码技术规范》与
《GB/T 38540-2020 信息安全技术 安全电子签章密码技术规范》的ASN1数据结构。
The newest version!
package org.ofdrw.gm.ses.parse;
/**
* 电子签章版本号
*
* @author 权观宇
* @since 2020-04-20 09:20:34
*/
public enum SESVersion {
v1(1),
v4(4);
/**
* 版本号
*/
private int version;
SESVersion(int version) {
this.version = version;
}
public int getVersion() {
return version;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy