public static String sign(String content, String privateKey, String charset) throws Exception {
PKCS8EncodedKeySpec priPKCS8 = new PKCS8EncodedKeySpec(Base64Util.decode(privateKey));
PrivateKey priKey = KeyFactory.getInstance("RSA").generatePrivate(priPKCS8);
Signature signature = Signature.getInstance("SHA1WithRSA");
signature.initSign(priKey);
signature.update(content.getBytes(charset));
return Base64Util.encodeToString(signature.sign());
}
java里的这段代码转化成ArkTS怎么写
当前规格不支持PKCS8的签名验签,支持pkcs1,参考文档:
https://developer.huawei.com/consumer/cn/doc/harmonyos-guides...
当前支持的规格参考:
https://developer.huawei.com/consumer/cn/doc/harmonyos-guides...