You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
310 B
Java
9 lines
310 B
Java
package com.yau.digitalrmb.institutionidentity.domain;
|
|
|
|
public interface InstitutionIdentityCryptography {
|
|
String sm3(String text);
|
|
InstitutionSm2KeyPair generateSm2KeyPair();
|
|
String sign(String privateKey, String message);
|
|
boolean verify(String publicKey, String message, String signature);
|
|
}
|