001package top.cenze.utils.crypt.sm.sm2; 002 003import org.bouncycastle.math.ec.ECPoint; 004 005import java.math.BigInteger; 006 007/** 008 * SM2 009 */ 010public class SM2Result { 011 public SM2Result() { 012 } 013 // 签名r 014 public BigInteger r; 015 public BigInteger s; 016 //验签R 017 public BigInteger R; 018 019 // 密钥交换 020 public byte[] sa; 021 public byte[] sb; 022 public byte[] s1; 023 public byte[] s2; 024 025 public ECPoint keyra; 026 public ECPoint keyrb; 027 028}