You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
303 B

package Test;
import com.dsideal.dsBase.Util.RsaUtils;
public class getMiMa {
public static void main(String[] args) {
String password = "DsideaL4r5t6y7u";
String pwd = RsaUtils.encryptedDataOnJava(password, RsaUtils.PUBLICKEY);
System.out.println(pwd);
}
}