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

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