SM2Result.java 384 B

12345678910111213141516171819202122232425
  1. package com.security.cipher.sm;
  2. import java.math.BigInteger;
  3. import org.bouncycastle.math.ec.ECPoint;
  4. public class SM2Result
  5. {
  6. public SM2Result() {
  7. }
  8. // 签名/验签
  9. public BigInteger r;
  10. public BigInteger s;
  11. public BigInteger R;
  12. // 密钥交换
  13. public byte[] sa;
  14. public byte[] sb;
  15. public byte[] s1;
  16. public byte[] s2;
  17. public ECPoint keyra;
  18. public ECPoint keyrb;
  19. }