com.playboy.sm.util.SM2Result Maven / Gradle / Ivy
The newest version!
package com.playboy.sm.util;
import com.bouncycastle.math.ec.ECPoint;
import java.math.BigInteger;
public class SM2Result
{
public SM2Result() {
}
// 签名/验签
public BigInteger r;
public BigInteger s;
public BigInteger R;
// 密钥交换
public byte[] sa;
public byte[] sb;
public byte[] s1;
public byte[] s2;
public ECPoint keyra;
public ECPoint keyrb;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy