new_10009_YanCheng_Metrology/Assets/Scripts/SecretUtils/Crypto/SM2KeyPair.cs

14 lines
297 B
C#

namespace SecretUtils.Crypto
{
public class SM2KeyPair
{
public byte[] priKey;//私钥
public byte[] pubKey;//公钥
public SM2KeyPair(byte[] priKey, byte[] pubKey) {
this.priKey = priKey;
this.pubKey = pubKey;
}
}
}