org.brewchain.sdk.model.ICrypto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cwvj Show documentation
Show all versions of cwvj Show documentation
Java sdk for Dapps interact with cwv blockchain node
package org.brewchain.sdk.model;
public interface ICrypto {
/**
* 生成交易签名
* @param privateKey 私钥
* @param body 待签名body
* @return
*/
byte[] sign(String privateKey,byte[] body);
}